Survey for Babylon integration
Integrating with Euphrates 0.5.0 for Cosmos chains
CosmWasm Smart Contracts Deployment Guide
Babylon Smart Contract Deployment Guide
Adding Euphrates devnet to Keplr
Euphrates is a Babylon devnet dedicated for testing integrations. Below is the Euphrates devnet’s information. Please notice that the below assumes / depends on the bash
shell. Modify accordingly for other shells, or use bash
:
$ cat <<EOF >env_euphrates.sh
:
export binary="babylond"
export chainId="euphrates-0.5.0"
export homeDir="$HOME/.babylond"
export key="user"
export keyringBackend="--keyring-backend=test"
export feeToken="ubbn"
export rpcUrl="<https://rpc-euphrates.devnet.babylonlabs.io>"
export nodeUrl="$rpcUrl"
export grpcUrl="grpc-euphrates.devnet.babylonlabs.io:443"
export faucetUrl="<https://faucet-euphrates.devnet.babylonlabs.io>"
alias babylond='babylond --home=$homeDir'
EOF
$ . ./env_euphrates.sh