Skip to content

Commit

Permalink
Update brownie scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro committed Jan 10, 2025
1 parent 9a27794 commit 4e1cb3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions brownie/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
OETHB_DRIPPER = '0x02f2C609950E90934ce99e58b4d7326aD0d7f8d6'
OETHB_HARVESTER = '0x247872f58f2fF11f9E8f89C1C48e460CfF0c6b29'

OETHB_MULTICHAIN_STRATEGIST = '0x4FF1b9D9ba8558F5EAfCec096318eA0d8b541971'

# Base contracts
WETH_BASE = '0x4200000000000000000000000000000000000006'
BRIDGED_WOETH_BASE = '0xD8724322f44E5c58D7A815F542036fb17DbbF839'
Expand Down
6 changes: 4 additions & 2 deletions brownie/world_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
woeth = load_contract('ERC20', BRIDGED_WOETH_BASE)
veaero = load_contract('veaero', VEAERO_BASE)

base_strategist = brownie.accounts.at(OETHB_STRATEGIST, force=True)
from_strategist = {'from':OETHB_STRATEGIST}
base_old_strategist = brownie.accounts.at(OETHB_STRATEGIST, force=True)
base_strategist = brownie.accounts.at(OETHB_MULTICHAIN_STRATEGIST, force=True)
from_old_strategist = {'from':OETHB_STRATEGIST}
from_strategist = {'from':OETHB_MULTICHAIN_STRATEGIST}

aero_router = load_contract('aerodrome_swap_router', AERODROME_SWAP_ROUTER_BASE)
aero_router2 = load_contract('aerodrome_v2_router', AERODROME_ROUTER2_BASE)
Expand Down

0 comments on commit 4e1cb3c

Please sign in to comment.