Skip to content

Commit 4c5c24a

Browse files
committed
axelar: track ripple & xrpl chain
1 parent 6bb0557 commit 4c5c24a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

projects/axelar/index.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
const { getConfig } = require('../helper/cache')
2-
const { sumTokens } = require('../helper/sumTokens');
2+
const { sumTokens, sumTokensExport } = require('../helper/sumTokens');
33
const { sumTokens2 } = require('../helper/unwrapLPs');
44

55
const chainMapping = {
66
avax: 'avalanche',
77
cosmos: 'cosmoshub',
8+
xrplevm: 'xrpl-evm',
89
terra2: 'terra-2',
910
bsc: 'binance'
1011
};
@@ -46,6 +47,7 @@ const chainListTotal = [
4647
'bsc',
4748
'celo',
4849
'ethereum',
50+
'xrplevm',
4951
'fantom',
5052
'filecoin',
5153
'imx',
@@ -95,4 +97,8 @@ chainListSupply.concat(chainListTotal).forEach(chain => {
9597
}
9698
});
9799

98-
module.exports.timetravel = false;
100+
module.exports.timetravel = false;
101+
102+
module.exports.ripple = {
103+
tvl: sumTokensExport({ owner: 'rfmS3zqrQrka8wVyhXifEeyTwe8AMz2Yhw'})
104+
}

projects/helper/env.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const DEFAULTS = {
3636
KATANA_RPC: "https://rpc.katana.network",
3737
KATANA_RPC_MULTICALL: '0xcA11bde05977b3631167028862bE2a173976CA11',
3838
BTNX_RPC_MULTICALL: '0xcA11bde05977b3631167028862bE2a173976CA11',
39+
XRPLEVM_RPC_MULTICALL: '0xA7f3d2dEa7a53E7A9FEbBdE5Cf7C69d39D065030',
3940
VECHAIN_RPC_MULTICALL: '0x8B2fF167683c5e1DFD6717d934B560F20cf9F2a3',
4041
}
4142

0 commit comments

Comments
 (0)