Skip to content

Commit 02e8b0b

Browse files
committed
chore: update example for v1.1.1 middleware
1 parent 1ec84ae commit 02e8b0b

File tree

1 file changed

+33
-19
lines changed

1 file changed

+33
-19
lines changed

devnet.yaml

Lines changed: 33 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -80,30 +80,44 @@ artifacts:
8080
template: |
8181
{
8282
"strategyManager": {
83-
"init_paused_status": 0,
84-
"init_withdrawal_delay_blocks": 50400
83+
"initPausedStatus": 0,
84+
"initialOwner": "{{.deployer_address}}",
85+
"initialStrategyWhitelister": "0x0000000000000000000000000000000000000000"
8586
},
86-
"delegation": {
87-
"init_paused_status": 0,
88-
"init_withdrawal_delay_blocks": 50400
89-
},
90-
"slasher": {
91-
"init_paused_status": 0
87+
"delegationManager": {
88+
"initPausedStatus": 0,
89+
"initialOwner": "{{.deployer_address}}",
90+
"minWithdrawalDelayBlocks": 50400
9291
},
9392
"eigenPodManager": {
94-
"init_paused_status": 0
93+
"initPausedStatus": 0,
94+
"initialOwner": "{{.deployer_address}}"
95+
},
96+
"allocationManager": {
97+
"initPausedStatus": 0,
98+
"initialOwner": "{{.deployer_address}}",
99+
"deallocationDelay": 0,
100+
"allocationConfigurationDelay": 0
101+
},
102+
"strategyFactory": {
103+
"initPausedStatus": 0,
104+
"initialOwner": "{{.deployer_address}}"
105+
},
106+
"avsDirectory": {
107+
"initPausedStatus": 0,
108+
"initialOwner": "{{.deployer_address}}"
95109
},
96110
"rewardsCoordinator": {
97-
"init_paused_status": 0,
98-
"MAX_REWARDS_DURATION": 864000,
99-
"MAX_RETROACTIVE_LENGTH": 86400,
100-
"MAX_FUTURE_LENGTH": 86400,
101-
"GENESIS_REWARDS_TIMESTAMP": 1672531200,
102-
"rewards_updater_address": "{{.deployer_address}}",
103-
"rewards_updater_key": "{{.deployer_private_key}}",
104-
"activation_delay": 0,
105-
"calculation_interval_seconds": 86400,
106-
"global_operator_commission_bips": 1000
111+
"initPausedStatus": 0,
112+
"initialOwner": "{{.deployer_address}}",
113+
"rewardsUpdater": "{{.deployer_address}}",
114+
"activationDelay": 0,
115+
"defaultSplitBips": 1000,
116+
"calculationIntervalSeconds": 86400,
117+
"maxRewardsDuration": 864000,
118+
"maxRetroactiveLength": 86400,
119+
"maxFutureLength": 86400,
120+
"genesisRewardsTimestamp": 1672531200
107121
}
108122
}
109123

0 commit comments

Comments
 (0)