Skip to content

Commit 9d0bdc5

Browse files
authored
1 parent bcd781d commit 9d0bdc5

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed

projects/multichainz/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const abi = {
55
}
66

77
const config = {
8+
plume: { pool: '0x8bd47bC14f38840820d1DC7eD5Eb57b85d2c7808', },
89
plume_mainnet: { pool: '0x3AF7D19aAeCf142C91FF1A8575A316807a0f611A', },
910
}
1011

projects/umoja-umja/index.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

projects/umoja/index.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const Address = require("../helper/coreAssets.json");
22
const Http = require("../helper/http");
3-
const token = Address.arbitrum.USDC_CIRCLE
43

54
module.exports = {
65
timetravel: false,
@@ -10,7 +9,11 @@ module.exports = {
109
const data = await Http.get("https://api.protocol.umoja.xyz/tokens/tvl/d-llama");
1110

1211
for (const entry of data)
13-
if (entry.currency == "USDC") api.add(token, entry.tvl * 1e6)
14-
}
12+
if (entry.currency == "USDC") api.add(Address.arbitrum.USDC_CIRCLE, entry.tvl * 1e6)
13+
},
14+
staking: async (api) => {
15+
const lockedUmoGov = await api.call({ abi: 'erc20:balanceOf', target: "0x16A500Aec6c37F84447ef04E66c57cfC6254cF92", params: "0x256F7b822594a1Bc5cB5a68f0A7d97C8F3F2711C" })
16+
api.add("0x16A500Aec6c37F84447ef04E66c57cfC6254cF92", lockedUmoGov)
17+
},
1518
}
1619
};

0 commit comments

Comments
 (0)