Stuck, facing problems, or unsure about something?
Join our Discord and ask your questions in #support
!
- What is This?
- Getting Started
- Disclaimer
- Interacting with your Node via RPC
- Testing with specific DA layers
- License
This demo shows how to integrate a State Transition Function (STF) with a Data Availability (DA) layer and a zkVM to create a full zk-rollup. The code in this repository corresponds to running a full-node of the rollup, which executes every transaction.
By swapping out or modifying the imported state transition function, you can customize
this example full-node to run arbitrary logic.
This particular example relies on the state transition exported by demo-stf
. If you want to
understand how to build your own state transition function, check out at the docs in that package.
If you are looking for a simple rollup with minimal dependencies as a starting point, please have a look here: sov-rollup-starter
This setup works with an in-memory DA that is easy to set up for testing purposes.
- Switch to the
examples/demo-rollup
and compile the application:
$ cd examples/demo-rollup/
$ cargo build --bins
- Clean up the existing database. Makefile to simplify that process:
$ make clean-mock-rollup-db
- Now run the demo-rollup full node, as shown below.
$ cargo run
Leave it running while you proceed with the rest of the demo.
After switching to a new terminal tab, let's submit our first transaction by creating a token:
$ make test-create-token
The make test-create-token
command above was useful to test if everything is running correctly. Now let's get a better understanding of how to create and submit a transaction
The make test-create-token
command above was useful to test if everything is running correctly. Now let's get a better understanding of how to create and submit a transaction.
You'll need the sov-cli
binary in order to create transactions. Build it with these commands:
# Make sure you're still in `examples/demo-rollup`
$ cargo run --bin sov-cli -- --help
Usage: sov-cli <COMMAND>
Commands:
transactions Generate, sign, and send transactions
keys View and manage keys associated with this wallet
rpc Query the current state of the rollup and send transactions
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
Each transaction that we want to submit is a member of the CallMessage
enum defined as part of creating a module. For example, let's consider the Bank
module's CallMessage
:
use sov_bank::CallMessage::Transfer;
use sov_bank::Coins;
use sov_bank::Amount;
pub enum CallMessage<C: sov_modules_api::Context> {
/// Creates a new token with the specified name and initial balance.
CreateToken {
/// Random value used to create a unique token address.
salt: u64,
/// The name of the new token.
token_name: String,
/// The initial balance of the new token.
initial_balance: Amount,
/// The address of the account that the new tokens are minted to.
minter_address: C::Address,
/// Authorized minter list.
authorized_minters: Vec<C::Address>,
},
/// Transfers a specified amount of tokens to the specified address.
Transfer {
/// The address to which the tokens will be transferred.
to: C::Address,
/// The amount of tokens to transfer.
coins: Coins::<C>,
},
/// Burns a specified amount of tokens.
Burn {
/// The amount of tokens to burn.
coins: Coins::<C>,
},
/// Mints a specified amount of tokens.
Mint {
/// The amount of tokens to mint.
coins: Coins::<C>,
/// Address to mint tokens to
minter_address: C::Address,
},
/// Freeze a token so that the supply is frozen
Freeze {
/// Address of the token to be frozen
token_address: C::Address,
},
}
In the above snippet, we can see that CallMessage
in Bank
supports five different types of calls. The sov-cli
has the ability to parse a JSON file that aligns with any of these calls and subsequently serialize them. The structure of the JSON file, which represents the call, closely mirrors that of the Enum member. You can view the relevant JSON Schema for Bank
here Consider the Transfer
message as an example:
use sov_bank::Coins;
struct Transfer<C: sov_modules_api::Context> {
/// The address to which the tokens will be transferred.
to: C::Address,
/// The amount of tokens to transfer.
coins: Coins<C>,
}
Here's an example of a JSON representing the above call:
{
"Transfer": {
"to": "sov1zgfpyysjzgfpyysjzgfpyysjzgfpyysjzgfpyysjzgfpyysjzgfqve8h6h",
"coins": {
"amount": 200,
"token_address": "sov1zdwj8thgev2u3yyrrlekmvtsz4av4tp3m7dm5mx5peejnesga27svq9m72"
}
}
}
The JSON above is the contents of the file examples/test-data/requests/transfer.json
. We'll use this transaction as our example for the rest of the tutorial. In order to send the transaction, we need to perform 2 operations:
- Import the transaction data into the wallet
- Sign and submit the transaction
Note: we're able to make a Transfer
call here because we already created the token as part of the sanity check above, using make test-create-token
.
To generate transactions you can use the transactions import from-file
subcommand, as shown below:
$ cargo run --bin sov-cli -- transactions import from-file -h
Import a transaction from a JSON file at the provided path
Usage: sov-cli transactions import from-file <COMMAND>
Commands:
bank A subcommand for the `bank` module
sequencer-registry A subcommand for the `sequencer_registry` module
value-setter A subcommand for the `value_setter` module
accounts A subcommand for the `accounts` module
nft A subcommand for the `nft` module
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
Let's go ahead and import the transaction into the wallet
$ cargo run --bin sov-cli -- transactions import from-file bank --chain-id 0 --path ../test-data/requests/transfer.json
Adding the following transaction to batch:
{
"tx": {
"bank": {
"Transfer": {
"to": "sov1l6n2cku82yfqld30lanm2nfw43n2auc8clw7r5u5m6s7p8jrm4zqrr8r94",
"coins": {
"amount": 200,
"token_address": "sov1zdwj8thgev2u3yyrrlekmvtsz4av4tp3m7dm5mx5peejnesga27svq9m72"
}
}
}
},
"chain_id": 0,
"gas_tip": 0,
"gas_limit": 0
}
You now have a batch with a single transaction in your wallet. If you want to submit any more transactions as part of this batch, you can import them now. Finally, let's submit your transaction to the rollup.
$ cargo run --bin sov-cli rpc submit-batch by-address sov1l6n2cku82yfqld30lanm2nfw43n2auc8clw7r5u5m6s7p8jrm4zqrr8r94
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"bank_supplyOf","params":{"token_address":"sov1zdwj8thgev2u3yyrrlekmvtsz4av4tp3m7dm5mx5peejnesga27svq9m72"},"id":1}' http://127.0.0.1:12345
{"jsonrpc":"2.0","result":{"amount":1000},"id":1}
⚠️ Warning!⚠️
demo-rollup
is a prototype! It contains known vulnerabilities and should not be used in production under any circumstances.
By default, this implementation prints the state root and the number of blobs processed for each slot. To access any other data, you'll
want to use our RPC server. You can configure its host and port in rollup_config.toml
.
Query Modes
Most queries for ledger information accept an optional QueryMode
argument. There are three QueryModes:
Standard
. In Standard mode, a response to a query for an outer struct will contain the full outer struct and hashes of inner structs. For example a standardledger_getSlots
query would return all information relating to the requested slot, but only the hashes of the batches contained therein. If noQueryMode
is specified, aStandard
response will be returnedCompact
. In Compact mode, even the hashes of child structs are omitted.Full
. In Full mode, child structs are recursively expanded. So, for example, a query for a slot would return the slot's data, as well as data relating to anybatches
that occurred in that slot, any transactions in those batches, and any events that were emitted by those transactions.
Identifiers
There are several ways to uniquely identify items in the Ledger DB.
- By number. Each family of structs (
slots
,blocks
,transactions
, andevents
) is numbered in order starting from1
. So, for example, the first transaction to appear on the DA layer will be numered1
and might emit events1
-5
. Or, slot17
might contain batches41
-44
. - By hash. (
slots
,blocks
, andtransactions
only) - By containing item_id and offset.
- (
Events
only) By transaction_id and key.
To request an item from the ledger DB, you can provide any identifier - and even mix and match different identifiers. We recommend using item number wherever possible, though, since resolving other identifiers may require additional database lookups.
Some examples will make this clearer. Suppose that slot number 5
contains batches 9
, 10
, and 11
, that batch 10
contains
transactions 50
-81
, and that transaction 52
emits event number 17
. If we want to fetch events number 17
, we can use any of the following queries:
{"jsonrpc":"2.0","method":"ledger_getEvents","params":[[17]], ... }
{"jsonrpc":"2.0","method":"ledger_getEvents","params":[[{"transaction_id": 50, "offset": 0}]], ... }
{"jsonrpc":"2.0","method":"ledger_getEvents","params":[[{"transaction_id": 50, "key": [1, 2, 4, 2, ...]}]], ... }
{"jsonrpc":"2.0","method":"ledger_getEvents","params":[[{"transaction_id": { "batch_id": 10, "offset": 2}, "offset": 0}]], ... }
This method returns the current head of the ledger. It has no arguments.
Example Query:
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"ledger_getHead","params":[],"id":1}' http://127.0.0.1:12345
{"jsonrpc":"2.0","result":{"number":22019,"hash":"0xe8daef0f58a558aea44632a420bb62318bff6c38bbc616ff849d0a4be0a69cd3","batch_range":{"start":2,"end":2}},"id":1}
This response indicates that the most recent slot processed was number 22019
, its hash, and that it contained no batches (since the start
and end
of the batch_range
overlap). It also indicates that the next available batch to occur will be numbered 2
.
This method retrieves slot data. It takes two arguments, a list of SlotIdentifier
s and an optional QueryMode
. If no query mode is provided,
this list of identifiers may be flattened: "params":[[7]]
and "params":[7]
are both acceptable, but "params":[7, "Compact"]
is not.
Example Query:
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"ledger_getSlots","params":[[7], "Compact"],"id":1}' http://127.0.0.1:12345
{"jsonrpc":"2.0","result":[{"number":6,"hash":"0x6a23ea92fbe3250e081b3e4c316fe52bda53d0113f9e7f8f495afa0e24b693ff","batch_range":{"start":1,"end":2}}],"id":1}
This response indicates that slot number 6
contained batch 1
and gives the
This method retrieves slot data. It takes two arguments, a list of BatchIdentifier
s and an optional QueryMode
. If no query mode is provided,
this list of identifiers may be flattened: "params":[[7]]
and "params":[7]
are both acceptable, but "params":[7, "Compact"]
is not.
Example Query:
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"ledger_getBatches","params":[["0xf784a42555ed652ed045cc8675f5bc11750f1c7fb0fbc8d6a04470a88c7e1b6c"]],"id":1}' http://127.0.0.1:12345
{"jsonrpc":"2.0","result":[{"hash":"0xf784a42555ed652ed045cc8675f5bc11750f1c7fb0fbc8d6a04470a88c7e1b6c","tx_range":{"start":1,"end":2},"txs":["0x191d87a51e4e1dd13b4d89438c6717b756bd995d7108bef21a5ac0c9b6c77101"],"custom_receipt":"Rewarded"}],"id":1}%
This method retrieves transactions. It takes two arguments, a list of TxIdentifiers
s and an optional QueryMode
. If no query mode is provided,
this list of identifiers may be flattened: "params":[[7]]
and "params":[7]
are both acceptable, but "params":[7, "Compact"]
is not.
Example Query:
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"ledger_getTransactions","params":[[{ "batch_id": 1, "offset": 0}]],"id":1}' http://127.0.0.1:12345
{"jsonrpc":"2.0","result":[{"hash":"0x191d87a51e4e1dd13b4d89438c6717b756bd995d7108bef21a5ac0c9b6c77101","event_range":{"start":1,"end":1},"custom_receipt":"Successful"}],"id":1}
This response indicates that transaction 1
emitted no events but executed successfully.
This method retrieves the events based on the provided event identifiers.
Example Query:
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"ledger_getEvents","params":[1],"id":1}' http://127.0.0.1:12345
{"jsonrpc":"2.0","result":[null],"id":1}
This response indicates that event 1
has not been emitted yet.
Check here if you want to run with dockerized local Celestia instance.
Licensed under the Apache License, Version 2.0.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this repository by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.