Skip to content

Bridging to the Astria Mainnet Alpha

Bridging commands from Celestia, Noble, Osmosis, and Stride Mainnets to the Astria Mainnet Alpha.

You will need the astria-cli, celestia-appd, nobled, osmosisd, and strided installed. Follow the install steps here.

You can export the following to make the commands below easily copy and pastable.

bash
export ASTRIA_ADDRESS="<your-astria-address>"
export PRIV_KEY="<your-astria-address-private-key>"
export CELESTIA_KEY_NAME="<name-of-your-celestia-key>"
export CELESTIA_ADDRESS="<your-celestia-address>"
export NOBLE_KEY_NAME="<name-of-your-noble-key>"
export NOBLE_ADDRESS="<your-noble-address>"
export OSMOSIS_KEY_NAME="<name-of-your-osmosis-key>"
export OSMOSIS_ADDRESS="<your-osmosis-address>"
export STRIDE_KEY_NAME="<name-of-your-stride-key>"
export STRIDE_ADDRESS="<your-stride-address>"

Bridge to Astria

bash
celestia-appd tx ibc-transfer transfer \
    transfer \
    channel-48 \
    $ASTRIA_ADDRESS \
    1000000utia \
    --fees=420utia \
    --from $CELESTIA_KEY_NAME \
    --node=https://celestia-rpc.polkachu.com:443 \
    --chain-id celestia \
    --packet-timeout-height 0-0
bash
nobled tx ibc-transfer transfer \
    transfer \
    channel-104 \
    $ASTRIA_ADDRESS \
    1000000uusdc \
    --from $NOBLE_KEY_NAME \
    --node https://noble-rpc.polkachu.com:443 \
    --chain-id noble-1 \
    --packet-timeout-height 0-0
bash
osmosisd tx ibc-transfer transfer \
    transfer \
    channel-85486 \
    $ASTRIA_ADDRESS \
    1000000uusdc \
    --from $OSMOSIS_KEY_NAME \
    --node https://osmosis-rpc.polkachu.com:443 \
    --chain-id osmosis-1 \
    --packet-timeout-height 0-0
bash
strided tx ibc-transfer transfer \
    transfer \
    channel-285 \
    $ASTRIA_ADDRESS \
    "100000stutia" \
    --chain-id="stride-1" \
    --from=$STRIDE_KEY_NAME \
    --node=https://stride-rpc.polkachu.com:443 \
    --packet-timeout-height "0-0" \
    --fees=500ustrd

Check Your Balances on Astria

bash
astria-cli sequencer balance get $ASTRIA_ADDRESS --sequencer-url https://rpc.astria.org/

View Transactions on Mintscan

You can view your transactions by visiting the following:

  • https://www.mintscan.io/celestia/address/<your-celestia-address>
  • https://www.mintscan.io/noble/address/<your-noble-address>
  • https://www.mintscan.io/osmosis/address/<your-osmosis-address>
  • https://www.mintscan.io/stride/address/<your-stride-address>

You can also go directly to Mintscan and search for the txhash that is returned after sending your transaction, but it is recommended to view your address transaction history as this will show if an acknowledgement for your transfer was received.