Testnet CW20-ICS20 IBC Relayer
# Add Sei atlantic-1 to Keplr Wallet
https://testnets.cosmosrun.info/
# Add Juno uni-3 to Keplr Wallet and also Create a CW20 token
https://junomint.com/
# Allow CW20 token contract address and Send CW20 token using following link
https://blueprints.juno.giansalex.dev/#/contracts/juno16gckhheyql9f85r9ydmazdccc0pnwxx5xxxrwltygtx3kxjg57ksamkpym
# Encode / Decode base64
https://www.base64encode.org/
# CSW-ICS20 Contract
https://github.com/CosmWasm/cw-plus/tree/main/contracts
{
"allow": {
"contract": "<cw-20-token-contract-address>"
}
}
# Example
{
"allow": {
"contract": "juno1d3pnlc086evh7d277vak6tpz6gmvw6gr6plwxzf5n2tl9zdtwf7qrdsn44"
}
}
{
"send": {
"contract": "juno16gckhheyql9f85r9ydmazdccc0pnwxx5xxxrwltygtx3kxjg57ksamkpym",
"amount": "100000000",
"msg": "<encoded-message>"
}
}
# Example
{
"send": {
"contract": "juno16gckhheyql9f85r9ydmazdccc0pnwxx5xxxrwltygtx3kxjg57ksamkpym",
"amount": "100000000",
"msg": "eyJjaGFubmVsIjoiY2hhbm5lbC03OSIsInJlbW90ZV9hZGRyZXNzIjoic2VpMWZyYXJxZXhzeTVtODJkbDdjMzlqeGY2bmt4Znl0cnQwY3Z6d2F5In0="
}
}