MCPcopy Index your code
hub / github.com/crustio/crust

github.com/crustio/crust @v1.2.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.2.0 ↗ · + Follow
3,686 symbols 10,583 edges 324 files 681 documented · 18%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Crust · Build Status Substrate version GitHub license

Funded by web3 foundation     

Implementation of a Crust Protocol node with substrate.

🎮 Join to Play

Please go to crust wiki, refer the node overview.

Building

⌨️ Build from source

1. Install rust

If, after installation, running rustc --version in the console fails, refer to it to repair.

curl https://sh.rustup.rs -sSf | sh

2. Initialize your wasm build environment

./scripts/init.sh

3. Build wasm and native code

cargo build --release

*4. Troubleshooting

Depending on different building environments, if you cannot build the source code, please check the detail error message and try to run the corresponding commands to fix it

  • Debian/Ubuntu/Raspbian
sudo apt install gcc-multilib
wget https://apt.llvm.org/llvm.sh
sudo ./llvm 10
sudo ln -s /usr/lib/llvm-10/bin/llvm-config llvm-config
sudo apt install gcc
sudo apt install clang
  • Fedora/RedHat/CentOS
sudo yum -y install gcc
sudo yum -y install clang

Also, you can join discord to get help

🐳 Dockerize

Please refer this to see how to build and run crust with docker.

⛰ Live Network

1. Connect to mainnet

The default branch mainnet can be build and connect to mainnet.

./target/release/crust --chain mainnet

2. Connect to maxwell

Please checkout the branch release/0.11.1, then build and connect to maxwell

./target/release/crust --chain maxwell

Get the bootnodes from here.

🍕 Dev Network

1. Connect to rocky

Rocky has the same function and parameters with Mainnet, developers can deploy applications on this free test network. Read more about rocky.

./target/release/crust --chain rocky

2. Run as dev

Purge any existing developer chain state:

./target/release/crust purge-chain --dev

Start a development chain with:

./target/release/crust --dev

Detailed logs may be shown by running the node with the following environment variables set: RUST_LOG=debug RUST_BACKTRACE=1 cargo run -- --dev.

3. Run as local

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.

You'll need two terminal windows open.

We'll start Alice's substrate node first on default TCP port 30333 with her chain database stored locally at /tmp/alice. The bootnode ID of her node is 12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp, which is generated from the --node-key value that we specify below:

./target/release/crust \
  --base-path /tmp/alice \
  --chain local \
  --alice \
  --node-key 0000000000000000000000000000000000000000000000000000000000000001

In the second terminal, we'll start Bob's substrate node on a different TCP port of 30334, and with his chain database stored locally at /tmp/bob. We'll specify a value for the --bootnodes option that will connect his node to Alice's bootnode ID on TCP port 30333:

./target/release/crust \
  --base-path /tmp/bob \
  --chain local \
  --bob \
  --port 30334 \
  --bootnodes /ip4/127.0.0.1/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp

Additional CLI usage options are available and may be shown by running cargo run -- --help.

🙋🏻‍♂️ Contribution

Please follow the contributions guidelines as outlined in docs/CONTRIBUTION.md. In all communications and contributions, this project follows the Contributor Covenant Code of Conduct.

License

Apache 2.0

Extension points exported contracts — how you extend this code

Sealed (Interface)
Traits that are designed to only be implemented internally in *ring*. Usage: ``` use crate::sealed; pub trait MyType: [7 …
utils/ring/src/lib.rs
Deserialize (Interface)
A **data structure** that can be deserialized from any data format supported by Serde. Serde provides `Deserialize` imp [48 …
utils/serde_no_std/src/de/mod.rs
Index (Interface)
A type that can be used to index into a `serde_json::Value`. The [`get`] and [`get_mut`] methods of `Value` accept any [6 …
utils/serde_json_no_std/src/value/index.rs
Config (Interface)
The module's configuration trait. [31 implementers]
cstrml/swork/src/lib.rs
Config (Interface)
(no doc) [8 implementers]
cstrml/staking/src/lib.rs
Config (Interface)
The module's configuration trait. [4 implementers]
cstrml/market/src/lib.rs
Config (Interface)
(no doc) [9 implementers]
cstrml/balances/src/lib.rs
BenefitInterface (Interface)
(no doc) [5 implementers]
primitives/src/traits.rs

Core symbols most depended-on inside this repo

clone
called by 530
utils/ring/src/signature.rs
into
called by 151
utils/ring/src/io/writer.rs
iter
called by 149
utils/serde_json_no_std/src/map.rs
len
called by 116
utils/serde_json_no_std/src/map.rs
write_str
called by 98
utils/serde_json_no_std/src/ser.rs
run_to_block
called by 95
cstrml/market/src/mock.rs
error_spanned_by
called by 86
utils/serde_derive_no_std/src/internals/ctxt.rs
iter
called by 85
cstrml/staking/src/slashing.rs

Shape

Method 1,577
Function 1,461
Class 464
Interface 93
Enum 90
Struct 1

Languages

Rust96%
C2%
Python1%
Go1%
C++1%

Modules by API surface

utils/serde_no_std/src/private/de.rs116 symbols
utils/serde_json_no_std/tests/test.rs106 symbols
utils/serde_json_no_std/src/ser.rs102 symbols
utils/ring/src/ec/suite_b/ops.rs96 symbols
utils/serde_json_no_std/src/de.rs90 symbols
utils/serde_derive_no_std/src/internals/attr.rs89 symbols
utils/ring/src/arithmetic/bigint.rs89 symbols
cstrml/staking/src/tests.rs79 symbols
cstrml/staking/src/lib.rs65 symbols
utils/serde_json_no_std/src/value/de.rs64 symbols
cstrml/staking/src/mock.rs64 symbols
cstrml/balances/src/lib.rs64 symbols

For agents

$ claude mcp add crust \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact