Skip to content

A dummy rollup in Rust to allow configurable random blob batch postings.

Notifications You must be signed in to change notification settings

jcstein/dummy_rollup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dummy_rollup

This is a dummy rollup project to test the Celenium API.

Prerequisites

  • Rust
  • Celestia light node running

Setting up Celestia light node

To start a Celestia light node, use the following command:

celestia light start --core.ip rpc-mocha.pops.one --p2p.network mocha --rpc.skip-auth

Dependencies

The project uses the following dependencies:

  • anyhow: For error handling.
  • celestia_rpc: For interacting with the Celestia node.
  • celestia_types: For handling Celestia-specific types like Namespace and Blob.
  • rand: For generating random data for the blobs.
  • tokio: For asynchronous runtime.
  • ctrlc: For handling Ctrl+C interrupts.

Usage

Build

To build the dummy_rollup:

cargo build

Run

To run the dummy_rollup:

cargo run -- <namespace_plaintext> <number_of_blobs> <blob_size_in_bytes>

Where:

  • <namespace_plaintext>: The plaintext string that will be converted to a hexadecimal namespace.
  • <number_of_blobs>: The number of blobs to generate and submit in each batch.
  • <blob_size_in_bytes>: The size of each blob in bytes.

The program will continuously submit batches of blobs to the Celestia node every 5 seconds. To stop the submission, press Ctrl+C. The program will handle the shutdown gracefully.

Example

cargo run -- junkdata 10 1000

This command posts continuously to the "junkdata" namespace with 10 blobs of 1000 bytes each.

If there are any issues with the submission, the program will print an error message and continue attempting to submit new batches.

Example output

When running the example command, you should see output similar to the following:

Starting continuous blob submission. Press Ctrl+C to stop.
Submitting batches of 10 blobs, each 1000 bytes, with namespace 'junkdata'
Batch submitted successfully!
Result: 2870188
...

If there is an error, you will see:

Error submitting batch: <error_message>

About

A dummy rollup in Rust to allow configurable random blob batch postings.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages