Plasm Deployment Smart Contract (1) - Building Plasm Node - 2021.5.30

Introduction to Plasm: Plasm Network aims to provide a scalable, interoperable decentralized application platform - defined on top of a new network form Web 3.0.

★★★Article link

Plasm Deployment Smart Contract (1) - Building Plasm Nodes

Plasm deploys smart contracts (2) - nginx reverse-generation forwarding plasm node service

Plasm deploys smart contracts (3) - configures the MetaMask-PRC network

Plasm deployment smart contract (4) - configure Remix and deploy the contract

1. Configuration environment

Build the environment: Linux (centos7)
install rust (under the root directory)
curl https://sh.rustup.rs -sSf | sh
configure the virtual environment
source ~/.cargo/env
update rustup download nightly
rustup update nightly
download wasm
rustup target add wasm32-unknown-unknown --toolchain nightly
install related dependencies
yum -y install cmake git clang libclang-dev build-essential
Install other build tools (a few minutes)
cargo +nightly install --git https://github.com/alexcrichton/wasm-gc

2. Download node

Install Plasm node from git source (1-2 hours long)
cargo +nightly install --locked --force --git https://github.com/staketechnologies/Plasm --tag v1.9.0-dusty plasm
insert image description here

3. Running the node

run a local running node
plasm --dev
insert image description here

Running a node on the Dusty network
plasm

Guess you like

Origin blog.csdn.net/weixin_43402353/article/details/117394340