@@ -6,12 +6,12 @@ contracts:
6
6
Curation :
7
7
init :
8
8
token : " ${{GraphToken.address}}"
9
- reserveRatio : 500000 # 50% bonding curve reserve ratio parameter
9
+ reserveRatio : 500000 # 50% (in basis points)
10
10
minimumCurationDeposit : " 100000000000000000000" # 100 GRT
11
11
proxy : true
12
12
calls :
13
13
- fn : " setWithdrawalFeePercentage"
14
- withdrawalFeePercentage : 50000 # 5% fee for redeeming signal
14
+ withdrawalFeePercentage : 50000 # 5% (in basis points)
15
15
- fn : " setStaking"
16
16
staking : " ${{Staking.address}}"
17
17
- fn : " setRewardsManager"
@@ -21,12 +21,12 @@ contracts:
21
21
arbitrator : *arbitrator
22
22
token : " ${{GraphToken.address}}"
23
23
staking : " ${{Staking.address}}"
24
- minimumDeposit : " 100000000000000000000" # 100 GRT
25
- fishermanRewardPercentage : 100000 # in basis points
26
- slashingPercentage : 50000 # in basis points
24
+ minimumDeposit : " 100000000000000000000" # 100 GRT (in wei)
25
+ fishermanRewardPercentage : 100000 # 10% ( in basis points)
26
+ slashingPercentage : 100000 # 10% ( in basis points)
27
27
EpochManager :
28
28
init :
29
- lengthInBlocks : 5760 # One day in blocks
29
+ lengthInBlocks : 275 # ~1 hour ( in blocks)
30
30
proxy : true
31
31
GNS :
32
32
init :
@@ -47,14 +47,20 @@ contracts:
47
47
calls :
48
48
- fn : " setCuration"
49
49
curation : " ${{Curation.address}}"
50
+ - fn : " setCurationPercentage"
51
+ percentage : 100000 # 10%
50
52
- fn : " setChannelDisputeEpochs"
51
53
channelDisputeEpochs : 1
52
54
- fn : " setMaxAllocationEpochs"
53
- maxAllocationEpochs : 5
55
+ maxAllocationEpochs : 24 # Based on epoch length this is ~1 day (in epochs)
54
56
- fn : " setThawingPeriod"
55
- thawingPeriod : 20 # in blocks
57
+ thawingPeriod : 275 # ~1 hour ( in blocks)
56
58
- fn : " setRewardsManager"
57
- thawingPeriod : " ${{RewardsManager.address}}"
59
+ rewardsManager : " ${{RewardsManager.address}}"
60
+ - fn : " setDelegationCapacity"
61
+ delegationCapacity : 1 # 100% (multiplier)
62
+ - fn : " setProtocolPercentage"
63
+ protocolPercentage : 10000 # 1% (in basis points)
58
64
RewardsManager :
59
65
init :
60
66
token : " ${{GraphToken.address}}"
0 commit comments