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 d12c704 commit d4b44eaCopy full SHA for d4b44ea
projects/kinetix-derivatives-v2/index.js
@@ -0,0 +1,15 @@
1
+const ADDRESSES = require("../helper/coreAssets.json");
2
+
3
+const { nullAddress } = require("../helper/unwrapLPs");
4
5
+async function KavaTvl(_time, _ethBlock, _cb, { api }) {
6
+ const tokens = [nullAddress, ADDRESSES.kava.USDC];
7
+ const owners = ["0x3d520d1979beC1E2f68B20fEcdf06AC8b543B435"];
8
+ return api.sumTokens({ owners, tokens });
9
+}
10
11
+module.exports = {
12
+ kava: {
13
+ tvl: KavaTvl,
14
+ },
15
+};
0 commit comments