Skip to content

Commit b5aca06

Browse files
authored
chore: support nado (#17269)
1 parent 0f0de4b commit b5aca06

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

projects/helper/coreAssets.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2301,7 +2301,10 @@
23012301
},
23022302
"ink": {
23032303
"WETH": "0x4200000000000000000000000000000000000006",
2304-
"GHO": "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73"
2304+
"GHO": "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73",
2305+
"USDT0": "0x0200C29006150606B650577BBE7B6248F58470c1",
2306+
"KBTC": "0x73E0C0d45E048D25Fc26Fa3159b0aA04BfA4Db98",
2307+
"USDC": "0x2D270e6886d130D724215A266106e6832161EAEd"
23052308
},
23062309
"duckchain": {
23072310
"WTON": "0x7F9308E8d724e724EC31395f3af52e0593BB2e3f"

projects/nado/index.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
const ADDRESSES = require('../helper/coreAssets.json')
2+
const { sumTokensExport } = require('../helper/unwrapLPs')
3+
4+
// Nado on Ink Mainnet (Chain ID: 57073)
5+
// Production deployment contract addresses
6+
const inkConfig = {
7+
"querier": "0x68798229F88251b31D534733D6C4098318c9dff8",
8+
"clearinghouse": "0xD218103918C19D0A10cf35300E4CfAfbD444c5fE",
9+
"endpoint": "0x05ec92D78ED421f3D3Ada77FFdE167106565974E",
10+
"spotEngine": "0xFcD94770B95fd9Cc67143132BB172EB17A0907fE",
11+
"perpEngine": "0xF8599D58d1137fC56EcDd9C16ee139C8BDf96da1"
12+
}
13+
14+
module.exports = {
15+
ink: {
16+
tvl: sumTokensExport({
17+
owners: [inkConfig.clearinghouse, inkConfig.endpoint],
18+
tokens: [ADDRESSES.ink.USDT0, ADDRESSES.ink.WETH, ADDRESSES.ink.KBTC, ADDRESSES.ink.USDC],
19+
})
20+
}
21+
}

0 commit comments

Comments
 (0)