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 817d6aa commit 73693eaCopy full SHA for 73693ea
projects/coinbase-xrp/index.js
@@ -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