12345678910111213141516171819202122 |
- # Address of the Joystream node.
- NODE_URL = ws://127.0.0.1:9944
- # Account which is expected to provide sufficient funds to test accounts.
- SUDO_ACCOUNT_URI = //Alice
- # Amount of members able to buy membership in membership creation test.
- MEMBERSHIP_CREATION_N = 2
- # ID of the membership paid terms used in membership creation test.
- MEMBERSHIP_PAID_TERMS = 0
- # Council stake amount for first K accounts in council election test.
- COUNCIL_STAKE_GREATER_AMOUNT = 1500
- # Council stake amount for first the rest participants in council election test.
- COUNCIL_STAKE_LESSER_AMOUNT = 1000
- # Number of members with greater stake in council election test.
- COUNCIL_ELECTION_K = 2
- # Balance to spend using spending proposal
- SPENDING_BALANCE = 1000
- # Minting capacity for content working group minting capacity test.
- MINTING_CAPACITY = 100020
- # Stake amount for Rome runtime upgrade proposal
- RUNTIME_UPGRADE_PROPOSAL_STAKE = 100000
- # Constantinople runtime path
- RUNTIME_WASM_PATH = ../../target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm
|