.env 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Address of the Joystream node.
  2. NODE_URL = ws://127.0.0.1:9944
  3. # Account which is expected to provide sufficient funds to test accounts.
  4. SUDO_ACCOUNT_URI = //Alice
  5. # Amount of members able to buy membership in membership creation test.
  6. MEMBERSHIP_CREATION_N = 2
  7. # ID of the membership paid terms used in membership creation test.
  8. MEMBERSHIP_PAID_TERMS = 0
  9. # Council stake amount for first K accounts in council election test.
  10. COUNCIL_STAKE_GREATER_AMOUNT = 3000
  11. # Council stake amount for first the rest participants in council election test.
  12. COUNCIL_STAKE_LESSER_AMOUNT = 2000
  13. # Number of members with greater stake in council election test.
  14. COUNCIL_ELECTION_K = 2
  15. # Balance to spend using spending proposal
  16. SPENDING_BALANCE = 1000
  17. # Minting capacity increment for content working group minting capacity test.
  18. MINTING_CAPACITY_INCREMENT = 20
  19. # Minting capacity for council mint for spending proposal.
  20. COUNCIL_MINTING_CAPACITY = 100000
  21. # Stake amount for Rome runtime upgrade proposal
  22. RUNTIME_UPGRADE_PROPOSAL_STAKE = 100000
  23. # Validator count increment for Validator count test.
  24. VALIDATOR_COUNT_INCREMENT = 2
  25. # Constantinople runtime path
  26. RUNTIME_WASM_PATH = ../../target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm
  27. # Working group size N
  28. WORKING_GROUP_N = 3
  29. # Working group application stake
  30. WORKING_GROUP_APPLICATION_STAKE = 10
  31. # Working group role stake
  32. WORKING_GROUP_ROLE_STAKE = 10
  33. # Reward interval for working group tests
  34. LONG_REWARD_INTERWAL = 99999
  35. # First reward interval for working group reward test
  36. SHORT_FIRST_REWARD_INTERWAL = 3
  37. # Reward interval for working group reward test
  38. SHORT_REWARD_INTERWAL = 3
  39. # Payout amount for working group tests
  40. PAYOUT_AMOUNT = 3
  41. # Mint capacity for storage working group
  42. STORAGE_WORKING_GROUP_MINTING_CAPACITY = 100000
  43. # Default unstaking period for storage working group
  44. STORAGE_WORKING_GROUP_UNSTAKING_PERIOD = 1