Celestia-node RPC CLI tutorial
In this tutorial, we will cover how to use the celestia-node RPC API to submit and retrieve data (blobs) from the data availability layer by their namespace.
Introduction
Blobs
Data is posted to Celestia's DA layer by using MsgPayForBlobs
transactions to the core network. Read more about MsgPayForBlobs
.
Namespaces
Celestia partitions the block data into multiple namespaces, one for every application. This allows applications to only download their data, and not the data of other applications. Read more about Namespaced Merkle trees (NMTs).
TIP
If you already have a running and funded node, you can skip to the RPC CLI guide section.
If you would like to skip syncing, you can use this guide to sync from trusted hash and height.
WARNING
The gateway endpoints have been deprecated and will be removed in the future. If you would like to use them anyway, you can find more details on GitHub.
Hardware requirements
The following minimum hardware requirements are recommended for running a light node:
- Memory: 500 MB RAM (minimum)
- CPU: Single Core
- Disk: 50 GB SSD Storage
- Bandwidth: 56 Kbps for Download/56 Kbps for Upload
Setting up dependencies
Install dependencies and celestia-node if you have not already.
Instantiate a Celestia light node
Now, let's instantiate a Celestia Light node:
TIP
RPC endpoints are exposed in all celestia-node types such as light, bridge and full nodes.
celestia light init
celestia light init
celestia light init --p2p.network mocha
celestia light init --p2p.network mocha
celestia light init --p2p.network arabica
celestia light init --p2p.network arabica
Instantiating (or initializing) the node means setting up a node store on your machine. This is where the data and your keys will be stored.
Connect to a core endpoint
Let's now run the Celestia Light node with a gRPC connection to an example core endpoint. Connecting to a core endpoint provides the light node with access to state queries (reading balances, submitting transactions, and other state-related queries).
Note: You are also encouraged to find an RPC endpoint for Mainnet Beta, Mocha testnet, or Arabica devnet. If you are running a production application, use a production endpoint.
celestia light start --core.ip <URI>
celestia light start --core.ip <URI>
celestia light start --core.ip <URI> --p2p.network mocha
celestia light start --core.ip <URI> --p2p.network mocha
celestia light start --core.ip <URI> --p2p.network arabica
celestia light start --core.ip <URI> --p2p.network arabica
TIP
The --core.ip
gRPC port defaults to 9090, so if you do not specify it in the command line, it will default to that port. You can add the port after the IP address or use the --core.grpc.port
flag to specify another port if you prefer.
Refer to the ports section of the celestia-node troubleshooting page for information on which ports are required to be open on your machine.
For example, your command along with an RPC endpoint might look like this:
celestia light start --core.ip consensus.lunaroasis.net
celestia light start --core.ip consensus.lunaroasis.net
celestia light start --core.ip rpc-mocha.pops.one --p2p.network mocha
celestia light start --core.ip rpc-mocha.pops.one --p2p.network mocha
celestia light start --core.ip validator-1.celestia-arabica-11.com \
--p2p.network arabica
celestia light start --core.ip validator-1.celestia-arabica-11.com \
--p2p.network arabica
Keys and wallets
You can create your key for your node by running the following command from the celestia-node directory:
TIP
You do not need to declare a network for Mainnet Beta. Refer to the chain ID section on the troubleshooting page for more information
./cel-key add <key-name> --keyring-backend test --node.type light \
--p2p.network <network>
./cel-key add <key-name> --keyring-backend test --node.type light \
--p2p.network <network>
You can start your light node with the key created by running the following command:
celestia light start --core.ip <URI> --keyring.keyname <key-name>
celestia light start --core.ip <URI> --keyring.keyname <key-name>
celestia light start --core.ip <URI> --keyring.keyname <key-name> \
--p2p.network mocha
celestia light start --core.ip <URI> --keyring.keyname <key-name> \
--p2p.network mocha
celestia light start --core.ip <URI> --keyring.keyname <key-name> \
--p2p.network arabica
celestia light start --core.ip <URI> --keyring.keyname <key-name> \
--p2p.network arabica
Once you start the light node, a wallet key will be generated for you. You will need to fund that address with Mocha testnet or Arabica devnet tokens to pay for PayForBlobs
transactions.
You can find the address by running the following command in the celestia-node directory:
./cel-key list --node.type light --keyring-backend test --p2p.network <network>
./cel-key list --node.type light --keyring-backend test --p2p.network <network>
If you would like to fund your wallet with testnet tokens, head over to either the #mocha-faucet
or #arabica-faucet
channels on the Celestia Discord.
You can request funds to your wallet address using the following command in Discord:
$request <CELESTIA-ADDRESS>
$request <CELESTIA-ADDRESS>
Where <CELESTIA-ADDRESS>
is the celestia1******
address generated when you created the wallet.
With your wallet funded, you can move on to the next step.
RPC CLI guide
This section of the tutorial will teach you how to interact with a Celestia node's remote procedure call (RPC) API using the command line interface (CLI).
You will need to setup dependencies, install, and run celestia-node if you have not already.
Command formatting
The format for interacting with the RPC CLI methods is as follows:
celestia <module> <method> [args...] [flags...]
celestia <module> <method> [args...] [flags...]
Where:
celestia
is the main command to interact with the node.<module>
is the specific module in the node you want to interact with, such asblob
,state
,p2p
, etc.<method>
is the specific method within the module that performs the action you want, such asblob.Submit
,state.AccountAddress
,p2p.Info
, etc.[args...]
represents any additional arguments that the method might require.[flags...]
are parameters that modify the behavior of the command. They start with--
(e.g.,--node.store
,--token
, or--url
).
For example, to submit a blob to Celestia, you can use this command once your node store is set:
:::note Previously, the node.store
flag had to be specified manually for each request. This has changed in v0.14.0+ and you can read more about the implementation in celestia-node troubleshooting. :::
celestia blob submit 0x42690c204d39600fddd3 'gm'
celestia blob submit 0x42690c204d39600fddd3 'gm'
Alternatively, you could use the --token
flag to set your auth token:
celestia blob submit 0x42690c204d39600fddd3 'gm' --token $AUTH_TOKEN
celestia blob submit 0x42690c204d39600fddd3 'gm' --token $AUTH_TOKEN
Before you try that out, let's go over the basic flags that you will need to use when interacting with the RPC CLI. We'll also cover how to set your auth token and how to use the node store to set it.
Basic flags
All RPC CLI commands have basic flags that can be used to interact with the API; however, none are necessary using default configurations.
These include:
--node.store string
- the path to root/home directory of your celestia-node store--token string
- authorization token for making requests--url string
- the address of the RPC, default ishttp://localhost:26658
When running RPC CLI commands, you will need to set either the authentication token or set the node store, so the auth token can be retrieved from the store.
The RPC CLI handles these flags in the following order:
- If user passes auth token, auth token is used.
- If user doesn't pass auth token, check node store flag, create token from node store, and use auth token from node store.
Auth token 🔐
In order to interact with the API using RPC CLI, you will need to set the authentication token.
The --token string
flag sets the authentication token. If a token is not found, authentication will not be set. And if authentication is not set, the request will fail.
To set your authentication token, you can use the following command. Be sure to replace <node-type>
with the type of node and <network>
with the network that you are running your node on:
export AUTH_TOKEN=$(celestia <node-type> auth admin --p2p.network <network>)
export AUTH_TOKEN=$(celestia <node-type> auth admin --p2p.network <network>)
Here's an example of how to set your auth token on a light node on Arabica:
export AUTH_TOKEN=$(celestia light auth admin --p2p.network arabica)
export AUTH_TOKEN=$(celestia light auth admin --p2p.network arabica)
Node store
In order to interact with the API using RPC CLI, you can also use your node store to set your auth token. This will allow you to interact with the API without setting an authentication token directly. This is only required if you are using a non-default node store path.
To set a custom node store for a light node on mocha-4, you can use the following command:
export NODE_STORE=$HOME/your-custom-path/celestia-light-mocha-4
export NODE_STORE=$HOME/your-custom-path/celestia-light-mocha-4
Then, set the --node.store
flag to the $NODE_STORE
variable to set the auth token from your node store:
celestia <module> <method> [args...] --node.store $NODE_STORE
celestia <module> <method> [args...] --node.store $NODE_STORE
Auth token on custom or private network
This section is for users who are using a CELESTIA_CUSTOM
or private network.
TIP
If you are using a private and custom network with a custom node store path, you will need to set the location of the node store in your auth command.
--node.store $HOME/your-custom-path/.celestia-light-private
--node.store $HOME/your-custom-path/.celestia-light-private
The above is an example from the following custom network set up with:
CELESTIA_CUSTOM=private celestia light init
CELESTIA_CUSTOM=private celestia light init
or
celestia light init --p2p.network private
celestia light init --p2p.network private
As an example, this is what a completely custom network would look like:
# Initialize node store
CELESTIA_CUSTOM=robusta-22 celestia light init
# Set auth token
export AUTH_TOKEN=$(celestia light auth admin --p2p.network private \
--node.store $HOME/your-custom-path/.celestia-light-robusta-22)
# Initialize node store
CELESTIA_CUSTOM=robusta-22 celestia light init
# Set auth token
export AUTH_TOKEN=$(celestia light auth admin --p2p.network private \
--node.store $HOME/your-custom-path/.celestia-light-robusta-22)
Submitting data
In this example, we will be submitting a blob to the network with a blob.Submit transaction with our light node.
Some things to consider:
- The endpoint takes in
namespace
anddata
values.- The commitment will be generated by the node.
- Share version is set by the node.
- Namespace should be 10 bytes, prefixed by
0x
if hex; otherwise use base64 - Data can be hex-encoded (
0x...
), base64-encoded ("..."
), or a plaintext string which will be encoded to base64 ('Hello There!'
) - Optionally, user can provide a gas fee and gas limit.
We use the following namespace
of 0x42690c204d39600fddd3
and the data
value of 0x676d
.
Here is an example of the format of the blob.Submit
transaction:
celestia blob submit <hex-encoded namespace> <hex-encoded data> \
[optional: fee] [optional: gasLimit] [optional: node store | auth token]
celestia blob submit <hex-encoded namespace> <hex-encoded data> \
[optional: fee] [optional: gasLimit] [optional: node store | auth token]
We run the following to submit a blob to the network in hexadecimal format:
celestia blob submit 0x42690c204d39600fddd3 0x676d \
celestia blob submit 0x42690c204d39600fddd3 0x676d \
We get the following output:
{
"result": {
"height": 252607,
"commitment": "0MFhYKQUi2BU+U1jxPzG7QY2BVV1lb3kiU+zAK7nUiY="
}
}
{
"result": {
"height": 252607,
"commitment": "0MFhYKQUi2BU+U1jxPzG7QY2BVV1lb3kiU+zAK7nUiY="
}
}
We can also use a string of text as the data value, which will be converted to base64. Here is an example of the format:
celestia blob submit <hex-encoded namespace> <'data'> \
[optional: fee] [optional: gasLimit] [node store | auth token]
celestia blob submit <hex-encoded namespace> <'data'> \
[optional: fee] [optional: gasLimit] [node store | auth token]
And an example to submit "gm" as the plain-text data:
celestia blob submit 0x42690c204d39600fddd3 'gm'
celestia blob submit 0x42690c204d39600fddd3 'gm'
Output:
{
"result": {
"height": 252614,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
{
"result": {
"height": 252614,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
If you notice from the above output, it returns a result
of 252614
which we will use for the next command. The result
corresponds to the height of the block in which the transaction was included.
Optional: Submit with curl
Refer to the submitting a blob using curl section.
Retrieving data
After submitting your PFB transaction, upon success, the node will return the block height for which the PFB transaction was included. You can then use that block height and the namespace ID with which you submitted your PFB transaction to get your message shares (data) returned to you. In this example, the block height we got was 252614 which we will use for the following command. Read more about shares in the Celestia Specs.
Here is what an example of the format of the get
command looks like:
celestia blob get <block height> <hex-encoded namespace> \
<commitment from output above> <node store | auth>
celestia blob get <block height> <hex-encoded namespace> \
<commitment from output above> <node store | auth>
Here is an example command to retrieve the data from above, on arabica-11
:
celestia blob get 252614 0x42690c204d39600fddd3 IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E=
celestia blob get 252614 0x42690c204d39600fddd3 IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E=
Will generate the following output:
{
"result": {
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "gm",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
{
"result": {
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "gm",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
The output here is base64 decoded to plain-text.
To see the base64 response, use the --base64
flag set to TRUE
(--base64=TRUE
):
celestia blob get 252614 0x42690c204d39600fddd3 IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E= \
--base64=TRUE
celestia blob get 252614 0x42690c204d39600fddd3 IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E= \
--base64=TRUE
The response will look similar to this:
{
"result": {
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "Z20=",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
{
"result": {
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "Z20=",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
To get all blobs in the namespace at the block height, use get-all
instead of get
:
celestia blob get-all 252614 0x42690c204d39600fddd3
celestia blob get-all 252614 0x42690c204d39600fddd3
This will return the following:
{
"result": [
{
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "gm",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
]
}
{
"result": [
{
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "gm",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
]
}
To display the response in base64, use:
celestia blob get-all 252614 0x42690c204d39600fddd3 \
--base64=TRUE
celestia blob get-all 252614 0x42690c204d39600fddd3 \
--base64=TRUE
Which will return:
{
"result": [
{
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "gm",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
]
}
{
"result": [
{
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAEJpDCBNOWAP3dM=",
"data": "gm",
"share_version": 0,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
]
}
Setting the gas price
The --gas.price
flag allows you to specify the gas price for the submission. If not specified, a default gas price will be used. The gas limit is automatically calculated based on the size of the blob being submitted.
To set the gas price, you can use the --gas.price
flag. The gas price will be set to default (0.002) if no value is passed.
Learn more about gas fees and limits.
To set a higher gas price of 0.004 utia, use the --gas.price 0.004
flag:
celestia blob submit 0x42690c204d39600fddd3 'gm' --gas.price 0.004
celestia blob submit 0x42690c204d39600fddd3 'gm' --gas.price 0.004
You will receive the height and commitment of the block in which the transaction was included for these three examples:
{
"result": {
"height": 62562,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
{
"result": {
"height": 62562,
"commitment": "IXg+08HV5RsPF3Lle8PH+B2TUGsGUsBiseflxh6wB5E="
}
}
Examples
Check your balance
Let's query our node for the balance of its default account (which is the account associated with the CELESTIA_NODE_AUTH_TOKEN
key we generated above):
celestia state balance
celestia state balance
The response will look similar to:
{
"jsonrpc": "2.0",
"result": {
"denom": "utia",
"amount": "172118057"
},
"id": 1
}
{
"jsonrpc": "2.0",
"result": {
"denom": "utia",
"amount": "172118057"
},
"id": 1
}
Check the balance of another address
Here is an example of the format of the balance-for-address
command:
celestia state balance-for-address <address>
celestia state balance-for-address <address>
Let's query our node for the balance of another address:
celestia state balance-for-address celestia10rtd9lhel2cuh6c659l25yncl6atcyt37umard
celestia state balance-for-address celestia10rtd9lhel2cuh6c659l25yncl6atcyt37umard
The response will be the balance of the address you queried:
{
"jsonrpc": "2.0",
"result": {
"denom": "utia",
"amount": "1000000"
},
"id": 1
}
{
"jsonrpc": "2.0",
"result": {
"denom": "utia",
"amount": "1000000"
},
"id": 1
}
Get your node ID
This is an RPC call in order to get your node's peerId information:
celestia p2p info
celestia p2p info
The node ID is in the ID
value from the response:
{
"jsonrpc": "2.0",
"result": {
"ID": "12D3KooWFFhCaAqY56oEqY3pLZUdLsv4RYAfVWKATZRepUPdosLp",
"Addrs": [
"/ip4/10.0.0.171/tcp/2121",
"/ip4/10.0.0.171/udp/2121/quic-v1",
"/ip4/71.200.65.106/tcp/25630",
"/ip4/71.200.65.106/udp/25630/quic-v1",
"/ip6/::1/tcp/2121",
"/ip6/::1/udp/2121/quic-v1"
]
},
"id": 1
}
{
"jsonrpc": "2.0",
"result": {
"ID": "12D3KooWFFhCaAqY56oEqY3pLZUdLsv4RYAfVWKATZRepUPdosLp",
"Addrs": [
"/ip4/10.0.0.171/tcp/2121",
"/ip4/10.0.0.171/udp/2121/quic-v1",
"/ip4/71.200.65.106/tcp/25630",
"/ip4/71.200.65.106/udp/25630/quic-v1",
"/ip6/::1/tcp/2121",
"/ip6/::1/udp/2121/quic-v1"
]
},
"id": 1
}
Get your account address
This is an RPC call in order to get your node's account address:
celestia state account-address
celestia state account-address
Response:
{
"jsonrpc": "2.0",
"result": "celestia1znk24rh52pgcd9z5x2x42jztjh6raaaphuvrt3",
"id": 1
}
{
"jsonrpc": "2.0",
"result": "celestia1znk24rh52pgcd9z5x2x42jztjh6raaaphuvrt3",
"id": 1
}
Get block header by height
Here is an example of the format of the GetByHeight
command:
celestia header get-by-height <height>
celestia header get-by-height <height>
Now, let's get the block header information.
Here we will get the header from Block 1:
celestia header get-by-height 1
```
It will output something like this:
<!-- markdownlint-disable MD013 -->
```json
{
"jsonrpc": "2.0",
"result": {
"header": {
"version": {
"block": "11",
"app": "1"
},
"chain_id": "arabica-11",
"height": "1",
"time": "2023-06-27T13:02:39.741743Z",
"last_block_id": {
"hash": "",
"parts": {
"total": 0,
"hash": ""
}
},
"last_commit_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"data_hash": "3D96B7D238E7E0456F6AF8E7CDF0A67BD6CF9C2089ECB559C659DCAA1F880353",
"validators_hash": "6363C68770C200FD794445668F9B18F5B1DD1125180D6E8D5AB004F7DD7A0F48",
"next_validators_hash": "6363C68770C200FD794445668F9B18F5B1DD1125180D6E8D5AB004F7DD7A0F48",
"consensus_hash": "048091BC7DDC283F77BFBF91D73C44DA58C3DF8A9CBC867405D8B7F3DAADA22F",
"app_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"last_results_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"evidence_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"proposer_address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86"
},
"validator_set": {
"validators": [
{
"address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "9aNBAxno1B4X5LR2qY5qWqwrMNOzejkctXwzq9BExsg="
},
"voting_power": "500000000",
"proposer_priority": "0"
}
],
"proposer": {
"address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "9aNBAxno1B4X5LR2qY5qWqwrMNOzejkctXwzq9BExsg="
},
"voting_power": "500000000",
"proposer_priority": "0"
}
},
"commit": {
"height": 1,
"round": 0,
"block_id": {
"hash": "7A5FABB19713D732D967B1DA84FA0DF5E87A7B62302D783F78743E216C1A3550",
"parts": {
"total": 1,
"hash": "D85C907CE660878A8203AC74BAA147CCC1F87114B45B568B72AD207B62AFE45E"
}
},
"signatures": [
{
"block_id_flag": 2,
"validator_address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86",
"timestamp": "2023-06-30T08:40:19.299137127Z",
"signature": "qmaEzrnbtgEXCRYc8pCvGRbS+uMuknIBoRAE4qyE7oSgWCRwBVYS/oPReXQLg9ER1oEY1De4MkWvMjlFnQOOCg=="
}
]
},
"dah": {
"row_roots": [
"//////////////////////////////////////7//////////////////////////////////////huZWOTTDmD36N1F75A9BshxNlRasCnNpQiWqIhdVHcU",
"/////////////////////////////////////////////////////////////////////////////5iieeroHBMfF+sER3JpvROIeEJZjbY+TRE0ntADQLL3"
],
"column_roots": [
"//////////////////////////////////////7//////////////////////////////////////huZWOTTDmD36N1F75A9BshxNlRasCnNpQiWqIhdVHcU",
"/////////////////////////////////////////////////////////////////////////////5iieeroHBMfF+sER3JpvROIeEJZjbY+TRE0ntADQLL3"
]
}
},
"id": 1
}
celestia header get-by-height 1
```
It will output something like this:
<!-- markdownlint-disable MD013 -->
```json
{
"jsonrpc": "2.0",
"result": {
"header": {
"version": {
"block": "11",
"app": "1"
},
"chain_id": "arabica-11",
"height": "1",
"time": "2023-06-27T13:02:39.741743Z",
"last_block_id": {
"hash": "",
"parts": {
"total": 0,
"hash": ""
}
},
"last_commit_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"data_hash": "3D96B7D238E7E0456F6AF8E7CDF0A67BD6CF9C2089ECB559C659DCAA1F880353",
"validators_hash": "6363C68770C200FD794445668F9B18F5B1DD1125180D6E8D5AB004F7DD7A0F48",
"next_validators_hash": "6363C68770C200FD794445668F9B18F5B1DD1125180D6E8D5AB004F7DD7A0F48",
"consensus_hash": "048091BC7DDC283F77BFBF91D73C44DA58C3DF8A9CBC867405D8B7F3DAADA22F",
"app_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"last_results_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"evidence_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"proposer_address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86"
},
"validator_set": {
"validators": [
{
"address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "9aNBAxno1B4X5LR2qY5qWqwrMNOzejkctXwzq9BExsg="
},
"voting_power": "500000000",
"proposer_priority": "0"
}
],
"proposer": {
"address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "9aNBAxno1B4X5LR2qY5qWqwrMNOzejkctXwzq9BExsg="
},
"voting_power": "500000000",
"proposer_priority": "0"
}
},
"commit": {
"height": 1,
"round": 0,
"block_id": {
"hash": "7A5FABB19713D732D967B1DA84FA0DF5E87A7B62302D783F78743E216C1A3550",
"parts": {
"total": 1,
"hash": "D85C907CE660878A8203AC74BAA147CCC1F87114B45B568B72AD207B62AFE45E"
}
},
"signatures": [
{
"block_id_flag": 2,
"validator_address": "91E04695CF9CF531BC0891E7B1D602B3E8022C86",
"timestamp": "2023-06-30T08:40:19.299137127Z",
"signature": "qmaEzrnbtgEXCRYc8pCvGRbS+uMuknIBoRAE4qyE7oSgWCRwBVYS/oPReXQLg9ER1oEY1De4MkWvMjlFnQOOCg=="
}
]
},
"dah": {
"row_roots": [
"//////////////////////////////////////7//////////////////////////////////////huZWOTTDmD36N1F75A9BshxNlRasCnNpQiWqIhdVHcU",
"/////////////////////////////////////////////////////////////////////////////5iieeroHBMfF+sER3JpvROIeEJZjbY+TRE0ntADQLL3"
],
"column_roots": [
"//////////////////////////////////////7//////////////////////////////////////huZWOTTDmD36N1F75A9BshxNlRasCnNpQiWqIhdVHcU",
"/////////////////////////////////////////////////////////////////////////////5iieeroHBMfF+sER3JpvROIeEJZjbY+TRE0ntADQLL3"
]
}
},
"id": 1
}
Combined commands
celestia share get-by-namespace "$(celestia header get-by-height 147105 | jq '.result.dah' -r)" 0x42690c204d39600fddd3
celestia share get-by-namespace "$(celestia header get-by-height 147105 | jq '.result.dah' -r)" 0x42690c204d39600fddd3
Get data availability sampler stats
celestia das sampling-stats
celestia das sampling-stats
Transfer balance of utia to another account
First, set your address as a variable:
export ADDRESS=celestia1c425ckmve2489atttx022qpc02gxspa29wmh0d
export ADDRESS=celestia1c425ckmve2489atttx022qpc02gxspa29wmh0d
Then, transfer the amount of tokens that you would like, while setting the recipient's address, gas fee, and gasLimit. This is what the format will look like:
celestia state transfer $ADDRESS <amount in utia> <gas fee in utia> <gas fee in utia>
celestia state transfer $ADDRESS <amount in utia> <gas fee in utia> <gas fee in utia>
Here is an example, sending 0.1 TIA, with a gas fee of 0.008 TIA, and a gas limit of 0.08:
celestia state transfer $ADDRESS 100000 8000 80000
celestia state transfer $ADDRESS 100000 8000 80000
If you'd just like to return the transaction hash, you can use jq:
celestia state transfer $ADDRESS 100000 8000 80000 | jq .result.txhash
celestia state transfer $ADDRESS 100000 8000 80000 | jq .result.txhash
API version
To query your node's API version, you can use the following command:
celestia node info
celestia node info
Help
To get help and view the CLI menu, use the following command:
celestia --help
celestia --help
To view the help menu for a specific method, use the following command:
celestia <module> <method> --help
celestia <module> <method> --help
Advanced example
This example shows us using the jq
command to parse the output of the celestia header get-by-height
method to get the extended header used in celestia share get-by-namespace
:
celestia share get-by-namespace \
"$(celestia header get-by-height 252614 | jq '.result.dah' -r)" \
0x42690c204d39600fddd3
celestia share get-by-namespace \
"$(celestia header get-by-height 252614 | jq '.result.dah' -r)" \
0x42690c204d39600fddd3
Additional resources
Submitting a blob using curl
In order to post a blob using curl, you will need a light node running with the --core.ip string
flag, providing access to a consensus endpoint. The flag indicates node to connect to the given core consensus node. Examples: 127.0.0.1
or subdomain.domain.tld
. Using either IP or DNS assumes RPC port 26657 and gRPC port 9090 as default unless otherwise specified.
- In your terminal, set the auth token for the desired network. In this example, we will use Mainnet Beta.
export CELESTIA_NODE_AUTH_TOKEN=$(celestia light auth admin --p2p.network celestia)
export CELESTIA_NODE_AUTH_TOKEN=$(celestia light auth admin --p2p.network celestia)
- Post your blob with:
curl -H "Content-Type: application/json" -H "Authorization: Bearer $CELESTIA_NODE_AUTH_TOKEN" -X POST --data '{"id": 1,
"jsonrpc": "2.0",
"method": "blob.Submit",
"params": [
[
{
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAAECAwQFBgcICRA=",
"data": "VGhpcyBpcyBhbiBleGFtcGxlIG9mIHNvbWUgYmxvYiBkYXRh",
"share_version": 0,
"commitment": "AD5EzbG0/EMvpw0p8NIjMVnoCP4Bv6K+V6gjmwdXUKU="
}
],
0.002
]
}' 127.0.0.1:26658
curl -H "Content-Type: application/json" -H "Authorization: Bearer $CELESTIA_NODE_AUTH_TOKEN" -X POST --data '{"id": 1,
"jsonrpc": "2.0",
"method": "blob.Submit",
"params": [
[
{
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAAECAwQFBgcICRA=",
"data": "VGhpcyBpcyBhbiBleGFtcGxlIG9mIHNvbWUgYmxvYiBkYXRh",
"share_version": 0,
"commitment": "AD5EzbG0/EMvpw0p8NIjMVnoCP4Bv6K+V6gjmwdXUKU="
}
],
0.002
]
}' 127.0.0.1:26658
- Upon successful blob submission, the result will show the block height:
{"jsonrpc":"2.0","result":362101,"id":1}
{"jsonrpc":"2.0","result":362101,"id":1}
The example transaction can be found on Celenium.
Post an SVG as a PFB
If you'd like to create your own SVG, post it to Celestia, and retrieve it, you can check out the Base64 SVG Tutorial.
Troubleshooting
If you encounter an error like:
"rpc error: code = NotFound desc = account celestia1krkle0n547u0znz3unnln8paft2dq4z3rznv86 not found"
"rpc error: code = NotFound desc = account celestia1krkle0n547u0znz3unnln8paft2dq4z3rznv86 not found"
It is possible that the account you are trying to submit a PayForBlobs
from doesn't have testnet tokens yet. Ensure the testnet faucet has funded your account with tokens and then try again.