FAQ and Debugging
Dusk-10 Endpoints and Service Versions
Name | Endpoint |
---|---|
EVM JSON RPC | https://rpc.evm.dusk-10.devnet.astria.org |
EVM Block Explorer | https://explorer.evm.dusk-10.devnet.astria.org |
EVM Faucet | https://faucet.evm.dusk-10.devnet.astria.org |
Celestia EVM Rollup Namespace | 000000000000000000000000000000000000f3c2910d77141de9bc7c |
Sequencer RPC | https://rpc.sequencer.dusk-10.devnet.astria.org |
Sequencer gRPC | https://grpc.sequencer.dusk-10.devnet.astria.org |
Sequencer Faucet | https://faucet.sequencer.dusk-10.devnet.astria.org |
Celestia Sequencer Namespace | 00000000000000000000000000000000000031a3172717024ab8f1db |
Mocha Posting Account | celestia1qnyk26e49syzzng8sxzxwqd4mg7y4c9erlcnfm |
Service Versions:
- Astria Conductor v0.20.0
- Astria Composer v0.8.2
- Astria Sequencer-relayer v0.16.1
- Astria Sequencer v0.16.0
- Astria-Geth EVM v0.14.0
- CometBFT v0.38.8
Install the latest Astria cli
Download using curl:
bash
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.15.0/astria-go-v0.15.0-darwin-arm64.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-go /usr/local/bin/
astria-go version
bash
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.15.0/astria-go-v0.15.0-darwin-amd64.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-go /usr/local/bin/
astria-go version
bash
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.15.0/astria-go-v0.15.0-linux-amd64.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-go /usr/local/bin/
astria-go version
Build from source:
bash
git clone git@github.com:astriaorg/astria-cli-go.git
cd astria-cli-go
just build-cli
# run the cli in the repo directory
just run version
# OR you can move the binary to a location in your PATH if you'd like
mv ./bin/astria-go /usr/local/bin/
astria-go version
bash
git clone https://github.com/astriaorg/astria-cli-go.git
cd astria-cli-go
just build-cli
# run the cli in the repo directory
just run version
# OR you can move the binary to a location in your PATH if you'd like
mv ./bin/astria-go /usr/local/bin/
astria-go version
astria-go
CLI Commands
View all the astria-go
cli commands.
Install the Rust astria-cli
bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.4.0/astria-cli-aarch64-apple-darwin.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-cli /usr/local/bin/
bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.4.0/astria-cli-x86_64-apple-darwin.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-cli /usr/local/bin/
bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.4.0/astria-cli-x86_64-unknown-linux-gnu.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-cli /usr/local/bin/
bash
cargo install astria-cli --git=https://github.com/astriaorg/astria --tag=cli-v0.4.0 --locked