@stabilitydao/stability 0.7.2 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/out/assets.d.ts +12 -0
- package/out/assets.d.ts.map +1 -0
- package/out/assets.js +104 -0
- package/out/assets.js.map +1 -0
- package/out/index.d.ts +2 -1
- package/out/index.d.ts.map +1 -1
- package/out/index.js +4 -1
- package/out/index.js.map +1 -1
- package/out/stability.tokenlist.json +27 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,6 +74,14 @@ Third-party addresses.
|
|
|
74
74
|
import {almFactories} from '@stabilitydao/stability'
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
+
### Assets
|
|
78
|
+
|
|
79
|
+
Asset addresses, description, website, color.
|
|
80
|
+
|
|
81
|
+
#### Methods
|
|
82
|
+
|
|
83
|
+
* `getAsset(chainId: string, tokenAddress: 0x${string}): Asset|undefined`
|
|
84
|
+
|
|
77
85
|
## Develop
|
|
78
86
|
|
|
79
87
|
```shell
|
package/out/assets.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type Asset = {
|
|
2
|
+
addresses: {
|
|
3
|
+
[chainId: string]: `0x${string}` | `0x${string}`[];
|
|
4
|
+
};
|
|
5
|
+
symbol: string;
|
|
6
|
+
description: string;
|
|
7
|
+
website: string;
|
|
8
|
+
color: string;
|
|
9
|
+
};
|
|
10
|
+
export declare const assets: Asset[];
|
|
11
|
+
export declare const getAsset: (chainId: string, tokenAddress: `0x${string}`) => Asset | undefined;
|
|
12
|
+
//# sourceMappingURL=assets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["../src/assets.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,KAAK,GAAG;IAClB,SAAS,EAAE;QAAC,CAAC,OAAO,EAAC,MAAM,GAAG,KAAK,MAAM,EAAE,GAAC,KAAK,MAAM,EAAE,EAAE,CAAA;KAAC,CAAC;IAC7D,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACf,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,KAAK,EAqFzB,CAAA;AAED,eAAO,MAAM,QAAQ,YAAa,MAAM,gBAAgB,KAAK,MAAM,EAAE,KAAG,KAAK,GAAC,SAkB7E,CAAA"}
|
package/out/assets.js
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getAsset = exports.assets = void 0;
|
|
4
|
+
exports.assets = [
|
|
5
|
+
{
|
|
6
|
+
addresses: {
|
|
7
|
+
"137": ["0x2791bca1f2de4661ed88a30c99a7a9449aa84174", "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",],
|
|
8
|
+
"8453": ["0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",],
|
|
9
|
+
},
|
|
10
|
+
symbol: 'USDC',
|
|
11
|
+
description: "USDC is a fully-reserved stablecoin, which is a type of cryptocurrency, or digital asset.",
|
|
12
|
+
website: "https://www.circle.com/en/usdc",
|
|
13
|
+
color: "#3b87df",
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
addresses: {
|
|
17
|
+
"137": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
|
|
18
|
+
"8453": "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2",
|
|
19
|
+
},
|
|
20
|
+
symbol: "USDT",
|
|
21
|
+
description: "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.",
|
|
22
|
+
website: "https://tether.to/en/",
|
|
23
|
+
color: "#5bc7af",
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
addresses: {
|
|
27
|
+
"137": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063",
|
|
28
|
+
"8453": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb",
|
|
29
|
+
},
|
|
30
|
+
symbol: "DAI",
|
|
31
|
+
description: "DAI is an algorithmic stablecoin issued by MakerDAO, an Ethereum-based protocol, that seeks to maintain an exact ratio of one-to-one with the U.S. dollar.",
|
|
32
|
+
website: "https://makerdao.com/",
|
|
33
|
+
color: "#f3ba42",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
addresses: {
|
|
37
|
+
"137": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270",
|
|
38
|
+
},
|
|
39
|
+
symbol: "WMATIC",
|
|
40
|
+
description: "WMATIC is a wrapped version of MATIC that enables it to be easily used within DeFi.",
|
|
41
|
+
website: "https://polygon.technology/",
|
|
42
|
+
color: "#9663ee",
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
addresses: {
|
|
46
|
+
"137": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
|
|
47
|
+
"8453": "0x4200000000000000000000000000000000000006",
|
|
48
|
+
},
|
|
49
|
+
symbol: "WETH",
|
|
50
|
+
description: "WETH is an ERC-20 token that represents 1 Ether (ETH)",
|
|
51
|
+
website: "https://weth.io/",
|
|
52
|
+
color: "#6372a2",
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
addresses: {
|
|
56
|
+
"137": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6",
|
|
57
|
+
},
|
|
58
|
+
symbol: "WBTC",
|
|
59
|
+
description: "WBTC is an ERC-20 token on the EVM blockchains that is pegged to Bitcoin (BTC). WBTC is backed one-to-one with Bitcoin.",
|
|
60
|
+
website: "https://wbtc.network/",
|
|
61
|
+
color: "#f0a051",
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
addresses: {
|
|
65
|
+
"137": "0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6",
|
|
66
|
+
"8453": "0x417Ac0e078398C154EdFadD9Ef675d30Be60Af93",
|
|
67
|
+
},
|
|
68
|
+
symbol: "crvUSD",
|
|
69
|
+
description: "crvUSD is a collateralized-debt-position (CDP) stablecoin pegged to the US Dollar",
|
|
70
|
+
website: "https://crvusd.curve.fi/",
|
|
71
|
+
color: "#397949",
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
addresses: {
|
|
75
|
+
"8453": "0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22",
|
|
76
|
+
},
|
|
77
|
+
symbol: "cbETH",
|
|
78
|
+
description: "Coinbase Wrapped Staked ETH (“cbETH”) is a utility token that represents ETH staked through Coinbase.",
|
|
79
|
+
website: "https://www.coinbase.com/cbeth",
|
|
80
|
+
color: "#2151f5",
|
|
81
|
+
},
|
|
82
|
+
];
|
|
83
|
+
const getAsset = (chainId, tokenAddress) => {
|
|
84
|
+
for (const asset of exports.assets) {
|
|
85
|
+
const chainAddresses = asset.addresses[chainId];
|
|
86
|
+
if (chainAddresses) {
|
|
87
|
+
if (Array.isArray(chainAddresses)) {
|
|
88
|
+
for (const address of chainAddresses) {
|
|
89
|
+
if (address.toLowerCase() == tokenAddress.toLowerCase()) {
|
|
90
|
+
return asset;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
else {
|
|
95
|
+
if (chainAddresses.toLowerCase() == tokenAddress.toLowerCase()) {
|
|
96
|
+
return asset;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return undefined;
|
|
102
|
+
};
|
|
103
|
+
exports.getAsset = getAsset;
|
|
104
|
+
//# sourceMappingURL=assets.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assets.js","sourceRoot":"","sources":["../src/assets.ts"],"names":[],"mappings":";;;AAQa,QAAA,MAAM,GAAY;IAC7B;QACE,SAAS,EAAE;YACT,KAAK,EAAE,CAAC,4CAA4C,EAAE,4CAA4C,EAAE;YACpG,MAAM,EAAE,CAAC,4CAA4C,EAAE,4CAA4C,EAAE;SACtG;QACD,MAAM,EAAE,MAAM;QACd,WAAW,EACT,2FAA2F;QAC7F,OAAO,EAAE,gCAAgC;QACzC,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,KAAK,EAAE,4CAA4C;YACnD,MAAM,EAAE,4CAA4C;SACrD;QACD,MAAM,EAAE,MAAM;QACd,WAAW,EACT,8FAA8F;QAChG,OAAO,EAAE,uBAAuB;QAChC,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,KAAK,EAAE,4CAA4C;YACnD,MAAM,EAAE,4CAA4C;SACrD;QACD,MAAM,EAAE,KAAK;QACb,WAAW,EACT,4JAA4J;QAC9J,OAAO,EAAE,uBAAuB;QAChC,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,KAAK,EAAE,4CAA4C;SACpD;QACD,MAAM,EAAE,QAAQ;QAChB,WAAW,EACT,qFAAqF;QACvF,OAAO,EAAE,6BAA6B;QACtC,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,KAAK,EAAE,4CAA4C;YACnD,MAAM,EAAE,4CAA4C;SACrD;QACD,MAAM,EAAE,MAAM;QACd,WAAW,EACT,uDAAuD;QACzD,OAAO,EAAE,kBAAkB;QAC3B,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,KAAK,EAAE,4CAA4C;SACpD;QACD,MAAM,EAAE,MAAM;QACd,WAAW,EACT,yHAAyH;QAC3H,OAAO,EAAE,uBAAuB;QAChC,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,KAAK,EAAE,4CAA4C;YACnD,MAAM,EAAE,4CAA4C;SACrD;QACD,MAAM,EAAE,QAAQ;QAChB,WAAW,EACT,mFAAmF;QACrF,OAAO,EAAE,0BAA0B;QACnC,KAAK,EAAE,SAAS;KACjB;IACD;QACE,SAAS,EAAE;YACT,MAAM,EAAE,4CAA4C;SACrD;QACD,MAAM,EAAE,OAAO;QACf,WAAW,EAAE,uGAAuG;QACpH,OAAO,EAAE,gCAAgC;QACzC,KAAK,EAAE,SAAS;KACjB;CACF,CAAA;AAEM,MAAM,QAAQ,GAAG,CAAC,OAAe,EAAE,YAA2B,EAAmB,EAAE;IACxF,KAAK,MAAM,KAAK,IAAI,cAAM,EAAE,CAAC;QAC3B,MAAM,cAAc,GAAG,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAA;QAC/C,IAAI,cAAc,EAAE,CAAC;YACnB,IAAI,KAAK,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE,CAAC;gBAClC,KAAK,MAAM,OAAO,IAAI,cAAc,EAAE,CAAC;oBACrC,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,YAAY,CAAC,WAAW,EAAE,EAAE,CAAC;wBACxD,OAAO,KAAK,CAAA;oBACd,CAAC;gBACH,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,IAAI,cAAc,CAAC,WAAW,EAAE,IAAI,YAAY,CAAC,WAAW,EAAE,EAAE,CAAC;oBAC/D,OAAO,KAAK,CAAA;gBACd,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;IACD,OAAO,SAAS,CAAA;AAClB,CAAC,CAAA;AAlBY,QAAA,QAAQ,YAkBpB"}
|
package/out/index.d.ts
CHANGED
|
@@ -6,5 +6,6 @@ import { subgraphs } from "./subgraphs";
|
|
|
6
6
|
import type { ApiMainReply, ApiAggSwapData } from "./api.types";
|
|
7
7
|
import tokenlist from "./stability.tokenlist.json";
|
|
8
8
|
import { almFactories } from "./addresses";
|
|
9
|
-
|
|
9
|
+
import { assets, Asset, getAsset } from "./assets";
|
|
10
|
+
export { deployments, networks, strategies, integrations, subgraphs, CoreContracts, Network, NetworkId, Strategy, StrategyShortId, StrategyState, DefiCategory, DeFiOrganization, DeFiProtocol, IntegrationStatus, ApiMainReply, ApiAggSwapData, tokenlist, almFactories, getMerklStrategies, getStrategyShortId, getIntegrationStatus, getSupportedNetworkIds, assets, Asset, getAsset, };
|
|
10
11
|
//# sourceMappingURL=index.d.ts.map
|
package/out/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAE,aAAa,EAAC,MAAM,eAAe,CAAC;AACzD,OAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,sBAAsB,EAAC,MAAM,YAAY,CAAC;AAChF,OAAO,EACL,UAAU,EACV,eAAe,EACf,aAAa,EACb,QAAQ,EACR,kBAAkB,EAClB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACrB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AACtC,OAAO,KAAK,EAAC,YAAY,EAAE,cAAc,EAAC,MAAM,aAAa,CAAA;AAC7D,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAClD,OAAO,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAE,aAAa,EAAC,MAAM,eAAe,CAAC;AACzD,OAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,sBAAsB,EAAC,MAAM,YAAY,CAAC;AAChF,OAAO,EACL,UAAU,EACV,eAAe,EACf,aAAa,EACb,QAAQ,EACR,kBAAkB,EAClB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACrB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AACtC,OAAO,KAAK,EAAC,YAAY,EAAE,cAAc,EAAC,MAAM,aAAa,CAAA;AAC7D,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAClD,OAAO,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AACzC,OAAO,EAAC,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAC,MAAM,UAAU,CAAC;AAEjD,OAAO,EACL,WAAW,EACX,QAAQ,EACR,UAAU,EACV,YAAY,EACZ,SAAS,EACT,aAAa,EACb,OAAO,EACP,SAAS,EACT,QAAQ,EACR,eAAe,EACf,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,YAAY,EACZ,cAAc,EACd,SAAS,EACT,YAAY,EACZ,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,sBAAsB,EACtB,MAAM,EACN,KAAK,EACL,QAAQ,GACT,CAAA"}
|
package/out/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.getSupportedNetworkIds = exports.getIntegrationStatus = exports.getStrategyShortId = exports.getMerklStrategies = exports.almFactories = exports.tokenlist = exports.DefiCategory = exports.StrategyState = exports.subgraphs = exports.integrations = exports.strategies = exports.networks = exports.deployments = void 0;
|
|
6
|
+
exports.getAsset = exports.assets = exports.getSupportedNetworkIds = exports.getIntegrationStatus = exports.getStrategyShortId = exports.getMerklStrategies = exports.almFactories = exports.tokenlist = exports.DefiCategory = exports.StrategyState = exports.subgraphs = exports.integrations = exports.strategies = exports.networks = exports.deployments = void 0;
|
|
7
7
|
const deployments_1 = require("./deployments");
|
|
8
8
|
Object.defineProperty(exports, "deployments", { enumerable: true, get: function () { return deployments_1.deployments; } });
|
|
9
9
|
const networks_1 = require("./networks");
|
|
@@ -24,4 +24,7 @@ const stability_tokenlist_json_1 = __importDefault(require("./stability.tokenlis
|
|
|
24
24
|
exports.tokenlist = stability_tokenlist_json_1.default;
|
|
25
25
|
const addresses_1 = require("./addresses");
|
|
26
26
|
Object.defineProperty(exports, "almFactories", { enumerable: true, get: function () { return addresses_1.almFactories; } });
|
|
27
|
+
const assets_1 = require("./assets");
|
|
28
|
+
Object.defineProperty(exports, "assets", { enumerable: true, get: function () { return assets_1.assets; } });
|
|
29
|
+
Object.defineProperty(exports, "getAsset", { enumerable: true, get: function () { return assets_1.getAsset; } });
|
|
27
30
|
//# sourceMappingURL=index.js.map
|
package/out/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,+CAAyD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,+CAAyD;AAyBvD,4FAzBM,yBAAW,OAyBN;AAxBb,yCAAgF;AAyB9E,yFAzBM,mBAAQ,OAyBN;AAqBR,uGA9CoC,iCAAsB,OA8CpC;AA7CxB,6CAOsB;AAkBpB,2FAxBA,uBAAU,OAwBA;AAQV,8FA9BA,0BAAa,OA8BA;AASb,mGArCA,+BAAkB,OAqCA;AAClB,mGArCA,+BAAkB,OAqCA;AAnCpB,iDAOwB;AAWtB,6FAjBA,2BAAY,OAiBA;AAQZ,6FAxBA,2BAAY,OAwBA;AAUZ,qGA9BA,mCAAoB,OA8BA;AA5BtB,2CAAsC;AAWpC,0FAXM,qBAAS,OAWN;AATX,0FAAkD;AAsBhD,oBAtBK,kCAAS,CAsBL;AArBX,2CAAyC;AAsBvC,6FAtBM,wBAAY,OAsBN;AArBd,qCAAiD;AA0B/C,uFA1BM,eAAM,OA0BN;AAEN,yFA5BqB,iBAAQ,OA4BrB"}
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "Stability Token List",
|
|
3
3
|
"logoURI": "https://stability.farm/logo.svg",
|
|
4
4
|
"keywords": [],
|
|
5
|
-
"timestamp": "2024-06-
|
|
5
|
+
"timestamp": "2024-06-28T00:00:00+00:00",
|
|
6
6
|
"version": {
|
|
7
7
|
"major": 1,
|
|
8
|
-
"minor":
|
|
8
|
+
"minor": 3,
|
|
9
9
|
"patch": 0
|
|
10
10
|
},
|
|
11
11
|
"tags": {
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"lst": {
|
|
21
21
|
"name": "Liquid Staking",
|
|
22
22
|
"description": "Liquid staking token"
|
|
23
|
+
},
|
|
24
|
+
"wNative": {
|
|
25
|
+
"name": "Wrapped native coin",
|
|
26
|
+
"description": "WETH9 or similar contract for wrapping native coin to ERC20 token"
|
|
23
27
|
}
|
|
24
28
|
},
|
|
25
29
|
"tokens": [
|
|
@@ -65,7 +69,8 @@
|
|
|
65
69
|
"symbol": "WMATIC",
|
|
66
70
|
"name": "Wrapped Matic",
|
|
67
71
|
"decimals": 18,
|
|
68
|
-
"logoURI": "https://raw.githubusercontent.com/sushiswap/list/master/logos/token-logos/token/polygon.jpg"
|
|
72
|
+
"logoURI": "https://raw.githubusercontent.com/sushiswap/list/master/logos/token-logos/token/polygon.jpg",
|
|
73
|
+
"tags": ["wNative"]
|
|
69
74
|
},
|
|
70
75
|
{
|
|
71
76
|
"chainId": 137,
|
|
@@ -117,7 +122,7 @@
|
|
|
117
122
|
"name": "Wrapped Ether",
|
|
118
123
|
"decimals": 18,
|
|
119
124
|
"logoURI": "https://raw.githubusercontent.com/sushiswap/list/master/logos/token-logos/token/eth.jpg",
|
|
120
|
-
"tags": ["
|
|
125
|
+
"tags": ["wNative"]
|
|
121
126
|
},
|
|
122
127
|
{
|
|
123
128
|
"chainId": 8453,
|
|
@@ -163,6 +168,24 @@
|
|
|
163
168
|
"decimals": 6,
|
|
164
169
|
"logoURI": "https://basescan.org/token/images/usdbc_ofc_32.png",
|
|
165
170
|
"tags": ["stablecoin", "bridged"]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"chainId": 8453,
|
|
174
|
+
"address": "0x417Ac0e078398C154EdFadD9Ef675d30Be60Af93",
|
|
175
|
+
"symbol": "crvUSD",
|
|
176
|
+
"name": "Curve.Fi USD",
|
|
177
|
+
"decimals": 18,
|
|
178
|
+
"logoURI": "https://polygonscan.com/token/images/crvusd_32.png",
|
|
179
|
+
"tags": ["stablecoin", "bridged"]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"chainId": 8453,
|
|
183
|
+
"address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb",
|
|
184
|
+
"symbol": "DAI",
|
|
185
|
+
"name": "Dai Stablecoin",
|
|
186
|
+
"decimals": 18,
|
|
187
|
+
"logoURI": "https://raw.githubusercontent.com/sushiswap/list/master/logos/token-logos/token/dai.jpg",
|
|
188
|
+
"tags": ["stablecoin", "bridged"]
|
|
166
189
|
}
|
|
167
190
|
]
|
|
168
191
|
}
|