Configure solana-cli to use your preferred RPC and network e.g.solana config set --url https://api.devnet.solana.com for devnet.
We do not recommend using public RPC nodes for production because of their low rate limits and low stake, which makes transaction landing much slower than private RPC nodes. Please reach out if you'd like help in setting up a private endpoint.
Once that's complete, set up the Data Module CLI:
curl -sSf https://nitro-da-cli.termina.technology/install.sh | sh
Run nitro-da-cli to see all the available commands and their options.
2
Select Blober Program ID
Make sure to use the correct program ID for mainnet and devnet:
Network
Program ID
Solana Mainnet
8xAuVgAygVN2sPXJzycT7AU7c9ZUJkG357HonxdFXjyc
Solana Devnet
2RWsr92iL39YCLiZu7dZ5hron4oexEMbgWDg35v5U5tH
3
Create Namespace
A namespace represents a data collection, and only your keypair is allowed to write data to it. To create a sample namespace called nitro on Solana devnet:
The fetch command returns hex encoded bytes, so remember to hex decode it to get the data back in its original form.
6
Fetch Data from Indexer (Optional)
If you need the data to be stored for a longer time period than the ledger's lifetime of three days, you may want to use an indexer.
Please reach out if you'd like us to set up an indexer on your behalf.
To retrieve data from the indexer, all you need to provide is the slot number at which the blob was finalized. (You can find this value from the upload command above.)