Script to pack up adding new node operators in one vote
NODE_OPERATORS_JSON=node_operators.json brownie run add_node_operators --network {name}{
"node_operators": [
{
"name": "Test",
"address": "0x000..."
},
...
]
}
Script to pack up setting node operators staking limits in one vote
NODE_OPERATORS_JSON=node_operators.json brownie run set_node_operators_limit --network {name}{
"node_operators": [
{
"id": 1,
"limit": 20
},
...
]
}