Wasm smart contract networks powered by Substrate FRAME Contracts pallet in Polkadot ecosystem.
Jupiter aims to be an open blockchain network, which supports contract developers to use ink!, Ask! and other language frameworks which can run on FRAME Contracts pallet contract model. We will directly use DOT(test coin)/ROC(rococo coin) as native token for gas fee and governance.
For different requirements, this repo contains different runtime for different situations (The content in following parentheses is the name of the executable file):
-
Jupiter Testnets (already running):
- Jupiter (jupiter): A parachain collator with Wasm contract feature. Due to currently public relaychain(like Rococo and Westend) do not support Sandbox HostFunction, we are running a private modified Westend testnet relaychain to run jupiter. And Jupiter parachain is running on this test Westend relaychain.
- Jupiter PoA (jupiter-prep): The independent blockchain maintained by PoA validators is only for deploying test contracts and issuing test assets with no value. This blockchain network contains newest features.
-
Development Node:
- Jupiter Dev Node (jupiter-dev): Local development node with pure
FRAME contracts pallet. Contract developers could test contracts quickly without waiting block interval.
- Jupiter Dev Node (jupiter-dev): Local development node with pure
In post, we use rococo-v1 branch for parachain. And now the rococo-v1 branch do not need anymore.
In following, we name FRAME contracts pallet as pallet-contracts
Patract FRAME contracts pallet contains our ChainExtension to provide many particular features for contracts, and contains some compatible modifications.
-
ChainExtension
-
Patract modifications (
pallet-patracts)- // No features for now.
Thus we call "src pallet-contract" for the pallet-contract module which comes from substrate directly, and call "modified pallet-contracts" for
the pallet-contract which comes from our forked substrate repo in vendor directory.
Inside:
src pallet-contract: support PatractChainExtensionmodified pallet-contract: support PatractChainExtensionand Patract modifications
When using Substrate Portal, @polkadot/api and Redspot or other 3rd parties client to connect Jupiter node, please remember to add "extending types" for Jupiter requirements. Notice different network may have different Extending types.
Now, Jupiter has launched following network:
-
Jupiter PoA V1 (Jupiter A1):
This network uses
src pallet-contractnow.It's an independent blockchain network which contains contracts feature. Anyone could submit contract to this network for test. The token decimals and time interval for producing block are same with Polkadot network. This testnet blockchain uses Babe as consensus algorithm, and provide Babe VRF random number for contract module.
Jupiter PoA's SS58 Address Prefix changes from 42 (address:
5xxxx) to 26 (address:3xxxx) in 1.0.1 version.For this network, the Extending types is:
{ "LookupSource": "MultiAddress", "Address": "MultiAddress", "AccountInfo": "AccountInfoWithTripleRefCount", "AliveContractInfo": { "trieId": "TrieId", "storageSize": "u32", "pairCount": "u32", "codeHash": "CodeHash", "rentAllowance": "Balance", "rentPayed": "Balance", "deductBlock": "BlockNumber", "lastWrite": "Option<BlockNumber>", "_reserved": "Option<Null>" }, "FullIdentification": "AccountId", "AuthorityState": { "_enum": [ "Working", "Waiting" ] }, "EraIndex": "u32", "ActiveEraInfo": { "index": "EraIndex", "start": "Option<u64>" }, "UnappliedSlash": { "validator": "AccountId", "reporters": "Vec<AccountId>" } }Jupiter PoA open provider links are:
wss://jupiter-poa.elara.patract.io/wss://ws.jupiter-poa.patract.cn/
Jupiter open telemetry link is https://telemetry.patract.io/
-
Jupiter:
It's a parachain blockchain network which would be deployed to any Polkadot Relaychain network. This parachain is running our private Westend network. And in this parachain, we try to use the random number which relayed from relay chain.
This network uses
src pallet-contractnow.For this network, the Extending types is:
{ "LookupSource": "MultiAddress", "Address": "MultiAddress", "AccountInfo": "AccountInfoWithTripleRefCount", "AliveContractInfo": { "trieId": "TrieId", "storageSize": "u32", "pairCount": "u32", "codeHash": "CodeHash", "rentAllowance": "Balance", "rentPayed": "Balance", "deductBlock": "BlockNumber", "lastWrite": "Option<BlockNumber>", "_reserved": "Option<Null>" }, "BabeRandomness": { "epoch": "u64", "start_slot": "u64", "duration": "u64", "randomness": "schnorrkel::Randomness" } }Jupiter open provider links are: -
wss://ws.jupiter.patract-westend.patract.cnWestend-Patract(Relaychain) open provider links are: -
wss://ws.patract-westend.patract.cnJupiter Parachain open telemetry link is https://telemetry.patract.io/#list/Jupiter%20PC1
Westend-Patract(Relaychain) open telemetry link is https://telemetry.patract.io/#list/Westend-Patract
-
Jupiter Dev node:
It's a local develop node for testing contract easily. This node could run in single, and do not have time interval for producing block, which would produce block only when receiving an extrinsic. This feature let developers do not need to waste time for waiting producing blocks in develop and test.
This node uses
src pallet-contractnow.For this network, the Extending types is:
{ "LookupSource": "MultiAddress", "Address": "MultiAddress" }
> git clone --recurse-submodules https://github.com/patractlabs/jupiter.git
## or do following commands
> git clone https://github.com/patractlabs/jupiter.git
> cd jupiter/vendor
> git submodule update --init --recursiveNote: if you have build substrate successfully, you do not need to do this any more
You should prepare rust environment before, lookup this link for rust to downland rust and install it.
then:
> cd jupiter/scripts
> bash init.shCompile this repo follow this step:
> WASM_BUILD_TYPE=release cargo build --releaseor we advice you to add WASM_BUILD_TYPE=release in your global environment variables, so that you could just execute:
cargo build --releaseIf you just need debug execution file, just do
cargo buildWhen running node, following parameters means:
--dev: means start with dev mode, would provide default private key to start the chain, and running a independent node.-d <directory>: means blockchain database stored in the<directory>, if you what to clear all data, just stop the node and delete this directory. If you do not use this parameter, the node would use default directory to store data.--execution=<STRATEGY>: substrate provideNativeandWASMand other execution strategy. for test and develop, we suggest to useNative
More parameters please lookup from --help or Substrate Developer Hub https://substrate.dev/
The blockchain produces blocks in babe algorithm for every 6 second, and do finality by grandpa algorithm.
All people could join this testnet as a sync node.
Welcome use this link https://app.element.io/#/room/#jupiter-faucet-room:matrix.org to claim some DOT from our faucet
Moving the execution file jupiter-prep to other place and launch the node by following steps:
./jupiter-prep --chain=jupiter-poa --name=<set you custom name> --pruning=archive --execution=NativeElseWasmThose steps is same to any other substrate node, just should notice this parameter --chain should use jupiter.
You could lookup your node in https://telemetry.patract.io/.
Notice this dev mode just means Jupiter PoA start with --dev, which is using dev config to start Jupiter PoA, not the
jupiter-dev node.
./jupiter-prep --dev --execution=NativeElseWasm -d <database path for you>Local test is a mode which is used to start a private blockchain network.
# start first node
./jupiter-prep --chain=jupiter-poa-local --alice --execution=NativeElseWasm -d <database path for you>
# start second node
./jupiter-prep --chain=jupiter-poa-local --bob --execution=NativeElseWasm -d <database path for you>Note if you start those two nodes in a machine, there could connect to each other directly. If you start in different
but in same network, you should add --bootnodes parameter when start second node. More details please lookup https://substrate.dev/
currently, we add Sandbox HostFunction in relaychain(westend) to support parachain contract, so if you want to running on test environment, you should add Sandbox HostFunction to relaychain.
Export relaychain json:
./target/release/polkadot build-spec --chain westend-local --disable-default-bootnode --raw > westend-local.jsonCustom parachain specification:
./target/release/jupiter build-spec --chain jupiter-dev --disable-default-bootnode > westend-local-parachain-plain.jsonDefault para ID is 1000 from Cumulus, so you must correctly set it for your parachain based on the reserved para ID from above. Assuming your reserved para ID is 2000, you will open rococo-local-parachain-plain.json and modify two fields:
// --snip--
"para_id": 2000, // <--- your already registered ID
// --snip--
"parachainInfo": {
"parachainId": 2000 // <--- your already registered ID
},
// --snip--Then generate a raw chain spec derived from your modified plain chain spec:
./target/release/jupiter build-spec --chain westend-local-parachain-plain.json --raw --disable-default-bootnode > westend-local-parachain-2000-raw.jsonObtain Wasm runtime validation function:
./target/release/jupiter export-genesis-wasm --chain westend-local-parachain-2000-raw.json > para-wasmGenerate a parachain genesis state:
./target/release/jupiter export-genesis-state --chain westend-local-parachain-2000-raw.json > para-genesisRun parachain:
./target/release/jupiter \
--alice \
--collator \
--force-authoring \
--chain westend-local-parachain-2000-raw.json \
--tmp \
--port 40333 \
--ws-port 8844 \
-- \
--execution wasm \
--chain westend-local.json \
--port 30343 \
--ws-port 9977After running relaychain and parachain, upload parachain genenis file to relaychain. refere this link.
For now, we only running our own private parachain(collator) node use aura algorithm, outside node should running in sync mode.
./jupiter --chain ./jupiter-westend-patract.json --execution wasm --wasm-execution=compiled --force-authoring --parachain-id=2000 --tmp \
--chain ./westend-patract.json --no-beefy --execution wasm --wasm-execution=compiled --tmp \
--bootnodes /dns/ws.patract-westend.patract.cn/tcp/30333/p2p/12D3KooWFBrd6SrevJ4vLi3SY7KRYQEVbRSeoENmdDouAW7wGCvZNotice, currently we didn't make seed node into westend-patract.json, so you have to specify our private westend bootnode.
jupiter-dev just use for local development, it providers a nice and quick experience for contract developing for developers
do not need wait for producing block time, which is very wasting time in testing.
running jupiter-dev node in your machine:
./jupiter-dev --dev -d .sub --execution=Native5. https://polkadot.js.org/apps/ or https://github.com/polkadot-js/apps or using for polkadot-js sdk
Now, Jupiter has provided in apps. And we would provide Jupiter Rococo in TEST RELAYS & PARACHAINS soon.