-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ignazio-bovo
committed
Nov 26, 2021
1 parent
c718dbc
commit 545c346
Showing
1 changed file
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
# Address of the Joystream node. | ||
NODE_URL = ws://127.0.0.1:9944 | ||
NODE_URL=ws://127.0.0.1:9944 | ||
# Address of the Joystream query node. | ||
QUERY_NODE_URL = http://127.0.0.1:8081/graphql | ||
QUERY_NODE_URL=http://127.0.0.1:8081/graphql | ||
# Account which is expected to provide sufficient funds to test accounts. | ||
TREASURY_ACCOUNT_URI = //Alice | ||
TREASURY_ACCOUNT_URI=//Alice | ||
# Sudo Account | ||
SUDO_ACCOUNT_URI = //Alice | ||
SUDO_ACCOUNT_URI=//Alice | ||
# Amount of members able to buy membership in membership creation test. | ||
MEMBERSHIP_CREATION_N = 2 | ||
MEMBERSHIP_CREATION_N=2 | ||
# ID of the membership paid terms used in membership creation test. | ||
MEMBERSHIP_PAID_TERMS = 0 | ||
MEMBERSHIP_PAID_TERMS=0 | ||
# Council stake amount for first K accounts in council election test. | ||
COUNCIL_STAKE_GREATER_AMOUNT = 3000 | ||
COUNCIL_STAKE_GREATER_AMOUNT=3000 | ||
# Council stake amount for first the rest participants in council election test. | ||
COUNCIL_STAKE_LESSER_AMOUNT = 2000 | ||
COUNCIL_STAKE_LESSER_AMOUNT=2000 | ||
# Number of members with greater stake in council election test. | ||
COUNCIL_ELECTION_K = 2 | ||
COUNCIL_ELECTION_K=2 | ||
# Balance to spend using spending proposal | ||
SPENDING_BALANCE = 1000 | ||
SPENDING_BALANCE=1000 | ||
# Minting capacity increment for content working group minting capacity test. | ||
MINTING_CAPACITY_INCREMENT = 20 | ||
MINTING_CAPACITY_INCREMENT=20 | ||
# Minting capacity for council mint for spending proposal. | ||
COUNCIL_MINTING_CAPACITY = 100000 | ||
COUNCIL_MINTING_CAPACITY=100000 | ||
# Stake amount for Rome runtime upgrade proposal | ||
RUNTIME_UPGRADE_PROPOSAL_STAKE = 100000 | ||
RUNTIME_UPGRADE_PROPOSAL_STAKE=100000 | ||
# Validator count increment for Validator count test. | ||
VALIDATOR_COUNT_INCREMENT = 2 | ||
VALIDATOR_COUNT_INCREMENT=2 | ||
# Constantinople runtime path | ||
RUNTIME_WASM_PATH = ../../target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm | ||
RUNTIME_WASM_PATH=../../target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm | ||
# Working group size N | ||
WORKING_GROUP_N = 3 | ||
WORKING_GROUP_N=3 | ||
# Working group application stake | ||
WORKING_GROUP_APPLICATION_STAKE = 10 | ||
WORKING_GROUP_APPLICATION_STAKE=10 | ||
# Working group role stake | ||
WORKING_GROUP_ROLE_STAKE = 10 | ||
WORKING_GROUP_ROLE_STAKE=10 | ||
# Reward interval for working group tests | ||
LONG_REWARD_INTERVAL = 99999 | ||
LONG_REWARD_INTERVAL=99999 | ||
# First reward interval for working group reward test | ||
SHORT_FIRST_REWARD_INTERVAL = 3 | ||
SHORT_FIRST_REWARD_INTERVAL=3 | ||
# Reward interval for working group reward test | ||
SHORT_REWARD_INTERVAL = 3 | ||
SHORT_REWARD_INTERVAL=3 | ||
# Payout amount for working group tests | ||
PAYOUT_AMOUNT = 3 | ||
PAYOUT_AMOUNT=3 | ||
# Payout amount for leader-related proposals tests | ||
ALTERED_PAYOUT_AMOUNT = 7 | ||
ALTERED_PAYOUT_AMOUNT=7 | ||
# Mint capacity for storage working group | ||
STORAGE_WORKING_GROUP_MINTING_CAPACITY = 100000 | ||
STORAGE_WORKING_GROUP_MINTING_CAPACITY=100000 | ||
# Default unstaking period for storage working group | ||
STORAGE_WORKING_GROUP_UNSTAKING_PERIOD = 1 | ||
STORAGE_WORKING_GROUP_UNSTAKING_PERIOD=1 | ||
# Slash value for manage working group lead testing scenario | ||
SLASH_AMOUNT = 2 | ||
SLASH_AMOUNT=2 | ||
# Stake decrement amount for manage working group lead testing scenario | ||
STAKE_DECREMENT = 3 | ||
STAKE_DECREMENT=3 | ||
# Mint capacity increment value for working gorup mint capacity test | ||
MINT_CAPACITY_INCREMENT = 1000 | ||
MINT_CAPACITY_INCREMENT=1000 | ||
# Storage node address to download content from | ||
STORAGE_NODE_URL = http://localhost:3001/asset/v0 | ||
STORAGE_NODE_URL=http://localhost:3001/asset/v0 |