@@ -7,7 +7,7 @@ MAINNET_RPC_URL=
77SEPOLIA_RPC_URL =
88
99# ----------------------------------------------------------------------------
10- # ProtocolStaking deployment
10+ # ProtocolStaking deployment and configuration
1111# ----------------------------------------------------------------------------
1212# Address of the underlying staking ERC20
1313ZAMA_TOKEN_ADDRESS = 0x0000000000000000000000000000000000000001
@@ -25,6 +25,10 @@ PROTOCOL_STAKING_COPRO_VERSION=1
2525# Cooldown period in seconds before unstaked tokens can be released
2626PROTOCOL_STAKING_COPRO_COOLDOWN_PERIOD = 604800 # 7 days
2727
28+ # Initial reward rate
29+ # Note: The reward rate is in tokens (using 18 decimals) per second
30+ PROTOCOL_STAKING_COPRO_REWARD_RATE = 10000000000000000
31+
2832# ----------------------------------------------------------------------------
2933# KMS
3034# ----------------------------------------------------------------------------
@@ -35,8 +39,12 @@ PROTOCOL_STAKING_KMS_VERSION=1
3539# Cooldown period in seconds before unstaked tokens can be released
3640PROTOCOL_STAKING_KMS_COOLDOWN_PERIOD = 604800 # 7 days
3741
42+ # Initial reward rate
43+ # Note: The reward rate is in tokens (using 18 decimals) per second
44+ PROTOCOL_STAKING_KMS_REWARD_RATE = 10000000000000000
45+
3846# ----------------------------------------------------------------------------
39- # OperatorStaking deployment
47+ # OperatorStaking deployment and configuration
4048# ----------------------------------------------------------------------------
4149# ----------------------------------------------------------------------------
4250# Coprocessor
@@ -49,11 +57,20 @@ OPERATOR_STAKING_COPRO_TOKEN_NAME_0="OperatorStakingCopro1"
4957OPERATOR_STAKING_COPRO_TOKEN_SYMBOL_0 = " stZAMAcopro1"
5058OPERATOR_STAKING_COPRO_OWNER_ADDRESS_0 = " 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" # accounts[2] (address)
5159
60+ # OperatorRewarder coprocessor 1
61+ # Initial owner fee
62+ # Note: The owner fee is in basis points (in 1/100th of a percent, so 10000 = 100.00%)
63+ OPERATOR_REWARDER_COPRO_OWNER_FEE_0 = 2000
64+
5265# OperatorStaking coprocessor 2
5366OPERATOR_STAKING_COPRO_TOKEN_NAME_1 = " OperatorStakingCopro2"
5467OPERATOR_STAKING_COPRO_TOKEN_SYMBOL_1 = " stZAMAcopro2"
5568OPERATOR_STAKING_COPRO_OWNER_ADDRESS_1 = " 0x90F79bf6EB2c4f870365E785982E1f101E93b906" # accounts[3] (address)
5669
70+ # OperatorRewarder coprocessor 2
71+ # Initial owner fee
72+ # Note: The owner fee is in basis points (in 1/100th of a percent, so 10000 = 100.00%)
73+ OPERATOR_REWARDER_COPRO_OWNER_FEE_1 = 1000
5774
5875# ----------------------------------------------------------------------------
5976# KMS
@@ -66,23 +83,27 @@ OPERATOR_STAKING_KMS_TOKEN_NAME_0="OperatorStakingKms1"
6683OPERATOR_STAKING_KMS_TOKEN_SYMBOL_0 = " stZAMAkms1"
6784OPERATOR_STAKING_KMS_OWNER_ADDRESS_0 = " 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" # accounts[2] (address)
6885
86+ # OperatorRewarder KMS 1
87+ # Initial owner fee
88+ # Note: The owner fee is in basis points (in 1/100th of a percent, so 10000 = 100.00%)
89+ OPERATOR_REWARDER_KMS_OWNER_FEE_0 = 1500
90+
6991# OperatorStaking KMS 2
7092OPERATOR_STAKING_KMS_TOKEN_NAME_1 = " OperatorStakingKms2"
7193OPERATOR_STAKING_KMS_TOKEN_SYMBOL_1 = " stZAMAkms2"
7294OPERATOR_STAKING_KMS_OWNER_ADDRESS_1 = " 0x90F79bf6EB2c4f870365E785982E1f101E93b906" # accounts[3] (address)
7395
74- # OperatorStaking KMS 3
75- OPERATOR_STAKING_KMS_TOKEN_NAME_1 = " OperatorStakingKms3 "
76- OPERATOR_STAKING_KMS_TOKEN_SYMBOL_1 = " stZAMAkms3 "
77- OPERATOR_STAKING_KMS_OWNER_ADDRESS_1 = " 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 " # accounts[4] (address)
96+ # OperatorRewarder KMS 2
97+ # Initial owner fee
98+ # Note: The owner fee is in basis points (in 1/100th of a percent, so 10000 = 100.00%)
99+ OPERATOR_REWARDER_KMS_OWNER_FEE_1 = 1000
78100
79- # ----------------------------------------------------------------------------
80- # Post-deployment configuration
81- # ----------------------------------------------------------------------------
82- # ProtocolStaking initial reward rate
83- # Note: The reward rate is in tokens (using 18 decimals) per second
84- PROTOCOL_STAKING_REWARD_RATE = 10000000000000000
101+ # OperatorStaking KMS 3
102+ OPERATOR_STAKING_KMS_TOKEN_NAME_2 = " OperatorStakingKms3"
103+ OPERATOR_STAKING_KMS_TOKEN_SYMBOL_2 = " stZAMAkms3"
104+ OPERATOR_STAKING_KMS_OWNER_ADDRESS_2 = " 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" # accounts[4] (address)
85105
86- # OperatorRewarder initial owner fee
106+ # OperatorRewarder KMS 3
107+ # Initial owner fee
87108# Note: The owner fee is in basis points (in 1/100th of a percent, so 10000 = 100.00%)
88- OPERATOR_REWARDER_OWNER_FEE = 1000
109+ OPERATOR_REWARDER_KMS_OWNER_FEE_2 = 500
0 commit comments