Polymesh is a blockchain for regulated securities and open finance.
https://polymath.network/polymesh-whitepaper
Install Rust:
curl https://sh.rustup.rs -sSf | sh
Install required tools:
./scripts/init.sh
Build Wasm and native code:
cargo build --release
Install GDB for your distribution.
Binary should be built in debug mode, using cargo build
without --release
parameter:
$> cargo build
Test cases are built in debug mode by default.
Using rust-gdb
you will get more pretty printed values of different types than go directly with
gdb
. The following example, start gdb
, set a breakpoint and start it:
$> rust-gdb ./target/debug/polymesh
GNU gdb (Ubuntu 8.2.91.20190405-0ubuntu3) 8.2.91.20190405-git
Copyright (C) 2019 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./target/debug/polymesh...
(gdb) b balances/src/lib.rs : 390
Breakpoint 1 at 0x2b792d0: balances/src/lib.rs:390. (2 locations)
(gdb) run --dev
Starting program: /home/miguel/project/polymath/repos/Polymesh/target/debug/polymesh --dev
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
2020-02-26 12:48:37 Running in --dev mode, RPC CORS has been disabled.
2020-02-26 12:48:37 Polymesh Node
...
You can start a development chain with:
./target/release/polymesh --dev --pool-limit 100000 -d /tmp/pmesh-primary-node
Detailed logs may be shown by running the node with the following environment variables set:
RUST_LOG=debug RUST_BACKTRACE=1 ./target/release/polymesh --dev --pool-limit 100000 -d /tmp/pmesh-primary-node
.
To access the Polymesh Chain using the Web Interface do the following:
- In Settings tab under the
General
section selectLocal Node (Own, 127.0.0.1:9944)
as remote endpoint. - If you have custom types definitions that differ from the V1 Aldebaran Testnet, you can update these in Settings tab under the
Developer
section. - Reload the page.
If you want to see the multi-node consensus algorithm in action locally, then you can create a local testnet with two validator nodes for Alice and Bob, who are the initial authorities of the genesis chain that have been endowed with testnet units.
cd scripts/cli
npm install
./run.sh
This uses pm2 to run a local three node network for demonstrate simple consensus.
To stop the chain you can use:
./stop.sh
and to display log files you can use:
./log.sh
Specifying no chain at the command line defaults to the Aldebaran Public Testnet (e.g. --chain aldebaran), so to run a node which connects to the Aldebaran Public Testnet, you can start your node with:
./target/release/polymesh --pool-limit 100000 -d /tmp/pmesh-primary-node
Unit tests are packaged with the Rust code. To run these, you can execute:
cargo test --package polymesh-runtime-common --features default_identity
cargo test --package pallet-staking
cargo test --package pallet-balances
cargo test --package pallet-im-online
cargo test --package polymesh-primitives
cargo test --package pallet-pips-rpc
cargo test --package pallet-transaction-payment
You can seed the network with some identities, claims, signing keys and assets by running the functional test.
cd scripts/cli
node run test
See README for details.
Polymesh runtime benchmarks can be run with a command that specifies the pallet and the name of the extrinsic to be benchmarked, for example:
cargo run --release --features runtime-benchmarks -- \
benchmark --pallet asset --extrinsic register_asset
Note that the CLI binary should be built in release mode and that the feature flag
runtime-benchmarks
should be set to enable the CLI option benchmark
.
Polymesh is built on Substrate.