Skip to content

Commit

Permalink
redeploy metapool implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
bout3fiddy committed Nov 15, 2023
1 parent 71abaaf commit 06c712e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions scripts/deploy_infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"ethereum:sepolia": {
"math": "0xbc7654d2dd901aaaa3be4cb5bc0f10dea9f96443",
"views": "0x07920e98a66e462c2aa4c8fa6200bc68ca161ea0",
"plain_amm": "0x296d2b5c23833a70d07c8fcbb97d846c1ff90ddd",
"meta_amm": "0xa12A87c73718a34CD8601b5022B2C6C359142585",
"plain_amm": "",
"meta_amm": "",
"factory": "0xfb37b8D939FFa77114005e61CFc2e543d6F49A81",
"gauge": "",
},
"ethereum:mainnet": {
"math": "0x20D1c021525C85D9617Ccc64D8f547d5f730118A",
"views": "0x87DD13Dd25a1DBde0E1EdcF5B8Fa6cfff7eABCaD",
"plain_amm": "0x933f4769DCC27fC7345D9d5975AE48EC4D0F829C",
"meta_amm": "0x64AFA95e0C3D8410240a4262df9Fd82B12b64eDd",
"meta_amm": "0x1f7C86AffE5bCF7a1D74a8c8E2ef9E03BF31c1BD",
"factory": "0x6A8cbed756804B16E05E741eDaBd5cB544AE21bf",
"gauge": "0xf2eff2Cd0d9C82b7b2f17FbBed703fA7931dB1da",
},
Expand Down Expand Up @@ -262,7 +262,7 @@ def main():

deploy_infra(
"ethereum:mainnet",
os.environ["RPC_ETHEREUM"],
"http://localhost:9090/",
"FIDDYDEPLOYER",
fork=False,
)
Expand Down
3 changes: 2 additions & 1 deletion scripts/deploy_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,9 @@ def deploy_pool_and_gauge(network, url, account, pool_type, fork):

def main():

fork = True
fork = False
deploy_pool_and_gauge("ethereum:mainnet", os.environ["RPC_ETHEREUM"], "FIDDYDEPLOYER", "plain", fork)
deploy_pool_and_gauge("ethereum:mainnet", os.environ["RPC_ETHEREUM"], "FIDDYDEPLOYER", "meta", fork)


if __name__ == "__main__":
Expand Down

0 comments on commit 06c712e

Please sign in to comment.