-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nikita P
committed
Nov 18, 2024
1 parent
ac44d12
commit c6f89bb
Showing
1 changed file
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
""" | ||
Voting 26/11/2024. | ||
I. Change the limits for ET on ATC & PML | ||
1. ATC: increase from 1,5m per quarter to 7m USDC/USDT/DAI per quarter - set 7'000'000 limit on ATC registry `0x37675423796D39C19351c5C322C3692b23a3d9bd` for 3 mos | ||
2. PML: decrease from 6m per quarter to 4m USDC/USDT/DAI per quarter - set 4'000'000 limit on PML registry `0x580B23a97F827F2b6E51B3DEc270Ef522Ccf520c` for 3 mos | ||
II. [NO HOLESKY] TMC limits update | ||
3. [NO HOLESKY] Update TMC limit to 12,000 stETH on TMC registry `0x1a7cFA9EFB4D5BfFDE87B0FaEb1fC65d653868C0` for 6 mos | ||
4. [NO HOLESKY] Reset the TMC amount spent on TMC registry `0x1a7cFA9EFB4D5BfFDE87B0FaEb1fC65d653868C0` | ||
III. Simply staking reward address change | ||
5. Change staking reward address to `0x1EC3Cbe8fb1D8019092500CcA2111C158a35bC82` for node operator with id = 16 | ||
""" | ||
|
||
import time | ||
|
||
from typing import Dict, Tuple, Optional, List | ||
|
||
from brownie import interface | ||
from brownie.network.transaction import TransactionReceipt | ||
from utils.voting import bake_vote_items, confirm_vote_script, create_vote | ||
from utils.easy_track import add_evmscript_factory, create_permissions | ||
from utils.permission_parameters import Param, SpecialArgumentID, ArgumentValue, Op | ||
from utils.ipfs import upload_vote_ipfs_description, calculate_vote_ipfs_description | ||
from utils.node_operators import encode_set_node_operator_reward_address | ||
|
||
from utils.config import ( | ||
get_deployer_account, | ||
contracts, | ||
get_is_live, | ||
get_priority_fee, | ||
) | ||
|
||
from utils.easy_track import ( | ||
add_evmscript_factory, | ||
create_permissions, | ||
remove_evmscript_factory | ||
) | ||
from utils.allowed_recipients_registry import ( | ||
set_limit_parameters, | ||
update_spent_amount, | ||
unsafe_set_spent_amount | ||
) | ||
|
||
from utils.agent import agent_forward | ||
|
||
description = """ | ||
Voting 26/11/2024. | ||
I. Change the limits for ET on ATC & PML | ||
1. ATC: increase from 1,5m per quarter to 7m USDC/USDT/DAI per quarter - set 7'000'000 limit on ATC registry `0x37675423796D39C19351c5C322C3692b23a3d9bd` for 3 mos | ||
2. PML: decrease from 6m per quarter to 4m USDC/USDT/DAI per quarter - set 4'000'000 limit on PML registry `0x580B23a97F827F2b6E51B3DEc270Ef522Ccf520c` for 3 mos | ||
II. [NO HOLESKY] TMC limits update | ||
3. [NO HOLESKY] Update TMC limit to 12,000 stETH on TMC registry `0x1a7cFA9EFB4D5BfFDE87B0FaEb1fC65d653868C0` for 6 mos | ||
4. [NO HOLESKY] Reset the TMC amount spent on TMC registry `0x1a7cFA9EFB4D5BfFDE87B0FaEb1fC65d653868C0` | ||
III. Simply staking reward address change | ||
5. Change staking reward address to `0x1EC3Cbe8fb1D8019092500CcA2111C158a35bC82` for node operator with id = 16 | ||
""" | ||
|
||
def start_vote(tx_params: Dict[str, str], silent: bool) -> bool | list[int | TransactionReceipt | None]: | ||
"""Prepare and run voting.""" | ||
|
||
atc_registry = interface.AllowedRecipientRegistry("0x37675423796D39C19351c5C322C3692b23a3d9bd") | ||
pml_registry = interface.AllowedRecipientRegistry("0x580B23a97F827F2b6E51B3DEc270Ef522Ccf520c") | ||
|
||
NO_registry = contracts.node_operators_registry | ||
simply_staking_id = 16 | ||
simply_staking_new_reward_address = "0x1EC3Cbe8fb1D8019092500CcA2111C158a35bC82" | ||
|
||
vote_desc_items, call_script_items = zip( | ||
# | ||
# I. Change the limits for ET on ATC & PML | ||
# | ||
( | ||
"1. Set 7'000'000 limit on ATC registry `0x37675423796D39C19351c5C322C3692b23a3d9bd` for 3 mos", | ||
agent_forward( | ||
[ | ||
set_limit_parameters( | ||
registry_address=atc_registry, | ||
limit=7_000_000 * 10 ** 18, | ||
period_duration_months=3 | ||
), | ||
] | ||
), | ||
), | ||
( | ||
"2. Set 4'000'000 limit on PML registry `0x580B23a97F827F2b6E51B3DEc270Ef522Ccf520c` for 3 mos", | ||
agent_forward( | ||
[ | ||
set_limit_parameters( | ||
registry_address=pml_registry, | ||
limit=4_000_000 * 10 ** 18, | ||
period_duration_months=3 | ||
), | ||
] | ||
), | ||
), | ||
# | ||
# III. Simply staking reward address change | ||
# | ||
( | ||
"5. Change staking reward address to `0x1EC3Cbe8fb1D8019092500CcA2111C158a35bC82` for node operator with id = 16", | ||
agent_forward( | ||
[ | ||
encode_set_node_operator_reward_address( | ||
simply_staking_id, | ||
simply_staking_new_reward_address, | ||
NO_registry | ||
), | ||
] | ||
), | ||
), | ||
) | ||
|
||
vote_items = bake_vote_items(list(vote_desc_items), list(call_script_items)) | ||
|
||
if silent: | ||
desc_ipfs = calculate_vote_ipfs_description(description) | ||
else: | ||
desc_ipfs = upload_vote_ipfs_description(description) | ||
|
||
return confirm_vote_script(vote_items, silent, desc_ipfs) and list( | ||
create_vote(vote_items, tx_params, desc_ipfs=desc_ipfs) | ||
) | ||
|
||
|
||
def main(): | ||
tx_params = {"from": get_deployer_account()} | ||
|
||
if get_is_live(): | ||
tx_params["priority_fee"] = get_priority_fee() | ||
|
||
vote_id, _ = start_vote(tx_params=tx_params, silent=False) | ||
|
||
vote_id >= 0 and print(f"Vote created: {vote_id}.") | ||
|
||
time.sleep(5) # hack for waiting thread #2. |