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 0cfdd51 commit 3492824Copy full SHA for 3492824
projects/umoja-umja/index.js
@@ -0,0 +1,14 @@
1
+const Arbitrum = {
2
+ token: "0x16A500Aec6c37F84447ef04E66c57cfC6254cF92",
3
+ umo_governance: "0x256F7b822594a1Bc5cB5a68f0A7d97C8F3F2711C",
4
+};
5
+
6
+module.exports = {
7
+ arbitrum: {
8
+ tvl: () => ({}),
9
+ staking: async (api) => {
10
+ const lockedUmoGov = await api.call({ abi: 'erc20:balanceOf', target: Arbitrum.token, params: Arbitrum.umo_governance })
11
+ api.add(Arbitrum.token, lockedUmoGov)
12
+ },
13
14
+}
0 commit comments