@curvefi/api 2.65.28 → 2.65.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eslint.config.mjs +88 -0
- package/lib/boosting.js +13 -13
- package/lib/constants/coins/avalanche.js +4 -4
- package/lib/constants/coins/base.js +1 -1
- package/lib/constants/coins/celo.js +1 -1
- package/lib/constants/coins/ethereum.js +88 -88
- package/lib/constants/coins/fantom.js +5 -5
- package/lib/constants/coins/kava.js +1 -1
- package/lib/constants/coins/polygon.js +18 -18
- package/lib/constants/coins/zksync.js +1 -1
- package/lib/constants/factory/crypto.js +32 -32
- package/lib/constants/factory/stable.js +57 -57
- package/lib/constants/network_constants.js +37 -37
- package/lib/constants/pools/arbitrum.js +8 -8
- package/lib/constants/pools/aurora.js +2 -2
- package/lib/constants/pools/avalanche.js +13 -13
- package/lib/constants/pools/ethereum.js +89 -89
- package/lib/constants/pools/fantom.js +13 -13
- package/lib/constants/pools/moonbeam.js +3 -3
- package/lib/constants/pools/optimism.js +3 -3
- package/lib/constants/pools/polygon.js +21 -21
- package/lib/constants/pools/xdai.js +13 -13
- package/lib/curve.d.ts +1 -1
- package/lib/curve.js +38 -38
- package/lib/dao.js +12 -12
- package/lib/external-api.d.ts +0 -9
- package/lib/external-api.js +75 -104
- package/lib/factory/deploy.js +12 -12
- package/lib/factory/factory-api.js +13 -13
- package/lib/factory/factory-crypto.js +10 -10
- package/lib/factory/factory-tricrypto.js +11 -11
- package/lib/factory/factory-twocrypto.js +9 -9
- package/lib/factory/factory.js +13 -13
- package/lib/index.d.ts +59 -59
- package/lib/index.js +3 -3
- package/lib/pools/PoolTemplate.js +59 -59
- package/lib/pools/mixins/depositMixins.js +14 -14
- package/lib/pools/mixins/depositWrappedMixins.js +8 -8
- package/lib/pools/mixins/swapMixins.js +12 -12
- package/lib/pools/mixins/swapWrappedMixins.js +8 -8
- package/lib/pools/mixins/withdrawImbalanceMixins.js +12 -12
- package/lib/pools/mixins/withdrawImbalanceWrappedMixins.js +6 -6
- package/lib/pools/mixins/withdrawMixins.js +14 -14
- package/lib/pools/mixins/withdrawOneCoinMixins.js +14 -14
- package/lib/pools/mixins/withdrawOneCoinWrappedMixins.js +6 -6
- package/lib/pools/mixins/withdrawWrappedMixins.js +6 -6
- package/lib/pools/subClasses/gaugePool.js +4 -4
- package/lib/pools/subClasses/statsPool.js +3 -3
- package/lib/pools/utils.js +11 -11
- package/lib/route-graph.worker.js +3 -3
- package/lib/router.js +4 -5
- package/lib/utils.js +22 -24
- package/package.json +21 -18
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import globals from "globals";
|
|
2
|
+
import parser from "vue-eslint-parser";
|
|
3
|
+
import typescriptEslint from "@typescript-eslint/eslint-plugin";
|
|
4
|
+
import tsParser from "@typescript-eslint/parser";
|
|
5
|
+
import path from "node:path";
|
|
6
|
+
import {fileURLToPath} from "node:url";
|
|
7
|
+
import js from "@eslint/js";
|
|
8
|
+
import {FlatCompat} from "@eslint/eslintrc";
|
|
9
|
+
|
|
10
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
11
|
+
const __dirname = path.dirname(__filename);
|
|
12
|
+
const compat = new FlatCompat({
|
|
13
|
+
baseDirectory: __dirname,
|
|
14
|
+
recommendedConfig: js.configs.recommended,
|
|
15
|
+
allConfig: js.configs.all
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
const config = [...compat.extends("eslint:recommended"), {
|
|
19
|
+
languageOptions: {
|
|
20
|
+
globals: {
|
|
21
|
+
...globals.browser,
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
parser: parser,
|
|
25
|
+
ecmaVersion: 5,
|
|
26
|
+
sourceType: "module",
|
|
27
|
+
|
|
28
|
+
parserOptions: {
|
|
29
|
+
parser: "@babel/eslint-parser",
|
|
30
|
+
allowImportExportEverywhere: false,
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
rules: {
|
|
35
|
+
"func-names": 0,
|
|
36
|
+
"no-nested-ternary": 0,
|
|
37
|
+
"max-len": 0,
|
|
38
|
+
"arrow-parens": ["error", "always"],
|
|
39
|
+
"no-underscore-dangle": 0,
|
|
40
|
+
|
|
41
|
+
"comma-dangle": ["error", {
|
|
42
|
+
arrays: "always-multiline",
|
|
43
|
+
objects: "always-multiline",
|
|
44
|
+
imports: "always-multiline",
|
|
45
|
+
exports: "always-multiline",
|
|
46
|
+
functions: "never",
|
|
47
|
+
}],
|
|
48
|
+
|
|
49
|
+
"no-use-before-define": ["error", "nofunc"],
|
|
50
|
+
|
|
51
|
+
"no-empty": ["error", {
|
|
52
|
+
allowEmptyCatch: true,
|
|
53
|
+
}],
|
|
54
|
+
|
|
55
|
+
"no-mixed-operators": ["error", {
|
|
56
|
+
allowSamePrecedence: true,
|
|
57
|
+
}],
|
|
58
|
+
|
|
59
|
+
indent: ["error", 4, {
|
|
60
|
+
flatTernaryExpressions: true,
|
|
61
|
+
SwitchCase: 1,
|
|
62
|
+
}],
|
|
63
|
+
},
|
|
64
|
+
}, ...compat.extends(
|
|
65
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
|
66
|
+
"plugin:@typescript-eslint/recommended",
|
|
67
|
+
).map(config => ({
|
|
68
|
+
...config,
|
|
69
|
+
files: ["**/*.ts"],
|
|
70
|
+
})), {
|
|
71
|
+
files: ["**/*.ts"],
|
|
72
|
+
|
|
73
|
+
plugins: {
|
|
74
|
+
"@typescript-eslint": typescriptEslint,
|
|
75
|
+
},
|
|
76
|
+
|
|
77
|
+
languageOptions: {
|
|
78
|
+
parser: tsParser,
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
rules: {
|
|
82
|
+
"@typescript-eslint/ban-ts-comment": "off",
|
|
83
|
+
"@typescript-eslint/no-unused-vars": "warn",
|
|
84
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
85
|
+
},
|
|
86
|
+
}];
|
|
87
|
+
|
|
88
|
+
export default config;
|
package/lib/boosting.js
CHANGED
|
@@ -9,8 +9,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
};
|
|
10
10
|
import { Contract } from "ethers";
|
|
11
11
|
import { curve } from "./curve.js";
|
|
12
|
-
import feeDistributorViewABI from "./constants/abis/fee_distributor_view.json"
|
|
13
|
-
import feeDistributorCrvUSDViewABI from "./constants/abis/fee_distributor_crvusd_view.json"
|
|
12
|
+
import feeDistributorViewABI from "./constants/abis/fee_distributor_view.json" with { type: 'json' };
|
|
13
|
+
import feeDistributorCrvUSDViewABI from "./constants/abis/fee_distributor_crvusd_view.json" with { type: 'json' };
|
|
14
14
|
import { _getBalances, _prepareAddresses, DIGas, ensureAllowance, ensureAllowanceEstimateGas, hasAllowance, mulBy1_3, smartNumber, } from "./utils.js";
|
|
15
15
|
import { _ensureAllowance, toBN, toStringFromBN, parseUnits } from './utils.js';
|
|
16
16
|
import { _generateBoostingProof } from './external-api.js';
|
|
@@ -144,17 +144,17 @@ export const withdrawLockedCrv = () => __awaiter(void 0, void 0, void 0, functio
|
|
|
144
144
|
const gasLimit = mulBy1_3(DIGas(yield contract.withdraw.estimateGas(curve.constantOptions)));
|
|
145
145
|
return (yield contract.withdraw(Object.assign(Object.assign({}, curve.options), { gasLimit }))).hash;
|
|
146
146
|
});
|
|
147
|
-
export const claimableFees = (
|
|
147
|
+
export const claimableFees = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (address = "") {
|
|
148
148
|
address = address || curve.signerAddress;
|
|
149
149
|
const contract = new Contract(curve.constants.ALIASES.fee_distributor, feeDistributorViewABI, curve.provider);
|
|
150
150
|
return curve.formatUnits(yield contract.claim(address, curve.constantOptions));
|
|
151
151
|
});
|
|
152
|
-
export const claimFeesEstimateGas = (
|
|
152
|
+
export const claimFeesEstimateGas = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (address = "") {
|
|
153
153
|
address = address || curve.signerAddress;
|
|
154
154
|
const contract = curve.contracts[curve.constants.ALIASES.fee_distributor].contract;
|
|
155
155
|
return Number(DIGas(yield contract.claim.estimateGas(address, curve.constantOptions)));
|
|
156
156
|
});
|
|
157
|
-
export const claimFees = (
|
|
157
|
+
export const claimFees = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (address = "") {
|
|
158
158
|
if (curve.chainId !== 1) {
|
|
159
159
|
throw Error('This method is only available for the network with chainId 1');
|
|
160
160
|
}
|
|
@@ -164,7 +164,7 @@ export const claimFees = (address = "") => __awaiter(void 0, void 0, void 0, fun
|
|
|
164
164
|
const gasLimit = mulBy1_3(DIGas(yield contract.claim.estimateGas(address, curve.constantOptions)));
|
|
165
165
|
return (yield contract.claim(address, Object.assign(Object.assign({}, curve.options), { gasLimit }))).hash;
|
|
166
166
|
});
|
|
167
|
-
export const claimableFeesCrvUSD = (
|
|
167
|
+
export const claimableFeesCrvUSD = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (address = "") {
|
|
168
168
|
if (curve.chainId !== 1) {
|
|
169
169
|
throw Error('This method is only available for the network with chainId 1');
|
|
170
170
|
}
|
|
@@ -172,7 +172,7 @@ export const claimableFeesCrvUSD = (address = "") => __awaiter(void 0, void 0, v
|
|
|
172
172
|
const contract = new Contract(curve.constants.ALIASES.fee_distributor_crvusd, feeDistributorCrvUSDViewABI, curve.provider);
|
|
173
173
|
return curve.formatUnits(yield contract.claim(address, curve.constantOptions));
|
|
174
174
|
});
|
|
175
|
-
export const claimFeesCrvUSDEstimateGas = (
|
|
175
|
+
export const claimFeesCrvUSDEstimateGas = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (address = "") {
|
|
176
176
|
if (curve.chainId !== 1) {
|
|
177
177
|
throw Error('This method is only available for the network with chainId 1');
|
|
178
178
|
}
|
|
@@ -180,7 +180,7 @@ export const claimFeesCrvUSDEstimateGas = (address = "") => __awaiter(void 0, vo
|
|
|
180
180
|
const contract = curve.contracts[curve.constants.ALIASES.fee_distributor_crvusd].contract;
|
|
181
181
|
return Number(DIGas(yield contract.claim.estimateGas(address, curve.constantOptions)));
|
|
182
182
|
});
|
|
183
|
-
export const claimFeesCrvUSD = (
|
|
183
|
+
export const claimFeesCrvUSD = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (address = "") {
|
|
184
184
|
address = address || curve.signerAddress;
|
|
185
185
|
const contract = curve.contracts[curve.constants.ALIASES.fee_distributor_crvusd].contract;
|
|
186
186
|
yield curve.updateFeeData();
|
|
@@ -214,10 +214,10 @@ const _topUpAnycall = (amount, estimateGas) => __awaiter(void 0, void 0, void 0,
|
|
|
214
214
|
const gasLimit = mulBy1_3(DIGas(gas));
|
|
215
215
|
return (yield anycallContract.deposit(curve.constants.ALIASES.voting_escrow_oracle, Object.assign(Object.assign({}, curve.options), { gasLimit, value }))).hash;
|
|
216
216
|
});
|
|
217
|
-
export const topUpAnycallEstimateGas = (
|
|
217
|
+
export const topUpAnycallEstimateGas = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (amount = DEFAULT_AMOUNT) {
|
|
218
218
|
return yield _topUpAnycall(amount, true);
|
|
219
219
|
});
|
|
220
|
-
export const topUpAnycall = (
|
|
220
|
+
export const topUpAnycall = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (amount = DEFAULT_AMOUNT) {
|
|
221
221
|
return yield _topUpAnycall(amount, false);
|
|
222
222
|
});
|
|
223
223
|
export const lastBlockSent = (chainId) => __awaiter(void 0, void 0, void 0, function* () {
|
|
@@ -248,7 +248,7 @@ export const sendBlockhashEstimateGas = (block, chainId) => __awaiter(void 0, vo
|
|
|
248
248
|
export const sendBlockhash = (block, chainId) => __awaiter(void 0, void 0, void 0, function* () {
|
|
249
249
|
return yield _sendBlockhash(block, chainId, false);
|
|
250
250
|
});
|
|
251
|
-
const _submitProof = (
|
|
251
|
+
const _submitProof = (block_1, ...args_1) => __awaiter(void 0, [block_1, ...args_1], void 0, function* (block, address = curve.signerAddress, estimateGas) {
|
|
252
252
|
if (curve.chainId === 1)
|
|
253
253
|
throw Error("submitProof method is on ethereum network only");
|
|
254
254
|
if (address === "")
|
|
@@ -262,9 +262,9 @@ const _submitProof = (block, address = curve.signerAddress, estimateGas) => __aw
|
|
|
262
262
|
const gasLimit = mulBy1_3(DIGas(gas));
|
|
263
263
|
return (yield veOracleContract.submit_state(address, "0x" + proof.block_header_rlp, "0x" + proof.proof_rlp, Object.assign(Object.assign({}, curve.options), { gasLimit }))).hash;
|
|
264
264
|
});
|
|
265
|
-
export const submitProofEstimateGas = (
|
|
265
|
+
export const submitProofEstimateGas = (block_1, ...args_1) => __awaiter(void 0, [block_1, ...args_1], void 0, function* (block, address = curve.signerAddress) {
|
|
266
266
|
return yield _submitProof(block, address, true);
|
|
267
267
|
});
|
|
268
|
-
export const submitProof = (
|
|
268
|
+
export const submitProof = (block_1, ...args_1) => __awaiter(void 0, [block_1, ...args_1], void 0, function* (block, address = curve.signerAddress) {
|
|
269
269
|
return yield _submitProof(block, address, false);
|
|
270
270
|
});
|
|
@@ -26,9 +26,9 @@ export const COINS_AVALANCHE = lowerCaseValues({
|
|
|
26
26
|
'wavax': '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7',
|
|
27
27
|
});
|
|
28
28
|
export const aTokensAvalanche = [
|
|
29
|
-
'0x47AFa96Cdc9fAb46904A55a6ad4bf6660B53c38a',
|
|
30
|
-
'0x46A51127C3ce23fb7AB1DE06226147F446e4a857',
|
|
31
|
-
'0x532E6537FEA298397212F09A61e03311686f548e',
|
|
32
|
-
'0x686bEF2417b6Dc32C50a3cBfbCC3bb60E1e9a15D',
|
|
29
|
+
'0x47AFa96Cdc9fAb46904A55a6ad4bf6660B53c38a', // avDAI
|
|
30
|
+
'0x46A51127C3ce23fb7AB1DE06226147F446e4a857', // avUSDC
|
|
31
|
+
'0x532E6537FEA298397212F09A61e03311686f548e', // avUSDT
|
|
32
|
+
'0x686bEF2417b6Dc32C50a3cBfbCC3bb60E1e9a15D', // avWBTC
|
|
33
33
|
'0x53f7c5869a859F0AeC3D334ee8B4Cf01E3492f21', // avWETH
|
|
34
34
|
].map((a) => a.toLowerCase());
|
|
@@ -2,6 +2,6 @@ import { lowerCaseValues } from "../utils.js";
|
|
|
2
2
|
export const COINS_BASE = lowerCaseValues({
|
|
3
3
|
crv: '0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415',
|
|
4
4
|
// --- ETH ---
|
|
5
|
-
eth: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
|
|
5
|
+
eth: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE", // ETH
|
|
6
6
|
weth: '0x4200000000000000000000000000000000000006',
|
|
7
7
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { lowerCaseValues } from "../utils.js";
|
|
2
2
|
export const COINS_CELO = lowerCaseValues({
|
|
3
|
-
'crv': '0x0a7432cF27F1aE3825c313F3C81e7D3efD7639aB',
|
|
3
|
+
'crv': '0x0a7432cF27F1aE3825c313F3C81e7D3efD7639aB', // <--- TODO CHANGE
|
|
4
4
|
// --- USD ---
|
|
5
5
|
'dai': '0x90Ca507a5D4458a4C6C6249d186b6dCb02a5BCCd',
|
|
6
6
|
'usdc': '0xef4229c8c3250C675F21BCefa42f58EfbfF6002a',
|
|
@@ -1,115 +1,115 @@
|
|
|
1
1
|
import { lowerCaseValues } from "../utils.js";
|
|
2
2
|
export const COINS_ETHEREUM = lowerCaseValues({
|
|
3
|
-
crv: "0xD533a949740bb3306d119CC777fa900bA034cd52",
|
|
3
|
+
crv: "0xD533a949740bb3306d119CC777fa900bA034cd52", // CRV
|
|
4
4
|
// --- USD ---
|
|
5
|
-
'3crv': "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490",
|
|
5
|
+
'3crv': "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490", // 3CRV
|
|
6
6
|
crvusd: "0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E",
|
|
7
7
|
scrvusd: "0x0655977FEb2f289A4aB78af67BAB0d17aAb84367",
|
|
8
8
|
usde: "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
|
|
9
9
|
susde: "0x9D39A5DE30e57443BfF2A8307A4256c8797A3497",
|
|
10
|
-
ycdai: "0x99d1Fa417f94dcD62BfE781a1213c092a47041Bc",
|
|
11
|
-
ycusdc: "0x9777d7E2b60bB01759D0E2f8be2095df444cb07E",
|
|
12
|
-
ycusdt: "0x1bE5d71F2dA660BFdee8012dDc58D024448A0A59",
|
|
13
|
-
usdp: "0x8E870D67F660D95d5be530380D0eC0bd388289E1",
|
|
14
|
-
adai: "0x028171bCA77440897B824Ca71D1c56caC55b68A3",
|
|
15
|
-
ausdc: "0xBcca60bB61934080951369a648Fb03DF4F96263C",
|
|
16
|
-
ausdt: "0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811",
|
|
17
|
-
asusd: "0x6c5024cd4f8a59110119c56f8933403a539555eb",
|
|
18
|
-
cdai: "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643",
|
|
19
|
-
cusdc: "0x39AA39c021dfbaE8faC545936693aC917d5E7563",
|
|
20
|
-
cydai: "0x8e595470ed749b85c6f7669de83eae304c2ec68f",
|
|
21
|
-
cyusdc: "0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c",
|
|
22
|
-
cyusdt: "0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a",
|
|
23
|
-
bydai: "0xC2cB1040220768554cf699b0d863A3cd4324ce32",
|
|
24
|
-
byusdc: "0x26EA744E5B887E5205727f55dFBE8685e3b21951",
|
|
25
|
-
byusdt: "0xE6354ed5bC4b393a5Aad09f21c46E101e692d447",
|
|
26
|
-
ybusd: "0x04bC0Ab673d88aE9dbC9DA2380cB6B79C4BCa9aE",
|
|
27
|
-
ydai: "0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01",
|
|
28
|
-
yusdc: "0xd6aD7a6750A7593E092a9B218d66C0A814a3436e",
|
|
29
|
-
yusdt: "0x83f798e925BcD4017Eb265844FDDAbb448f1707D",
|
|
30
|
-
ytusd: "0x73a052500105205d34Daf004eAb301916DA8190f",
|
|
31
|
-
gusd: "0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd",
|
|
32
|
-
husd: "0xdF574c24545E5FfEcb9a659c229253D4111d87e1",
|
|
33
|
-
usdk: "0x1c48f86ae57291F7686349F12601910BD8D470bb",
|
|
34
|
-
musd: "0xe2f2a5C287993345a840Db3B0845fbC70f5935a5",
|
|
35
|
-
rsv: "0x196f4727526eA7FB1e17b2071B3d8eAA38486988",
|
|
36
|
-
dusd: "0x5BC25f649fc4e26069dDF4cF4010F9f706c23831",
|
|
37
|
-
ust: "0xa47c8bf37f92abed4a126bda807a7b7498661acd",
|
|
38
|
-
usdn: "0x674C6Ad92Fd080e4004b2312b45f796a192D27a0",
|
|
39
|
-
dai: "0x6B175474E89094C44Da98b954EedeAC495271d0F",
|
|
40
|
-
usdc: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
|
41
|
-
usdt: "0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
42
|
-
susd: "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51",
|
|
43
|
-
tusd: "0x0000000000085d4780B73119b644AE5ecd22b376",
|
|
44
|
-
frax: "0x853d955acef822db058eb8505911ed77f175b99e",
|
|
45
|
-
lusd: "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0",
|
|
46
|
-
busd: "0x4Fabb145d64652a948d72533023f6E7A623C7C53",
|
|
47
|
-
alusd: "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9",
|
|
48
|
-
mim: "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3",
|
|
49
|
-
rai: "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919",
|
|
50
|
-
wormholeust: "0xa693B19d2931d498c5B318dF961919BB4aee87a5",
|
|
10
|
+
ycdai: "0x99d1Fa417f94dcD62BfE781a1213c092a47041Bc", // pax/yDAI
|
|
11
|
+
ycusdc: "0x9777d7E2b60bB01759D0E2f8be2095df444cb07E", // pax/yUSDC
|
|
12
|
+
ycusdt: "0x1bE5d71F2dA660BFdee8012dDc58D024448A0A59", // pax/yUSDT
|
|
13
|
+
usdp: "0x8E870D67F660D95d5be530380D0eC0bd388289E1", // PAX
|
|
14
|
+
adai: "0x028171bCA77440897B824Ca71D1c56caC55b68A3", // aDAI
|
|
15
|
+
ausdc: "0xBcca60bB61934080951369a648Fb03DF4F96263C", // aUSDC
|
|
16
|
+
ausdt: "0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811", // aUSDT
|
|
17
|
+
asusd: "0x6c5024cd4f8a59110119c56f8933403a539555eb", // aSUSD
|
|
18
|
+
cdai: "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643", // cDAI
|
|
19
|
+
cusdc: "0x39AA39c021dfbaE8faC545936693aC917d5E7563", // cUSDC
|
|
20
|
+
cydai: "0x8e595470ed749b85c6f7669de83eae304c2ec68f", // cyDAI
|
|
21
|
+
cyusdc: "0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c", // cyUSDC
|
|
22
|
+
cyusdt: "0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a", // cyUSDT
|
|
23
|
+
bydai: "0xC2cB1040220768554cf699b0d863A3cd4324ce32", // busd/yDAI
|
|
24
|
+
byusdc: "0x26EA744E5B887E5205727f55dFBE8685e3b21951", // busd/yUSDC
|
|
25
|
+
byusdt: "0xE6354ed5bC4b393a5Aad09f21c46E101e692d447", // busd/yUSDT
|
|
26
|
+
ybusd: "0x04bC0Ab673d88aE9dbC9DA2380cB6B79C4BCa9aE", // yBUSD
|
|
27
|
+
ydai: "0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01", // y/yDAI
|
|
28
|
+
yusdc: "0xd6aD7a6750A7593E092a9B218d66C0A814a3436e", // y/yUSDC
|
|
29
|
+
yusdt: "0x83f798e925BcD4017Eb265844FDDAbb448f1707D", // y/yUSDT
|
|
30
|
+
ytusd: "0x73a052500105205d34Daf004eAb301916DA8190f", // yTUSD
|
|
31
|
+
gusd: "0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd", // GUSD
|
|
32
|
+
husd: "0xdF574c24545E5FfEcb9a659c229253D4111d87e1", // HUSD
|
|
33
|
+
usdk: "0x1c48f86ae57291F7686349F12601910BD8D470bb", // USDK
|
|
34
|
+
musd: "0xe2f2a5C287993345a840Db3B0845fbC70f5935a5", // MUSD
|
|
35
|
+
rsv: "0x196f4727526eA7FB1e17b2071B3d8eAA38486988", // RSV
|
|
36
|
+
dusd: "0x5BC25f649fc4e26069dDF4cF4010F9f706c23831", // DUSD
|
|
37
|
+
ust: "0xa47c8bf37f92abed4a126bda807a7b7498661acd", // UST
|
|
38
|
+
usdn: "0x674C6Ad92Fd080e4004b2312b45f796a192D27a0", // USDN
|
|
39
|
+
dai: "0x6B175474E89094C44Da98b954EedeAC495271d0F", // DAI
|
|
40
|
+
usdc: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", // USDC
|
|
41
|
+
usdt: "0xdAC17F958D2ee523a2206206994597C13D831ec7", // USDT
|
|
42
|
+
susd: "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", // sUSD
|
|
43
|
+
tusd: "0x0000000000085d4780B73119b644AE5ecd22b376", // TUSD
|
|
44
|
+
frax: "0x853d955acef822db058eb8505911ed77f175b99e", // FRAX
|
|
45
|
+
lusd: "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", // LUSD
|
|
46
|
+
busd: "0x4Fabb145d64652a948d72533023f6E7A623C7C53", // BUSD
|
|
47
|
+
alusd: "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9", // alUSD
|
|
48
|
+
mim: "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3", // MIM
|
|
49
|
+
rai: "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", // RAI
|
|
50
|
+
wormholeust: "0xa693B19d2931d498c5B318dF961919BB4aee87a5", // UST
|
|
51
51
|
// --- ETH ---
|
|
52
|
-
eth: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
|
|
53
|
-
weth: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
|
|
54
|
-
ankreth: "0xE95A203B1a91a908F9B9CE46459d101078c2c3cb",
|
|
55
|
-
seth: "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb",
|
|
56
|
-
reth: "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593",
|
|
57
|
-
steth: "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84",
|
|
58
|
-
wsteth: "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0",
|
|
59
|
-
frxeth: "0x5E8422345238F34275888049021821E8E08CAa1f",
|
|
60
|
-
sfrxeth: "0xac3E018457B222d93114458476f3E3416Abbe38F",
|
|
61
|
-
wbeth: "0xa2E3356610840701BDf5611a53974510Ae27E2e1",
|
|
52
|
+
eth: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE", // ETH
|
|
53
|
+
weth: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", // WETH
|
|
54
|
+
ankreth: "0xE95A203B1a91a908F9B9CE46459d101078c2c3cb", // ankrETH
|
|
55
|
+
seth: "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb", // sETH
|
|
56
|
+
reth: "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", // rETH
|
|
57
|
+
steth: "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", // stETH
|
|
58
|
+
wsteth: "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", // wstETH
|
|
59
|
+
frxeth: "0x5E8422345238F34275888049021821E8E08CAa1f", // frxETH
|
|
60
|
+
sfrxeth: "0xac3E018457B222d93114458476f3E3416Abbe38F", // sfrxETH
|
|
61
|
+
wbeth: "0xa2E3356610840701BDf5611a53974510Ae27E2e1", // wBETH
|
|
62
62
|
// --- BTC ---
|
|
63
|
-
sbtccrv: "0x075b1bb99792c9E1041bA13afEf80C91a1e70fB3",
|
|
64
|
-
hbtc: "0x0316EB71485b0Ab14103307bf65a021042c6d380",
|
|
65
|
-
renbtc: "0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D",
|
|
66
|
-
wbtc: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
|
|
67
|
-
tbtc: "0x18084fba666a33d37592fa2633fd49a74dd93a88",
|
|
68
|
-
pbtc: "0x5228a22e72ccC52d415EcFd199F99D0665E7733b",
|
|
69
|
-
bbtc: "0x9be89d2a4cd102d8fecc6bf9da793be995c22541",
|
|
70
|
-
obtc: "0x8064d9Ae6cDf087b1bcd5BDf3531bD5d8C537a68",
|
|
71
|
-
sbtc: "0xfE18be6b3Bd88A2D2A7f928d00292E7a9963CfC6",
|
|
63
|
+
sbtccrv: "0x075b1bb99792c9E1041bA13afEf80C91a1e70fB3", // sbtcCRV
|
|
64
|
+
hbtc: "0x0316EB71485b0Ab14103307bf65a021042c6d380", // HBTC
|
|
65
|
+
renbtc: "0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D", // renBTC
|
|
66
|
+
wbtc: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", // WBTC
|
|
67
|
+
tbtc: "0x18084fba666a33d37592fa2633fd49a74dd93a88", // tBTC v2
|
|
68
|
+
pbtc: "0x5228a22e72ccC52d415EcFd199F99D0665E7733b", // pBTC
|
|
69
|
+
bbtc: "0x9be89d2a4cd102d8fecc6bf9da793be995c22541", // bBTC
|
|
70
|
+
obtc: "0x8064d9Ae6cDf087b1bcd5BDf3531bD5d8C537a68", // oBTC
|
|
71
|
+
sbtc: "0xfE18be6b3Bd88A2D2A7f928d00292E7a9963CfC6", // sBTC
|
|
72
72
|
// --- EUR ---
|
|
73
|
-
eurs: "0xdB25f211AB05b1c97D595516F45794528a807ad8",
|
|
74
|
-
seur: "0xD71eCFF9342A5Ced620049e616c5035F1dB98620",
|
|
75
|
-
eurt: "0xC581b735A1688071A1746c968e0798D642EDE491",
|
|
76
|
-
euroc: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c",
|
|
73
|
+
eurs: "0xdB25f211AB05b1c97D595516F45794528a807ad8", // EURS
|
|
74
|
+
seur: "0xD71eCFF9342A5Ced620049e616c5035F1dB98620", // sEUR
|
|
75
|
+
eurt: "0xC581b735A1688071A1746c968e0798D642EDE491", // EURT
|
|
76
|
+
euroc: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c", // EUROC
|
|
77
77
|
// --- LINK ---
|
|
78
|
-
link: "0x514910771AF9Ca656af840dff83E8264EcF986CA",
|
|
79
|
-
slink: "0xbBC455cb4F1B9e4bFC4B73970d360c8f032EfEE6",
|
|
78
|
+
link: "0x514910771AF9Ca656af840dff83E8264EcF986CA", // LINK
|
|
79
|
+
slink: "0xbBC455cb4F1B9e4bFC4B73970d360c8f032EfEE6", // sLINK
|
|
80
80
|
// --- OTHER ---
|
|
81
|
-
cvx: "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
|
|
81
|
+
cvx: "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b", // CVX
|
|
82
82
|
cvxcrv: "0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7",
|
|
83
|
-
snx: "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
|
|
84
|
-
spell: "0x090185f2135308bad17527004364ebcc2d37e5f6",
|
|
85
|
-
t: "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5",
|
|
83
|
+
snx: "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", // SNX
|
|
84
|
+
spell: "0x090185f2135308bad17527004364ebcc2d37e5f6", // SPELL
|
|
85
|
+
t: "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5", // T
|
|
86
86
|
xaut: "0x68749665ff8d2d112fa859aa293f07a622782f38", // XAUt
|
|
87
87
|
});
|
|
88
88
|
export const cTokensEthereum = [
|
|
89
|
-
'0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643',
|
|
90
|
-
'0x39AA39c021dfbaE8faC545936693aC917d5E7563',
|
|
91
|
-
"0x8e595470ed749b85c6f7669de83eae304c2ec68f",
|
|
92
|
-
"0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a",
|
|
89
|
+
'0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643', // cDAI
|
|
90
|
+
'0x39AA39c021dfbaE8faC545936693aC917d5E7563', // cUSDC
|
|
91
|
+
"0x8e595470ed749b85c6f7669de83eae304c2ec68f", // cyDAI
|
|
92
|
+
"0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a", // cyUSDT
|
|
93
93
|
"0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c", // cyUSDC
|
|
94
94
|
].map((a) => a.toLowerCase());
|
|
95
95
|
export const yTokensEthereum = [
|
|
96
|
-
"0xC2cB1040220768554cf699b0d863A3cd4324ce32",
|
|
97
|
-
"0x26EA744E5B887E5205727f55dFBE8685e3b21951",
|
|
98
|
-
"0xE6354ed5bC4b393a5Aad09f21c46E101e692d447",
|
|
99
|
-
"0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01",
|
|
100
|
-
"0xd6aD7a6750A7593E092a9B218d66C0A814a3436e",
|
|
101
|
-
"0x83f798e925BcD4017Eb265844FDDAbb448f1707D",
|
|
102
|
-
"0x04bC0Ab673d88aE9dbC9DA2380cB6B79C4BCa9aE",
|
|
96
|
+
"0xC2cB1040220768554cf699b0d863A3cd4324ce32", // busd/yDAI
|
|
97
|
+
"0x26EA744E5B887E5205727f55dFBE8685e3b21951", // busd/yUSDC
|
|
98
|
+
"0xE6354ed5bC4b393a5Aad09f21c46E101e692d447", // busd/yUSDT
|
|
99
|
+
"0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01", // y/yDAI
|
|
100
|
+
"0xd6aD7a6750A7593E092a9B218d66C0A814a3436e", // y/yUSDC
|
|
101
|
+
"0x83f798e925BcD4017Eb265844FDDAbb448f1707D", // y/yUSDT
|
|
102
|
+
"0x04bC0Ab673d88aE9dbC9DA2380cB6B79C4BCa9aE", // yBUSD
|
|
103
103
|
"0x73a052500105205d34Daf004eAb301916DA8190f", // yTUSD
|
|
104
104
|
].map((a) => a.toLowerCase());
|
|
105
105
|
export const ycTokensEthereum = [
|
|
106
|
-
"0x99d1Fa417f94dcD62BfE781a1213c092a47041Bc",
|
|
107
|
-
"0x9777d7E2b60bB01759D0E2f8be2095df444cb07E",
|
|
106
|
+
"0x99d1Fa417f94dcD62BfE781a1213c092a47041Bc", // ycDAI
|
|
107
|
+
"0x9777d7E2b60bB01759D0E2f8be2095df444cb07E", // ycUSDC
|
|
108
108
|
"0x1bE5d71F2dA660BFdee8012dDc58D024448A0A59", // ycUSDT
|
|
109
109
|
].map((a) => a.toLowerCase());
|
|
110
110
|
export const aTokensEthereum = [
|
|
111
|
-
"0x028171bCA77440897B824Ca71D1c56caC55b68A3",
|
|
112
|
-
"0xBcca60bB61934080951369a648Fb03DF4F96263C",
|
|
113
|
-
"0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811",
|
|
111
|
+
"0x028171bCA77440897B824Ca71D1c56caC55b68A3", // aDAI
|
|
112
|
+
"0xBcca60bB61934080951369a648Fb03DF4F96263C", // aUSDC
|
|
113
|
+
"0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811", // aUSDT
|
|
114
114
|
"0x6c5024cd4f8a59110119c56f8933403a539555eb", // sSUSD
|
|
115
115
|
].map((a) => a.toLowerCase());
|
|
@@ -11,7 +11,7 @@ export const COINS_FANTOM = lowerCaseValues({
|
|
|
11
11
|
'gdai': '0x07e6332dd090d287d3489245038daf987955dcfb',
|
|
12
12
|
'gusdc': '0xe578c856933d8e1082740bf7661e379aa2a30b26',
|
|
13
13
|
'gfusdt': '0x940f41f0ec9ba1a34cf001cc03347ac092f5f6b5',
|
|
14
|
-
'dai+usdc': '0x27e611fd27b276acbd5ffd632e5eaebec9761e40',
|
|
14
|
+
'dai+usdc': '0x27e611fd27b276acbd5ffd632e5eaebec9761e40', // LP token
|
|
15
15
|
'frax': '0xdc301622e621166bd8e82f2ca0a26c13ad0be355',
|
|
16
16
|
// --- BTC ---
|
|
17
17
|
'wbtc': '0x321162Cd933E2Be498Cd2267a90534A804051b11',
|
|
@@ -20,12 +20,12 @@ export const COINS_FANTOM = lowerCaseValues({
|
|
|
20
20
|
'eth': '0x74b23882a30290451A17c44f4F05243b6b58C76d',
|
|
21
21
|
});
|
|
22
22
|
export const cTokensFantom = [
|
|
23
|
-
'0x04c762a5dF2Fa02FE868F25359E0C259fB811CfE',
|
|
24
|
-
'0x328A7b4d538A2b3942653a9983fdA3C12c571141',
|
|
23
|
+
'0x04c762a5dF2Fa02FE868F25359E0C259fB811CfE', // iDAI
|
|
24
|
+
'0x328A7b4d538A2b3942653a9983fdA3C12c571141', // iUSDC
|
|
25
25
|
'0x70faC71debfD67394D1278D98A29dea79DC6E57A', // iFUSDT
|
|
26
26
|
].map((a) => a.toLowerCase());
|
|
27
27
|
export const aTokensFantom = [
|
|
28
|
-
'0x07e6332dd090d287d3489245038daf987955dcfb',
|
|
29
|
-
'0xe578c856933d8e1082740bf7661e379aa2a30b26',
|
|
28
|
+
'0x07e6332dd090d287d3489245038daf987955dcfb', // gDAI
|
|
29
|
+
'0xe578c856933d8e1082740bf7661e379aa2a30b26', // gUSDC
|
|
30
30
|
'0x940f41f0ec9ba1a34cf001cc03347ac092f5f6b5', // gfUSDT
|
|
31
31
|
].map((a) => a.toLowerCase());
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { lowerCaseValues } from "../utils.js";
|
|
2
2
|
export const COINS_KAVA = lowerCaseValues({
|
|
3
|
-
'crv': '0x64D5BaF5ac030e2b7c435aDD967f787ae94D0205',
|
|
3
|
+
'crv': '0x64D5BaF5ac030e2b7c435aDD967f787ae94D0205', // <--- TODO CHANGE
|
|
4
4
|
// --- USD ---
|
|
5
5
|
'dai': '0x765277EebeCA2e31912C9946eAe1021199B39C61',
|
|
6
6
|
'usdc': '0xfA9343C3897324496A05fC75abeD6bAC29f8A40f',
|
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
import { lowerCaseValues } from "../utils.js";
|
|
2
2
|
export const COINS_POLYGON = lowerCaseValues({
|
|
3
|
-
crv: "0x172370d5cd63279efa6d502dab29171933a610af",
|
|
3
|
+
crv: "0x172370d5cd63279efa6d502dab29171933a610af", // CRV
|
|
4
4
|
// -- USD ---
|
|
5
|
-
dai: "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063",
|
|
6
|
-
'usdc.e': "0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
|
|
7
|
-
usdt: "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
|
|
8
|
-
amdai: "0x27F8D03b3a2196956ED754baDc28D73be8830A6e",
|
|
9
|
-
amusdc: "0x1a13F4Ca1d028320A707D99520AbFefca3998b7F",
|
|
10
|
-
amusdt: "0x60D55F02A771d515e077c9C2403a1ef324885CeC",
|
|
11
|
-
am3crv: "0xE7a24EF0C5e95Ffb0f6684b813A78F2a3AD7D171",
|
|
5
|
+
dai: "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", // DAI
|
|
6
|
+
'usdc.e': "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", // USDC.e
|
|
7
|
+
usdt: "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", // USDT
|
|
8
|
+
amdai: "0x27F8D03b3a2196956ED754baDc28D73be8830A6e", // amDAI
|
|
9
|
+
amusdc: "0x1a13F4Ca1d028320A707D99520AbFefca3998b7F", // amUSDC
|
|
10
|
+
amusdt: "0x60D55F02A771d515e077c9C2403a1ef324885CeC", // amUSDT
|
|
11
|
+
am3crv: "0xE7a24EF0C5e95Ffb0f6684b813A78F2a3AD7D171", // am3CRV
|
|
12
12
|
// --- ETH ---
|
|
13
|
-
weth: "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
|
|
14
|
-
amweth: "0x28424507fefb6f7f8E9D3860F56504E4e5f5f390",
|
|
13
|
+
weth: "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", // WETH
|
|
14
|
+
amweth: "0x28424507fefb6f7f8E9D3860F56504E4e5f5f390", // amWETH
|
|
15
15
|
// --- BTC ---
|
|
16
|
-
wbtc: "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6",
|
|
17
|
-
renbtc: "0xDBf31dF14B66535aF65AaC99C32e9eA844e14501",
|
|
18
|
-
amwbtc: "0x5c2ed810328349100A66B82b78a1791B101C9D61",
|
|
16
|
+
wbtc: "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", // WBTC
|
|
17
|
+
renbtc: "0xDBf31dF14B66535aF65AaC99C32e9eA844e14501", // renBTC
|
|
18
|
+
amwbtc: "0x5c2ed810328349100A66B82b78a1791B101C9D61", // amWBTC
|
|
19
19
|
// --- MATIC ---
|
|
20
|
-
matic: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
|
|
20
|
+
matic: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE", // MATIC
|
|
21
21
|
wmatic: "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270",
|
|
22
22
|
// --- EUR ---
|
|
23
23
|
eurt: "0x7BDF330f423Ea880FF95fC41A280fD5eCFD3D09f", // EURT
|
|
24
24
|
});
|
|
25
25
|
export const aTokensPolygon = [
|
|
26
|
-
"0x27F8D03b3a2196956ED754baDc28D73be8830A6e",
|
|
27
|
-
"0x1a13F4Ca1d028320A707D99520AbFefca3998b7F",
|
|
28
|
-
"0x60D55F02A771d515e077c9C2403a1ef324885CeC",
|
|
29
|
-
"0x5c2ed810328349100A66B82b78a1791B101C9D61",
|
|
26
|
+
"0x27F8D03b3a2196956ED754baDc28D73be8830A6e", // amDAI
|
|
27
|
+
"0x1a13F4Ca1d028320A707D99520AbFefca3998b7F", // amUSDC
|
|
28
|
+
"0x60D55F02A771d515e077c9C2403a1ef324885CeC", // amUSDT
|
|
29
|
+
"0x5c2ed810328349100A66B82b78a1791B101C9D61", // amWBTC
|
|
30
30
|
"0x28424507fefb6f7f8E9D3860F56504E4e5f5f390", // amWETH
|
|
31
31
|
].map((a) => a.toLowerCase());
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { lowerCaseValues } from "../utils.js";
|
|
2
2
|
export const COINS_ZKSYNC = lowerCaseValues({
|
|
3
|
-
'crv': '0x0a7432cF27F1aE3825c313F3C81e7D3efD7639aB',
|
|
3
|
+
'crv': '0x0a7432cF27F1aE3825c313F3C81e7D3efD7639aB', // <--- TODO CHANGE
|
|
4
4
|
// --- USD ---
|
|
5
5
|
'weth': '0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91',
|
|
6
6
|
});
|