From 4662f45d8d73ddb4eca6266ef6da187b68ffe086 Mon Sep 17 00:00:00 2001 From: macket Date: Wed, 10 Jul 2024 21:12:13 +0300 Subject: [PATCH] test: cvgeth, tricryptoUSDT --- contracts/pools/cvgeth/pooldata.json | 18 ++++++++++++++++ contracts/pools/tricryptoUSDT/pooldata.json | 23 +++++++++++++++++++++ tests/conftest.py | 2 +- 3 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 contracts/pools/cvgeth/pooldata.json create mode 100644 contracts/pools/tricryptoUSDT/pooldata.json diff --git a/contracts/pools/cvgeth/pooldata.json b/contracts/pools/cvgeth/pooldata.json new file mode 100644 index 0000000..3d6c869 --- /dev/null +++ b/contracts/pools/cvgeth/pooldata.json @@ -0,0 +1,18 @@ +{ + "lp_contract": "CurveTokenV3", + "swap_address": "0x004c167d27ada24305b76d80762997fa6eb8d9b2", + "lp_token_address": "0x004c167d27ada24305b76d80762997fa6eb8d9b2", + "gauge_addresses": ["0x16a3a047fc1d388d5846a73acdb475b11228c299"], + "coins": [ + { + "name": "WETH", + "decimals": 18, + "underlying_address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + }, + { + "name": "CVG", + "decimals": 18, + "underlying_address": "0x97effb790f2fbb701d88f89db4521348a2b77be8" + } + ] +} diff --git a/contracts/pools/tricryptoUSDT/pooldata.json b/contracts/pools/tricryptoUSDT/pooldata.json new file mode 100644 index 0000000..860c751 --- /dev/null +++ b/contracts/pools/tricryptoUSDT/pooldata.json @@ -0,0 +1,23 @@ +{ + "lp_contract": "CurveTokenV3", + "swap_address": "0xf5f5b97624542d72a9e06f04804bf81baa15e2b4", + "lp_token_address": "0xf5f5b97624542d72a9e06f04804bf81baa15e2b4", + "gauge_addresses": ["0xf29fff074f5cf755b55fbb3eb10a29203ac91ea2"], + "coins": [ + { + "name": "USDT", + "decimals": 6, + "underlying_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "name": "WBTC", + "decimals": 8, + "underlying_address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + }, + { + "name": "WETH", + "decimals": 18, + "underlying_address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + } + ] +} diff --git a/tests/conftest.py b/tests/conftest.py index e58435c..70b86a0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -6,7 +6,7 @@ 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', 'usdp', 'usdt', - 'y', 'tricrypto2', 'eurt', 'eurtusd', 'cvxeth', 'tusd', 'veth', 'usdv', 'paypool', 'mkusd'] # 'eurs' + 'y', 'tricrypto2', 'eurt', 'eurtusd', 'cvxeth', 'tusd', 'veth', 'usdv', 'paypool', 'mkusd', 'cvgeth', 'tricryptoUSDT'] # 'eurs' LENDING_POOLS = ['compound', 'usdt', 'y', 'busd', 'pax', 'aave', 'saave', 'ib'] META_POOLS = ['gusd', 'husd', 'usdk', 'musd', 'rsv', 'tbtc', 'dusd', 'pbtc', 'bbtc', 'obtc', 'usdp', 'eurtusd', 'usdv', 'mkusd']