Node for Manta Network, Privacy Preserving DeFi Stack.
2.3K
Manta is a privacy preserving DeFi stack on Polkadot/Substrate. The code currently hasn't been properly security audited (work in progress), use it at your own risk.
./scripts/init.sh
cargo build --release -p manta
Currently, there are two developing branches:
manta: Manta Network's testnet/mainnet nodemanta-pc: Manta Network's parachain nodeYou can run manta nodes using docker.
docker pull mantanetwork/manta:latest
docker run -it -p 9944:9944 mantanetwork/manta:latest --dev --tmp --alice --unsafe-ws-external
# Alice node
docker run \
-p 9944:9944 \
-p 30333:30333 \
--name=alice mantanetwork/manta:latest \
--chain=local \
--tmp \
--alice \
--node-key 0000000000000000000000000000000000000000000000000000000000000001 \
--unsafe-ws-external \
--validator
docker run \
-p 9945:9944 \
-p 30334:30333 \
--name=bob mantanetwork/manta:latest \
--bootnodes /ip4/127.0.0.1/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp \
--chain=local \
--bob \
--unsafe-ws-external \
--validator
Normally, both nodes will produce and finalize blocks.
docker run mantanetwork/manta:latest --chain manta-testnet --name "ILoveManta"
[Manta] as the prefix to submit a PR to manta branch, use [Manta-PC] as the prefix to submit a PR to manta-pc branch.cargo +nightly fmt before pushing your code.Content type
Image
Digest
sha256:e29deb615…
Size
145.5 MB
Last updated
almost 2 years ago
docker pull mantanetwork/manta