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 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.
- Jupiter Rococo (jupiter): Almost the same position of Jupiter PoA, excepted the consensus algorithm switched from PoA to Rococo shared security, and can simulate cross-chain messaging functions.
-
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
Currently, Polkadot & Kusama have not released the parachain feature, thus we use branch
rococo-v1
to track the newest Rococo. And the executable filejupiter
just could be compiled inrococo-v1
branch.master
branch does not providejupiter
now.
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
-
Contract Logger support
-
Zero-Knowledge support, refer to this link PIP-101
Currently we use a simple static way to charge weight for ZKP, we would change this part with benchmarks result in future.
-
-
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 PatractChainExtension
modified pallet-contract
: support PatractChainExtension
and 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
modified pallet-contract
now.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 Rococo:
This part of code in
rococo-v1
branch now. Please checkoutrococo-v1
and compile it.It's a parachain blockchain network which would be deployed to Rococo network. And in this parachain, we would try to use the random number which relayed from relay chain in future.
This network uses
modified pallet-contract
now.For this network, the Extending types is:
{ "LookupSource": "MultiAddress", "Address": "MultiAddress" }
Jupiter Rococo open provider links are: -
wss://jupiter.elara.patract.io/
-wss://ws.jupiter.patract.cn/
-
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
modified pallet-contract
now.For this network, the Extending types is:
{ "LookupSource": "MultiAddress", "Address": "MultiAddress" }
Note: Substrate newest master is very different with Substrate v2.0.0 version. In Jupiter master
branch, we use Substrate newest
master as dependencies, and in Jupiter substrate-v2.0.0
branch, we use Substrate v2.0.0 from "crates.io" as dependencies.
(substrate-v2.0.0
branch only contains jupiter part.)
Thus, Jupiter has two main branch. In different branch, we provide different pallet-contracts
features:
- master: we track newest master, currently we use substrate commit:contracts: Release as v3.0.0 and add reserved field to
ContractInfoOf
(#8175)(debec916
).- In master, we use
src pallet-contract
ormodified pallet-contract
src pallet-contract
is belong to substrate commit version.modified pallet-contract
is belong to the forked substrate in vendor directory. We usually track the newest substrate version.
- In master, we use
- substrate-v2.0.0: we keep v2.0.0 dependencies in this branch. But this branch could only provide version 2.0.0
pallet-contracts
.- Version 2.0.0 may not match for newest ink!. If you what to test contract in this branch, please peek a suitable ink!
version for v2.0.0
pallet-contracts
. - In this branch, the Extending types must use the following (or switch to this branch, the readme would show more details):
{ "Address": "AccountId", "LookupSource": "AccountId", "GeneratedContractAddressType": { "_enum": [ "Original", "Repeatable" ] } }
- Version 2.0.0 may not match for newest ink!. If you what to test contract in this branch, please peek a suitable ink!
version for v2.0.0
> 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 --recursive
If you want to use substrate-v2.0.0
branch, do following commands:
> git clone --branch substrate-v2.0.0 https://github.com/patractlabs/jupiter.git
## or do following commands:
> git clone https://github.com/patractlabs/jupiter.git
> git checkout -t origin/substrate-v2.0.0
Note: 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.sh
Compile this repo follow this step:
> WASM_BUILD_TYPE=release cargo build --release
or we advice you to add WASM_BUILD_TYPE=release
in your global environment variables, so that you could just execute:
cargo build --release
If you just need debug execution file, just do
cargo build
When 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 provideNative
andWASM
and 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://patrastore.io/ 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=NativeElseWasm
Those 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/
jupiter
use for join parachain collector.
./jupiter --parachain-id=1000 --collator -d .sub -- --chain=rococo.json
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=Native
5. 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.