Install the Astria CLI
The astria-cli
is a tool for interacting with the Astria Sequencer. It provides functionality for querying the sequencer network, submitting various transactions and Sequencer Actions native to the sequencer itself, and is the primary tool for general management of the Sequencer Network.
Download using Curl or Build from Source
bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.5.1/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.5.1/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.5.1/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.5.1 --locked
View all releases here.
View the source code here.