From e4dc6d32d4ddaed3873f921f97033a418693a0d1 Mon Sep 17 00:00:00 2001 From: macket Date: Mon, 5 Feb 2024 17:54:26 +0400 Subject: [PATCH] chore: remove usdn pool --- README.md | 2 +- contracts/pools/usdn/pooldata.json | 32 ------------------------------ tests/conftest.py | 4 ++-- 3 files changed, 3 insertions(+), 35 deletions(-) delete mode 100644 contracts/pools/usdn/pooldata.json diff --git a/README.md b/README.md index da37ea9..baed4de 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ brownie test --network mainnet-fork To run for particular pools: ```bash -brownie test --pools 3pool,compound,aave,usdn,tusd,tricrypto2,crveth --network mainnet-fork +brownie test --pools 3pool,compound,aave,musd,tusd,tricrypto2,crveth --network mainnet-fork ``` To run only for underlying/wrapped coins: diff --git a/contracts/pools/usdn/pooldata.json b/contracts/pools/usdn/pooldata.json deleted file mode 100644 index d04fa8c..0000000 --- a/contracts/pools/usdn/pooldata.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "base_pool": "3pool", - "pool_types": ["meta"], - "swap_address": "0x0f9cb53Ebe405d49A0bbdBD291A65Ff571bC83e1", - "lp_token_address": "0x4f3E8F405CF5aFC05D68142F3783bDfE13811522", - "zap_address": "0x094d12e5b541784701FD8d65F11fc0598FBC6332", - "gauge_addresses": ["0xF98450B5602fa59CC66e1379DFfB6FDDc724CfC4"], - "lp_contract": "CurveTokenV2", - "lp_constructor": { - "symbol": "usdn3CRV", - "name": "Curve.fi USDN/3Crv" - }, - "swap_constructor": { - "_A": 100, - "_fee": 4000000, - "_admin_fee": 0 - }, - "coins": [ - { - "name": "USDN", - "decimals": 18, - "tethered": false, - "underlying_address": "0x674C6Ad92Fd080e4004b2312b45f796a192D27a0" - }, - { - "name": "3CRV", - "decimals": 18, - "base_pool_token": true, - "underlying_address": "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490" - } - ] -} diff --git a/tests/conftest.py b/tests/conftest.py index 62bb220..4fd9f0a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,11 +5,11 @@ from brownie.project.main import get_loaded_projects POOLS = ['3pool', 'aave', 'aeth', 'bbtc', 'busd', 'compound', 'dusd', 'gusd', 'hbtc', 'husd', 'ib', 'link', 'musd', 'obtc', - 'pax', 'pbtc', 'ren', 'reth', 'rsv', 'saave', 'sbtc', 'seth', 'steth', 'susd', 'tbtc', 'usdk', 'usdn', 'usdp', 'usdt', + 'pax', 'pbtc', 'ren', 'reth', 'rsv', 'saave', 'sbtc', 'seth', 'steth', 'susd', 'tbtc', 'usdk', 'usdp', 'usdt', 'ust', 'y', 'tricrypto2', 'eurt', 'eurtusd', 'crveth', 'cvxeth', 'tusd', 'veth', 'usdv'] # 'eurs' LENDING_POOLS = ['compound', 'usdt', 'y', 'busd', 'pax', 'aave', 'saave', 'ib'] -META_POOLS = ['gusd', 'husd', 'usdk', 'usdn', 'musd', 'rsv', 'tbtc', 'dusd', 'pbtc', 'bbtc', 'obtc', 'ust', 'usdp', 'eurtusd', 'usdv'] +META_POOLS = ['gusd', 'husd', 'usdk', 'musd', 'rsv', 'tbtc', 'dusd', 'pbtc', 'bbtc', 'obtc', 'ust', 'usdp', 'eurtusd', 'usdv'] FACTORY_POOOLS = ['tusd'] # 'frax', 'lusd', 'busdv2', 'alusd', 'mim' WETH_POOLS = ['tricrypto2', 'crveth', 'cvxeth']