How to run an AdMeta node
Last updated
Last updated
AdMeta node is built with Substrate as a solo Blockchain. To run an AdMeta node on your local machine, just follow the steps below.
First, complete the .
Clone the latest source code from
Use Rust's native cargo
command to build and launch the AdMeta node:
The cargo run
command will perform an initial build. Use the following command to build the node without launching it:
Once the project has been built, the following command can be used to explore all parameters and subcommands:
The provided cargo run
command will launch a temporary node and its state will be discarded after you terminate the process. After the project has been built, there are other ways to launch the node.
This command will start the single-node development chain with a non-persistent state:
Purge the development chain's state:
Start the development chain with detailed logging:
Alice
Bob
Alice//stash
Bob//stash
In case of being interested in maintaining the chain' state between runs a base path must be added so the db can be stored in the provided folder instead of a temporal one. We could use this folder to store different chain databases, as a different folder will be created per different chain that is ran. The following commands shows how to use a newly created folder as our db base path.
Then run the following command to start a single node development chain.
This command will compile your code, followed by the whole unit test run, and then start a local development network.
Development chain means that the state of our chain will be in a tmp folder while the nodes are running. Also, alice account will be authority and sudo account as declared in the . At the same time the following accounts will be pre-funded:
Once the AdMeta node is running locally, you can connect it with Polkadot-JS Apps front-end to interact with your chain. connecting the Apps to your local AdMeta node.
First, install and .