Skip to content

Commit

Permalink
chore: ng-only deposit&stake zaps on Fraxtal and Mantle
Browse files Browse the repository at this point in the history
  • Loading branch information
Macket committed Nov 20, 2024
1 parent 20ca33b commit ab58257
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Smart contract which allows add liquidity and deposit into gauge in one transact
- Avalanche: [0x37c5ab57AF7100Bdc9B668d766e193CCbF6614FD](https://snowtrace.io/address/0x37c5ab57AF7100Bdc9B668d766e193CCbF6614FD#code)
- Base: [0x69522fb5337663d3B4dFB0030b881c1A750Adb4f](https://basescan.org/address/0x69522fb5337663d3B4dFB0030b881c1A750Adb4f#code)
- BSC: [0x4f37A9d177470499A2dD084621020b023fcffc1F](https://bscscan.com/address/0x4f37A9d177470499A2dD084621020b023fcffc1F#code)
- Fraxtal: [0x0fE38dCC905eC14F6099a83Ac5C93BF2601300CF](https://fraxscan.com/address/0x0fE38dCC905eC14F6099a83Ac5C93BF2601300CF#code)
- Fraxtal: [0xF0d4c12A5768D806021F80a262B4d39d26C58b8D](https://fraxscan.com/address/0xF0d4c12A5768D806021F80a262B4d39d26C58b8D#code)
- X Layer: [0x5552b631e2ad801faa129aacf4b701071cc9d1f7](https://www.oklink.com/xlayer/address/0x5552b631e2ad801faa129aacf4b701071cc9d1f7/contract)
- Mantle: [0x5552b631e2ad801faa129aacf4b701071cc9d1f7](https://mantlescan.xyz/address/0x5552b631e2ad801faa129aacf4b701071cc9d1f7#code)
- Mantle: [0xF0d4c12A5768D806021F80a262B4d39d26C58b8D](https://mantlescan.xyz/address/0xF0d4c12A5768D806021F80a262B4d39d26C58b8D#code)
- ZkSync: [0x253548e98C769aD2850da8DB3E4c2b2cE46E3839](https://explorer.zksync.io/address/0x253548e98C769aD2850da8DB3E4c2b2cE46E3839#contract)


Expand Down
15 changes: 15 additions & 0 deletions scripts/deploy-ng-only.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/python3

from brownie import network
from brownie import DepositAndStakeZapNgPoolsOnly, accounts


def main():
txparams = {}
if network.show_active() == 'mainnet':
accounts.load('curve-deployer')
txparams.update({'priority_fee': '2 gwei'})
elif not network.show_active().endswith("-fork"):
accounts.load('curve-deployer')
txparams.update({'from': accounts[0]})
return DepositAndStakeZapNgPoolsOnly.deploy(txparams)

0 comments on commit ab58257

Please sign in to comment.