We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdce6ea commit 4d9d263Copy full SHA for 4d9d263
projects/LairFinance/index.js
@@ -0,0 +1,13 @@
1
+const contracts = {
2
+ stKAIA: '0x42952B873ed6f7f0A7E4992E2a9818E3A9001995',
3
+ node: '0x7949597f453592B782EC9036Af27d63Ed9774b2d',
4
+}
5
+
6
+async function tvl(api) {
7
+ const tvl = await api.call({ target: contracts.node, abi: "uint256:getTotalStakingAmount" })
8
+ api.addGasToken(tvl)
9
10
11
+module.exports = {
12
+ klaytn: { tvl }
13
projects/capybara-exchange/config.js
@@ -3,6 +3,8 @@ module.exports = {
pools: {
mainPool: "0x540cce8ed7d210f71eeabb9e7ed7698ac745e077",
volatilePool: "0x6389dbfa1427a3b0a89cddc7ea9bbda6e73dece7",
+ lstPool: "0x5CDE63386D78362267d9A3edC8DA204bB64D07D3",
+ stargatePool: "0x1dE1578476d9B4237F963eca5D37500Fc33DF3D1",
},
};
0 commit comments