Skip to content

Commit b5f19e9

Browse files
authored
add utonic adapter (DefiLlama#12231)
1 parent 0bb20c8 commit b5f19e9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

projects/utonic/index.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const { call } = require("../helper/chain/ton");
2+
3+
module.exports = {
4+
timetravel: false,
5+
ton: {
6+
tvl: async () => {
7+
const result = await call({ target: "EQAfF5j3JMIpZlLmACv7Ub7RH7WmiVMuV4ivcgNYHvNnqHTz", abi: "get_minter_data"})
8+
return { "coingecko:the-open-network": result[0]/1e9 };
9+
}
10+
}
11+
}

0 commit comments

Comments
 (0)