1647418620
Gravity bridge is Cosmos <-> Ethereum bridge designed to run on the Cosmos Hub focused on maximum design simplicity and efficiency.
Gravity can transfer ERC20 assets originating on Ethereum to a Cosmos based chain and back to Ethereum.
The ability to transfer assets originating on Cosmos to an ERC20 representation on Ethereum is coming within a few months.
Gravity bridge is under development and will be undergoing audits soon. Instructions for deployment and use are provided in the hope that they will be useful.
It is your responsibility to understand the financial, legal, and other risks of using this software. There is no guarantee of functionality or safety. You use Gravity entirely at your own risk.
You can keep up with the latest development by watching our public standups feel free to join yourself and ask questions.
updateValset
method at least once every Cosmos unbonding period (usually 2 weeks). This is because if there has not been an update for longer than the unbonding period, the validator set stored by the Ethereum contract could contain validators who cannot be slashed for misbehavior.We provide a one button integration test that deploys a full arbitrary validator Cosmos chain and testnet Geth chain for both development + validation. We believe having a in depth test environment reflecting the full deployment and production-like use of the code is essential to productive development.
Currently on every commit we send hundreds of transactions, dozens of validator set updates, and several transaction batches in our test environment. This provides a high level of quality assurance for the Gravity bridge.
Because the tests build absolutely everything in this repository they do take a significant amount of time to run. You may wish to simply push to a branch and have Github CI take care of the actual running of the tests.
To run the test simply have docker installed and run.
bash tests/all-up-test.sh
There are optional tests for specific features
Valset stress changes the validating power randomly 25 times, in an attempt to break validator set syncing
bash tests/all-up-test.sh VALSET_STRESS
Batch stress sends 300 transactions over the bridge and then 3 batches back to Ethereum. This code can do up to 10k transactions but Github Actions does not have the horsepower.
bash tests/all-up-test.sh BATCH_STRESS
Validator out tests a validator that is not running the mandatory Ethereum node. This validator will be slashed and the bridge will remain functioning.
bash tests/all-up-test.sh VALIDATOR_OUT
Developer guide
in the solidity
folder
Run HUSKY_SKIP_INSTALL=1 npm install
, then npm run typechain
.
Run npm run evm
in a separate terminal and then
Run npm run test
to run tests.
After modifying solidity files, run npm run typechain
to recompile contract typedefs.
The Solidity contract is also covered in the Cosmos module tests, where it will be automatically deployed to the Geth test chain inside the development container for a micro testnet every integration test run.
We provide a standard container-based development environment that automatically bootstraps a Cosmos chain and Ethereum chain for testing. We believe standardization of the development environment and ease of development are essential so please file issues if you run into issues with the development flow.
These do not run the entire chain but instead test parts of the Go module code in isolation. To run them, go into /module
and run make test
This method is dictinct from the all up test described above. Although it runs the same components it's much faster when editing individual components.
./tests/build-container.sh
./tests/start-chains.sh
./tests/run-tests.sh
docker exec -it gravity_test_instance /bin/bash
should allow you to access a shell inside the test containerChange the code, and when you want to test it again, restart ./tests/start-chains.sh
and run ./tests/run-tests.sh
.
./tests/build-container.sh
builds the base container and builds the Gravity test zone for the first time. This results in a Docker container which contains cached Go dependencies (the base container).
./tests/start-chains.sh
starts a test container based on the base container and copies the current source code (including any changes you have made) into it. It then builds the Gravity test zone, benefiting from the cached Go dependencies. It then starts the Cosmos chain running on your new code. It also starts an Ethereum node. These nodes stay running in the terminal you started it in, and it can be useful to look at the logs. Be aware that this also mounts the Gravity repo folder into the container, meaning changes you make will be reflected there.
./tests/run-tests.sh
connects to the running test container and runs the integration test found in ./tests/integration-tests.sh
It can be useful to modify, recompile, and restart the testnet without restarting the container, for example if you are running a text editor in the container and would not like it to exit, or if you are editing dependencies stored in the container's /go/
folder.
In this workflow, you can use ./tests/reload-code.sh
to recompile and restart the testnet without restarting the container.
For example, you can use VS Code's "Remote-Container" extension to attach to the running container started with ./tests/start-chains.sh
, then edit the code inside the container, restart the testnet with ./tests/reload-code.sh
, and run the tests with ./tests/integration-tests.sh
.
To use a stepping debugger in VS Code, follow the "Working inside the container" instructions above, but set up a one node testnet using ./tests/reload-code.sh 1
. Now kill the node with pkill gravityd
. Start the debugger from within VS Code, and you will have a 1 node debuggable testnet.
Download Details:
Author: cosmos
Source Code: https://github.com/cosmos/gravity-bridge
License: Apache-2.0 License
#blockchain #cosmos #cryptocurrency #evm #ethereum #POW #erc20
1647418620
Gravity bridge is Cosmos <-> Ethereum bridge designed to run on the Cosmos Hub focused on maximum design simplicity and efficiency.
Gravity can transfer ERC20 assets originating on Ethereum to a Cosmos based chain and back to Ethereum.
The ability to transfer assets originating on Cosmos to an ERC20 representation on Ethereum is coming within a few months.
Gravity bridge is under development and will be undergoing audits soon. Instructions for deployment and use are provided in the hope that they will be useful.
It is your responsibility to understand the financial, legal, and other risks of using this software. There is no guarantee of functionality or safety. You use Gravity entirely at your own risk.
You can keep up with the latest development by watching our public standups feel free to join yourself and ask questions.
updateValset
method at least once every Cosmos unbonding period (usually 2 weeks). This is because if there has not been an update for longer than the unbonding period, the validator set stored by the Ethereum contract could contain validators who cannot be slashed for misbehavior.We provide a one button integration test that deploys a full arbitrary validator Cosmos chain and testnet Geth chain for both development + validation. We believe having a in depth test environment reflecting the full deployment and production-like use of the code is essential to productive development.
Currently on every commit we send hundreds of transactions, dozens of validator set updates, and several transaction batches in our test environment. This provides a high level of quality assurance for the Gravity bridge.
Because the tests build absolutely everything in this repository they do take a significant amount of time to run. You may wish to simply push to a branch and have Github CI take care of the actual running of the tests.
To run the test simply have docker installed and run.
bash tests/all-up-test.sh
There are optional tests for specific features
Valset stress changes the validating power randomly 25 times, in an attempt to break validator set syncing
bash tests/all-up-test.sh VALSET_STRESS
Batch stress sends 300 transactions over the bridge and then 3 batches back to Ethereum. This code can do up to 10k transactions but Github Actions does not have the horsepower.
bash tests/all-up-test.sh BATCH_STRESS
Validator out tests a validator that is not running the mandatory Ethereum node. This validator will be slashed and the bridge will remain functioning.
bash tests/all-up-test.sh VALIDATOR_OUT
Developer guide
in the solidity
folder
Run HUSKY_SKIP_INSTALL=1 npm install
, then npm run typechain
.
Run npm run evm
in a separate terminal and then
Run npm run test
to run tests.
After modifying solidity files, run npm run typechain
to recompile contract typedefs.
The Solidity contract is also covered in the Cosmos module tests, where it will be automatically deployed to the Geth test chain inside the development container for a micro testnet every integration test run.
We provide a standard container-based development environment that automatically bootstraps a Cosmos chain and Ethereum chain for testing. We believe standardization of the development environment and ease of development are essential so please file issues if you run into issues with the development flow.
These do not run the entire chain but instead test parts of the Go module code in isolation. To run them, go into /module
and run make test
This method is dictinct from the all up test described above. Although it runs the same components it's much faster when editing individual components.
./tests/build-container.sh
./tests/start-chains.sh
./tests/run-tests.sh
docker exec -it gravity_test_instance /bin/bash
should allow you to access a shell inside the test containerChange the code, and when you want to test it again, restart ./tests/start-chains.sh
and run ./tests/run-tests.sh
.
./tests/build-container.sh
builds the base container and builds the Gravity test zone for the first time. This results in a Docker container which contains cached Go dependencies (the base container).
./tests/start-chains.sh
starts a test container based on the base container and copies the current source code (including any changes you have made) into it. It then builds the Gravity test zone, benefiting from the cached Go dependencies. It then starts the Cosmos chain running on your new code. It also starts an Ethereum node. These nodes stay running in the terminal you started it in, and it can be useful to look at the logs. Be aware that this also mounts the Gravity repo folder into the container, meaning changes you make will be reflected there.
./tests/run-tests.sh
connects to the running test container and runs the integration test found in ./tests/integration-tests.sh
It can be useful to modify, recompile, and restart the testnet without restarting the container, for example if you are running a text editor in the container and would not like it to exit, or if you are editing dependencies stored in the container's /go/
folder.
In this workflow, you can use ./tests/reload-code.sh
to recompile and restart the testnet without restarting the container.
For example, you can use VS Code's "Remote-Container" extension to attach to the running container started with ./tests/start-chains.sh
, then edit the code inside the container, restart the testnet with ./tests/reload-code.sh
, and run the tests with ./tests/integration-tests.sh
.
To use a stepping debugger in VS Code, follow the "Working inside the container" instructions above, but set up a one node testnet using ./tests/reload-code.sh 1
. Now kill the node with pkill gravityd
. Start the debugger from within VS Code, and you will have a 1 node debuggable testnet.
Download Details:
Author: cosmos
Source Code: https://github.com/cosmos/gravity-bridge
License: Apache-2.0 License
#blockchain #cosmos #cryptocurrency #evm #ethereum #POW #erc20
1616655002
WASP AssetCloud is a RFID asset management system which can be accessed and used from anywhere in the world in order to effectively manage your assets. user no longer need to rely on traditional spreadsheets or any other form of manual process for asset management which can be both time-consuming as well as ineffective.
Users will have instant access to all of their asset information on their PC or even on their Android/IOS mobile device through the WASP AssetCloud app.
From tracking the location of fixed assets, to knowing which assets are due to be returned. From tracking asset related maintenance to efficiently checking out or checking in Assets. WASP AssetCloud will make Asset Management a breeze.
TechnoSource Australia is the authorised business partner and Asia-Pacific distributor for WASP Barcode Technologies USA.We provide software solutions like POS system, asset labels, barcode asset tracking system, barcode system, warehouse stock control system, portable data terminals, time and attendance system and many other essentials needed to run your business successfully.
#asset labels #asset tags #rfid asset management system #rfid asset tracking #cloud asset inventory #cloud inventory
1650760620
XDAG Bridge
XDAG Bridge is a cross-chain bridge from XDAG mainnet to EVM chains.
Download Details:
Author: XDagger
Source Code: https://github.com/XDagger/XDAGBridge
License: MIT License
#blockchain #cryptocurrency #dagger #evm #ethereum #Bridge
1604379605
A Digital Asset Management System makes it easier to store, manage, and share all of your digital assets on cloud-based storage.
We help you to build Digital Asset Management (DAM) systems with your precise business requirements, whether you want one for maintaining management, production management, brand management systems, or implementing with your sales department with the digital assets it needs.
To learn more about how the Digital Asset Management system will help your business, email us at hello@techavidus.com
#digital assets management #assets management solution #digital asset management system #production management #brand management
1606874142
Base Protocol (BASE) is a token whose price is pegged to the total market cap of all cryptocurrencies at a ratio of 1:1 trillion. BASE allows traders to speculate on the entire crypto industry with one token. The Base Protocol is built on the Ethereum blockchain, integrates a (Chainlink) oracle, and is launching on ((Uniswap)
As cryptocurrency enthusiasts, we’re sometimes divided on which digital assets to buy — bullish on certain projects and bearish on others.
But we all agree on one thing, which is that the overall cryptocurrency industry will achieve long-term growth and future adoption.
The Base Protocol makes it possible to invest with this consensus. BASE allows traders to speculate on the entire industry with one token.
The Base Protocol is the world’s first and only tokenized cryptocurrency market tracker. By holding BASE tokens, users can get exposure to the performance of the entire cryptocurrency market. Unlike the index trackers currently operating in the traditional markets, there is no entry or exit fee or brokerage charges.
Index funds have consistently outperformed actively managed mutual funds. Until the launch of BASE, there was no real cryptocurrency market tracker that tracked the performance of the entire digital asset market. BASE will be useful for institutional investors and traders to diversify and hedge their crypto portfolios. BASE will also help new and existing retail investors to take out the guesswork and get exposed to the growth of all current and future digital assets entering the market.
The BASE token’s underlying protocol creates several additional use cases in DeFi, trading, venture capital, hedge funds and many other business sectors.
The Base Protocol mission is simple — to make it easy for everyone to benefit from the performance of the entire cryptocurrency market in a secure, decentralized and future-proof way.
It’s no doubt that a crypto industry ETF would be a valuable product for investors. But it is very challenging to create such a product through traditional means, as it would be almost impossible to manage portfolio ownership of 5,000+ assets. How would the portfolio manager weigh ownership of each asset as market cap dominance changes? How would they account for newly entering/exiting assets? Who would take on all the associated transaction and custodial fees? There are also various legal limitations that restrict the formation of such an instrument in many countries — and even if it could be formed, it would be a highly centralized product.
By simply pegging price to the total market capitalization of all cryptocurrencies, the Base Protocol cuts through all of these problems. BASE gives holders the same function as a traditional industry ETF without all of the centralized challenges that make such an ETF impossible.
BASE will offer new value for investors in the cryptocurrency ecosystem through an elegantly simple protocol — so valuable and so simple that you might be asking yourself:
How has this not been done before?
The answer is that it wasn’t possible until recently. This project couldn’t be achieved without a robust decentralized blockchain, proven oracle integrations, and new developments in the DeFi space. We founded the Base Protocol to build on these innovations and create BASE; one tokenized asset that represents speculation on all cryptocurrencies.
We’ve seen that there are many individuals who want to invest in cryptocurrencies, but don’t necessarily understand how they work. While the overview for each different crypto asset can be difficult to understand for a new user, the pitch for BASE is simple: it’s the way to invest in all of those crypto assets simultaneously. In this way, the Base Protocol can become an instrumental force in driving new adoption in the blockchain space.
We’ve also noticed that institutional investors have been introducing cryptocurrency investments to their portfolios. These institutions typically invest at a high level with great diversification covering multiple industries. Their cryptocurrency holdings are usually composed of just Bitcoin, or some handful mix of “blue chip” digital assets. By holding BASE, these institutions will gain exposure to the entire cryptocurrency industry — an objectively more diversified alternative.
In the same way that Bitcoin is the household name of cryptocurrencies, the Base Protocol aims to become the household name for general cryptocurrency investing. BASE’s vision is to become the primary channel of investment for new/existing cryptocurrency traders and institutional investors.
Would you like to earn token right now! ☞ CLICK HERE
Looking for more information…
☞ Website
☞ Explorer
☞ Source Code
☞ Social Channel
☞ Message Board
☞ Coinmarketcap
Create an Account and Trade NOW
☞ Bittrex
☞ Poloniex
☞ Binance
Thank for visiting and reading this article! I’m highly appreciate your actions! Please share if you liked it!
#blockchain #bitcoin #crypto #base protocol #base