Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new cytonic chains #12452

Merged
merged 2 commits into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion projects/cytonic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const idl = {
"errors": []
}


const BRIDGE_DEPOSITOR_EVM = '0xaEA5Bf79F1E3F2069a99A99928927988EC642e0B';
const BRIDGE_DEPOSITOR_SOL = 'HYDqq5GfUj4aBuPpSCs4fkmeS7jZHRhrrQ3q72KsJdD4';

Expand Down Expand Up @@ -143,6 +142,30 @@ module.exports = {
],
}),
},
manta: {
tvl: sumTokensExport({
owner: BRIDGE_DEPOSITOR_EVM,
tokens: [
ADDRESSES.null, // ETH
ADDRESSES.manta.WETH, // WETH
ADDRESSES.manta.USDC, // USDC
ADDRESSES.manta.USDT, // USDT
"0x1468177dbcb2a772f3d182d2f1358d442b553089", // Manta mBTC
"0xaccbc418a994a27a75644d8d591afc22faba594e", // Manta mETH
"0x649d4524897ce85a864dc2a2d5a11adb3044f44a", // Manta mUSD
],
})
},
bsquared: {
tvl: sumTokensExport({
owner: BRIDGE_DEPOSITOR_EVM,
tokens: [
ADDRESSES.null, // BTC
ADDRESSES.bsquared.WBTC, // WBTC
ADDRESSES.bsquared.USDT, // USDT
],
})
},
solana: {
tvl: sol_tvl
}
Expand Down
Loading