Skip to content

Commit 73693ea

Browse files
authored
feat: add coinbase xrp (#15515)
1 parent 817d6aa commit 73693ea

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

projects/coinbase-xrp/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const sdk = require('@defillama/sdk');
2+
const { sumTokensExport } = require('../helper/sumTokens');
3+
4+
const XRP_ADDRESSES = [
5+
"rKopBmtBSMmUD6NCFNwGTG3b9ZxNzf7Tt4",
6+
"rU1DGbMWhrFSJLPcrtKuV5iPyD1wrVgeaU",
7+
"rMbVVXFHaBpSpJhdR1xvy7dkQL1gtnkopg",
8+
"rGsMk4nK4M8MtcjVbjUeaJBppjjKpXyJ7F"
9+
];
10+
11+
module.exports = {
12+
methodology: "XRP collateral backing CBXRP https://www.coinbase.com/en-in/cbxrp/proof-of-reserves",
13+
ripple: {
14+
tvl: sdk.util.sumChainTvls([
15+
sumTokensExport({ owners: XRP_ADDRESSES }),
16+
]),
17+
},
18+
};

0 commit comments

Comments
 (0)