Skip to content

Commit

Permalink
use token labels
Browse files Browse the repository at this point in the history
  • Loading branch information
g1nt0ki committed May 1, 2024
1 parent 4cc3b62 commit 2a89031
Show file tree
Hide file tree
Showing 23 changed files with 68 additions and 56 deletions.
3 changes: 2 additions & 1 deletion projects/MorpheusAI/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const STETH_CONTRACT = '0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84';
const ADDRESSES = require('../helper/coreAssets.json')
const STETH_CONTRACT = ADDRESSES.ethereum.STETH;
const PROJECT_CONTRACT = '0x47176B2Af9885dC6C4575d4eFd63895f7Aaa4790';

async function tvl(_, __, ___, { api }) {
Expand Down
8 changes: 4 additions & 4 deletions projects/airpuff/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,22 @@ module.exports = {

const airPuff1XwETHMode = {
vault: "0xeAaD8f5F1901D2f92B747650c0f941Bfa3413dAF",
pendleAddress: "0x4200000000000000000000000000000000000006",
pendleAddress: ADDRESSES.optimism.WETH_1,
};

const airPuff1XUSDTMode = {
vault: "0xCEb6264CdCcDDd8c9631212Dc7112304F9393818",
pendleAddress: "0xf0F161fDA2712DB8b566946122a5af183995e2eD",
pendleAddress: ADDRESSES.mode.USDT,
};

const airPuff1XUSDCMode = {
vault: "0x08ccF72358B44D9d45438Fc703962A0a2FD5c978",
pendleAddress: "0xd988097fb8612cc24eeC14542bC03424c656005f",
pendleAddress: ADDRESSES.mode.USDC,
};

const airPuff1XwBTCMode = {
vault: "0xf9B484901BCA34A8615c90E8C4933f1Bd553B639",
pendleAddress: "0xcdd475325d6f564d27247d1dddbb0dac6fa0a5cf",
pendleAddress: ADDRESSES.mode.WBTC,
};

const airPuff1XwrsETHMode = {
Expand Down
3 changes: 2 additions & 1 deletion projects/arcade-xyz/constants.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const ADDRESSES = require('../helper/coreAssets.json')
const SUBGRAPH_URL = 'https://subgraph.satsuma-prod.com/c59d37e827d0/non-fungible-technologies/protocol/api';
const CHAIN = 'ethereum';

Expand All @@ -16,7 +17,7 @@ const STAKING_REWARDS = "0x80bDdd56b947c547Ab8964D80E98E42Ff77a5793";
const SINGLE_SIDED_STAKING = "0x72854FBb44d3dd87109D46a9298AEB0d018740f0";
const ARCD = "0xe020B01B6fbD83066aa2e8ee0CCD1eB8d9Cc70bF";
const ARCD_WETH_LP = "0x06af8C358c0787640588734E4733A779961a2bca";
const WETH = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2";
const WETH = ADDRESSES.ethereum.WETH;

const VAULT_FACTORIES = new Set();
VAULT_FACTORIES.add(VAULT_FACTORY_A);
Expand Down
11 changes: 6 additions & 5 deletions projects/bountive/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { bountiveTokenAbi } = require("./abi");
const { multiCall } = require('../helper/chain/starknet')

Expand All @@ -16,15 +17,15 @@ const bountiveTokens = [

const underlyingsTokens = [
// STRK
"0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d",
ADDRESSES.starknet.STRK,
// ETH
"0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7",
ADDRESSES.starknet.ETH,
// USDC
"0x053c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8",
ADDRESSES.starknet.USDC,
// USDT
"0x068f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8",
ADDRESSES.starknet.USDT,
// DAI
"0x00da114221cb83fa859dbdb4c44beeaa0bb37c7537ad5ae66fe5e0efd20e6eb3",
ADDRESSES.starknet.DAI,
]

async function tvl(api) {
Expand Down
2 changes: 1 addition & 1 deletion projects/breadchain/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ const ADDRESSES = require('../helper/coreAssets.json')

module.exports = {
xdai: {
tvl: sumTokensExport({ owner: '0xa555d5344f6fb6c65da19e403cb4c1ec4a1a5ee3', tokens: [ADDRESSES.xdai.DAI, '0xaf204776c7245bf4147c2612bf6e5972ee483701']})
tvl: sumTokensExport({ owner: '0xa555d5344f6fb6c65da19e403cb4c1ec4a1a5ee3', tokens: [ADDRESSES.xdai.DAI, ADDRESSES.xdai.SDAI]})
},
}
3 changes: 2 additions & 1 deletion projects/bridgem/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { sumTokensExport } = require("../helper/unwrapLPs");

const STONE = '0xEc901DA9c68E90798BbBb74c11406A32A70652C3';
const AtomicLockContract = '0x19727db22Cba70B1feE40337Aba69D83c6741caF';

const USDC = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48';
const USDC = ADDRESSES.ethereum.USDC;
const ESTONE = '0x7122985656e38BDC0302Db86685bb972b145bD3C';
const LOCK_CONTRACT = '0xD6572c7Cd671ECF75d920aDcd200B00343959600';

Expand Down
2 changes: 1 addition & 1 deletion projects/butternetwork/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const config = {
WETH: ADDRESSES.base.WETH,
USDbC: ADDRESSES.base.USDbC,
DAI: ADDRESSES.base.DAI,
BAL: "0x7c6b91d9be155a6db01f749217d76ff02a7227f2",
BAL: ADDRESSES.defiverse.USDC,
ERN: "0xa334884bf6b0a066d553d19e507315e839409e62",
BALD: "0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8",
BASIN: "0x4788de271f50ea6f5d5d2a5072b8d3c61d650326",
Expand Down
2 changes: 1 addition & 1 deletion projects/cega-v2/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
ADDRESSES.ethereum.WBTC,
ADDRESSES.ethereum.DAI,
ADDRESSES.ethereum.USDe,
"0x9D39A5DE30e57443BfF2A8307A4256c8797A3497",
ADDRESSES.ethereum.sUSDe,
],
owners: ["0xA8AB795731fbBFDd1Fbc57ca11e6f722e7783642"],
}),
Expand Down
5 changes: 3 additions & 2 deletions projects/dirac-finance/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const ADDRESSES = require('../helper/coreAssets.json')
const DIRAC_VAULT_1_CONTRACT = '0xa9154A433E879fa0E948eA208Aa359271Dc40469';
const USDCE_CONTRACT = '0x37eaa0ef3549a5bb7d431be78a3d99bd360d19e5';
const USDC_CONTRACT = '0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035';
const USDCE_CONTRACT = ADDRESSES.polygon_zkevm.USDC_CIRCLE;
const USDC_CONTRACT = ADDRESSES.astarzk.USDC;

const DIRAC_VAULT_2_CONTRACT = '0x6d91E01A609e34d58678265ee6b821F0E1b9044E';
const DIRAC_VAULT_3_CONTRACT = '0x714BEC23142375c1A6576A9B7cA302DD1B680237';
Expand Down
3 changes: 2 additions & 1 deletion projects/ebtc/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { sumTokens2 } = require('../helper/unwrapLPs')

const COLLATERAL_ADDRESS = "0xae7ab96520de3a18e5e111b5eaab095312d7fe84"; // stETH
const COLLATERAL_ADDRESS = ADDRESSES.ethereum.STETH; // stETH
const ACTIVE_POOL_ADDRESS = "0x6dBDB6D420c110290431E863A1A978AE53F69ebC";
const COLL_SURPLUSS_POOL = "0x335982DaE827049d35f09D5ec927De2bc38df3De";

Expand Down
3 changes: 2 additions & 1 deletion projects/ethena/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const USDe = "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3"
const ADDRESSES = require('../helper/coreAssets.json')
const USDe = ADDRESSES.ethereum.USDe

module.exports = {
ethereum: {
Expand Down
16 changes: 8 additions & 8 deletions projects/helper/tokenMapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const fixBalancesTokens = {
},
ancient8: {
[ADDRESSES.nul]: { coingeckoId: "ethereum", decimals: 18, },
'0x4200000000000000000000000000000000000006': { coingeckoId: "ethereum", decimals: 18, },
[ADDRESSES.optimism.WETH_1]: { coingeckoId: "ethereum", decimals: 18, },
},
area: {
'0x1d1bc800e71576a59f9ef88bb679fa13c2e10abf': { coingeckoId: 'areon-network', decimals: 18, },
Expand All @@ -64,7 +64,7 @@ const fixBalancesTokens = {
},
core: {
'0x1281E326C6e4413A98DafBd0D174a4Ae07ff4223': { coingeckoId: "zeepr", decimals: 18, },
'0x8034ab88c3512246bf7894f57c834dddbd1de01f': { coingeckoId: "bitcoin", decimals: 8 },
[ADDRESSES.core.coreBTC]: { coingeckoId: "bitcoin", decimals: 8 },
},
bsc: {
'0x55CBAC75C1af769eB7FD37d27A5cb6437EB29abB': { coingeckoId: "zeepr", decimals: 18, },
Expand Down Expand Up @@ -92,7 +92,7 @@ const fixBalancesTokens = {
'0x4dcb91cc19aadfe5a6672781eb09abad00c19e4c': { coingeckoId: "sats-ordinals", decimals: 18, },
'0x69181a1f082ea83a152621e4fa527c936abfa501': { coingeckoId: "rats", decimals: 18, },
'0x0726523eba12edad467c55a962842ef358865559': { coingeckoId: "ordinals", decimals: 18, },
'0x0000000000000000000000000000000000000000': { coingeckoId: "bitcoin", decimals: 18, },
[ADDRESSES.null]: { coingeckoId: "bitcoin", decimals: 18, },
'0x967aec3276b63c5e2262da9641db9dbebb07dc0d': { coingeckoId: "tether", decimals: 6, },
'0x6b4ecada640f1b30dbdb68f77821a03a5f282ebe': { coingeckoId: "usd-coin", decimals: 6, },
},
Expand All @@ -111,14 +111,14 @@ const fixBalancesTokens = {
'0x80137510979822322193fc997d400d5a6c747bf7': { coingeckoId: "stakestone-ether", decimals: 18 },
},
zklink: {
'0x0000000000000000000000000000000000000000': { coingeckoId: "ethereum", decimals: 18, },
[ADDRESSES.null]: { coingeckoId: "ethereum", decimals: 18, },
'0xda4aaed3a53962c83b35697cd138cc6df43af71f': { coingeckoId: "wrapped-bitcoin", decimals: 8, },
'0x2f8a25ac62179b31d62d7f80884ae57464699059': { coingeckoId: "tether", decimals: 6, },
'0x1a1a3b2ff016332e866787b311fcb63928464509': { coingeckoId: "usd-coin", decimals: 6, },
},
bsquared: {
'0x0000000000000000000000000000000000000000': { coingeckoId: "bitcoin", decimals: 18, },
'0x4200000000000000000000000000000000000006': { coingeckoId: "bitcoin", decimals: 18, },
[ADDRESSES.null]: { coingeckoId: "bitcoin", decimals: 18, },
[ADDRESSES.optimism.WETH_1]: { coingeckoId: "bitcoin", decimals: 18, },
'0x681202351a488040fa4fdcc24188afb582c9dd62': { coingeckoId: "tether", decimals: 6, },
'0xe544e8a38add9b1abf21922090445ba93f74b9e5': { coingeckoId: "usd-coin", decimals: 6, },
},
Expand Down Expand Up @@ -161,8 +161,8 @@ const fixBalancesTokens = {
KBTC: { coingeckoId: "kintsugi-btc", decimals: 8 },
},
bob: {
'0x0000000000000000000000000000000000000000': { coingeckoId: "ethereum", decimals: 18, },
'0x4200000000000000000000000000000000000006': { coingeckoId: "ethereum", decimals: 18, },
[ADDRESSES.null]: { coingeckoId: "ethereum", decimals: 18, },
[ADDRESSES.optimism.WETH_1]: { coingeckoId: "ethereum", decimals: 18, },
'0x03c7054bcb39f7b2e5b2c7acb37583e32d70cfa3': { coingeckoId: "wrapped-bitcoin", decimals: 8, },
'0x05d032ac25d322df992303dca074ee7392c117b9': { coingeckoId: "tether", decimals: 6, },
'0xe75d0fb2c24a55ca1e3f96781a2bcc7bdba058f0': { coingeckoId: "usd-coin", decimals: 6, },
Expand Down
2 changes: 1 addition & 1 deletion projects/jones-dao/addresses.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = {
jglp: "0x7241bC8035b65865156DDb5EdEf3eB32874a3AF6",
rdpx: "0x32Eb7902D4134bf98A28b963D26de779AF92A212",
rdpx_eth: "0x7418F5A2621E13c05d1EFBd71ec922070794b90a",
usdc: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
usdc: ADDRESSES.arbitrum.USDC_CIRCLE,
uvrt: "0xa485a0bc44988B95245D5F20497CCaFF58a73E99",
weth: ADDRESSES.arbitrum.WETH,
wjaura: "0xcB9295ac65De60373A25C18d2044D517ed5da8A9",
Expand Down
7 changes: 4 additions & 3 deletions projects/lumi-finance/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { sumTokensExport, sumTokens2 } = require('../helper/unwrapLPs')
const sdk = require("@defillama/sdk");

Expand All @@ -11,9 +12,9 @@ const Arb2CRVGauge = "0xCE5F24B7A95e9cBa7df4B54E911B4A3Dc8CDAf6f";
const Arb2CRVLUAUSDLP = "0xD2239B95890018a8f52fFD17d7F94C3A82f05389";
const ArbLUAUSDMetaPoolGauge = "0x721cac0f4715a29acd76752408636e8a49222c11";

const USDCBridged = "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8";
const USDT = "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9";
const WBTC = "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f";
const USDCBridged = ADDRESSES.arbitrum.USDC;
const USDT = ADDRESSES.arbitrum.USDT;
const WBTC = ADDRESSES.arbitrum.WBTC;
const LUA = "0xc3aBC47863524ced8DAf3ef98d74dd881E131C38";
const LUAUSD = "0x1DD6b5F9281c6B4f043c02A83a46c2772024636c";

Expand Down
31 changes: 16 additions & 15 deletions projects/meson/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { sumToken2, nullAddress, sumTokens2 } = require('../helper/unwrapLPs');
const { getConfig } = require('../helper/cache')
const defaultOwner = '0x25aB3Efd52e6470681CE037cD546Dc60726948D3'

const config = {
merlin: {
tokens: [
'0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D',
ADDRESSES.bsc.iUSD,
'0x480E158395cC5b41e5584347c495584cA2cAf78d',
'0x6b4eCAdA640F1B30dBdB68f77821A03A5f282EbE',
'0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d',
'0x9bd60d6FC99843207B8149f9190438C1F81BDdcD',
'0xB5d8b1e73c79483d7750C5b8DF8db45A0d24e2cf',
'0xB880fd278198bd590252621d4CD071b1842E9Bcd',
ADDRESSES.merlin.WBTC_1,
'0xc21d5dEB02248bEa5aC3Ea51695bF2Cd36A4Ad2b',
'0xd5534269e027bCb81d319e4213f665fab011038e',
],
Expand All @@ -34,34 +35,34 @@ const config = {
},
xlayer: {
tokens: [
'0x1e4a5963abfd975d8c9021ce480b42188849d41d',
'0x5a77f1443d16ee5761d310e38b62f77f726bc71c',
'0x74b7f16337b8972027f6196a17a631ac6de26d22',
'0xea034fb02eb1808c2cc3adbc15f447b93cbe08e1',
ADDRESSES.astarzk.USDT,
ADDRESSES.xlayer.WETH,
ADDRESSES.xlayer.USDC,
ADDRESSES.astarzk.WBTC,
],
},
blast: {
tokens: [
'0x4300000000000000000000000000000000000003',
ADDRESSES.blast.USDB,
'0x58ef828c7b11dbed86291d328beb08f050738c37',
'0x01593B8AaaDc5238F2f5C8597bC1402eB7a48c5f',
'0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d',
ADDRESSES.bsc.iUSD,
],
},
tron: {
owner: 'TKWqpzNucNNBMpfaE47F8CLhA8vzfNndH4',
tokens: [
'TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq',
'TE2RzoSV3wFK99w6J9UnnZ4vLfXYoxvRwP',
'TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4',
ADDRESSES.tron.BTT,
'TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7',
'TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t',
'TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9',
ADDRESSES.tron.USDT,
ADDRESSES.tron.JST,
'TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS',
'TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8',
'TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn',
'TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT',
'TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR',
ADDRESSES.tron.USDC,
ADDRESSES.tron.USDD,
ADDRESSES.tron.USDJ,
ADDRESSES.tron.WTRX,
],
},
ancient8: { id: 'ancient8' },
Expand Down
4 changes: 2 additions & 2 deletions projects/mountain-protocol/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const sdk = require("@defillama/sdk");
const MOUNTAIN_PROTOCOL_CONTRACT = "0x59d9356e565ab3a36dd77763fc0d87feaf85508c";
const ADDRESSES = require('../helper/coreAssets.json')
const MOUNTAIN_PROTOCOL_CONTRACT = ADDRESSES.ethereum.USDM;

async function tvl(api) {
const totalSupply = await api.call({
Expand Down
5 changes: 3 additions & 2 deletions projects/particle-trade-duo/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const ADDRESSES = require('../helper/coreAssets.json')
const config = {
blast: {
weth90d: '0xc932317385fDc794633f612874BD687eA987B151',
Expand All @@ -18,8 +19,8 @@ const wrappedToken = {

const wrappedNativeTokenMap = {
blast: {
'0x1Da40C742F32bBEe81694051c0eE07485fC630f6': '0x66714DB8F3397c767d0A602458B5b4E3C0FE7dd1',
'0x1A3D9B2fa5c6522c8c071dC07125cE55dF90b253': '0x866f2C06B83Df2ed7Ca9C2D044940E7CD55a06d6',
'0x1Da40C742F32bBEe81694051c0eE07485fC630f6': ADDRESSES.blast.fwWETH,
'0x1A3D9B2fa5c6522c8c071dC07125cE55dF90b253': ADDRESSES.blast.fwUSDB,
}
}

Expand Down
3 changes: 2 additions & 1 deletion projects/plur/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { getLogs, getAddress } = require("../helper/cache/getLogs");
const { sumTokens2 } = require("../helper/unwrapLPs");

const BUILDER_ADDRESS = '0x5dfee62C78A0E607CCE6A5d4458c328A03275ba2';
const WETH_ADDRESS = "0x4300000000000000000000000000000000000004"
const WETH_ADDRESS = ADDRESSES.blast.WETH

async function tvl(_, _1, _2, { api }) {
const createPoolLogs = await getLogs({
Expand Down
2 changes: 1 addition & 1 deletion projects/ridotto/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = {
tvl: sumTokensExport({
tokensAndOwners: [
[
"0x55d398326f99059fF775485246999027B3197955",
ADDRESSES.bsc.USDT,
"0x2c5B04F5744724ccEaAdA451f81b6E6a98D53fde",
], // BANKROLL/BUSD
],
Expand Down
2 changes: 1 addition & 1 deletion projects/treasury/luchadores.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = treasuryExports({
polygon: {
tokens: [
nullAddress,
'0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270',
ADDRESSES.polygon.WMATIC_2,
'0x5D066D022EDE10eFa2717eD3D79f22F949F8C175',
],
owners: ['0x0Cb11b92Fa5C30eAfe4aE84B7BB4dF3034C38b9d'],
Expand Down
3 changes: 2 additions & 1 deletion projects/zeepr/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { staking } = require("../helper/staking");

module.exports = {
Expand All @@ -7,7 +8,7 @@ module.exports = {
},
core: {
tvl: () => ({}),
staking: staking("0x60101E4388D1c2B389d78daC29d37Ee2DAc88e07", ["0x1281E326C6e4413A98DafBd0D174a4Ae07ff4223","0x40375C92d9FAf44d2f9db9Bd9ba41a3317a2404f"]),
staking: staking("0x60101E4388D1c2B389d78daC29d37Ee2DAc88e07", ["0x1281E326C6e4413A98DafBd0D174a4Ae07ff4223",ADDRESSES.core.WCORE]),
},
bsc: {
tvl: () => ({}),
Expand Down
2 changes: 1 addition & 1 deletion projects/zircuit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const TOKEN_CONTRACTS = [
ADDRESSES.ethereum.WSTETH, // wstETH
'0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee', // weETH
'0xf951E335afb289353dc249e82926178EaC7DEd78', // swETH
'0x4c9EDD5852cd905f086C759E8383e09bff1E68B3', // USDe
ADDRESSES.ethereum.USDe, // USDe
ADDRESSES.ethereum.STONE, // cSTONE
'0xd5F7838F5C461fefF7FE49ea5ebaF7728bB0ADfa', // mETH
'0xD9A442856C234a39a81a089C06451EBAa4306a72', // pufETH
Expand Down
2 changes: 1 addition & 1 deletion projects/zkdx/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ module.exports = {
},
zklink:{
tvl: staking(["0xb5e635f2cB9eAC385D679069f8e0d1740436b355", "0xa6DbD1bdB1DC4339Df51d90Ce306CCE6edFbbbb1"],
["0x0000000000000000000000000000000000000000", "0x1a1A3b2ff016332e866787B311fcB63928464509"])
[ADDRESSES.null, "0x1a1A3b2ff016332e866787B311fcB63928464509"])
}
};

0 comments on commit 2a89031

Please sign in to comment.