chain-registry 0.2.0 → 0.2.1
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/CHANGELOG.md +8 -0
- package/main/assets.js +250 -9
- package/main/chains.js +518 -116
- package/main/ibc.js +204 -0
- package/main/ibc_assets.js +1 -13057
- package/module/assets.js +250 -9
- package/module/chains.js +518 -116
- package/module/ibc.js +204 -0
- package/module/ibc_assets.js +1 -13055
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.2.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.2.0...chain-registry@0.2.1) (2022-08-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [0.2.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.1.0...chain-registry@0.2.0) (2022-08-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package chain-registry
|
package/main/assets.js
CHANGED
|
@@ -1,6 +1,124 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
module.exports = [{
|
|
4
|
+
"$schema": "../assetlist.schema.json",
|
|
5
|
+
"chain_name": "avalanche",
|
|
6
|
+
"assets": [{
|
|
7
|
+
"description": "AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.",
|
|
8
|
+
"denom_units": [{
|
|
9
|
+
"denom": "wei",
|
|
10
|
+
"exponent": 0
|
|
11
|
+
}, {
|
|
12
|
+
"denom": "avax",
|
|
13
|
+
"exponent": 18
|
|
14
|
+
}],
|
|
15
|
+
"base": "wei",
|
|
16
|
+
"name": "Avalanche",
|
|
17
|
+
"display": "avax",
|
|
18
|
+
"symbol": "AVAX",
|
|
19
|
+
"logo_URIs": {
|
|
20
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png",
|
|
21
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg"
|
|
22
|
+
},
|
|
23
|
+
"coingecko_id": "avalanche-2"
|
|
24
|
+
}, {
|
|
25
|
+
"description": "The wrapped ERC-20 representation of AVAX, the native token of Avalanche.",
|
|
26
|
+
"type_asset": "erc20",
|
|
27
|
+
"address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7",
|
|
28
|
+
"denom_units": [{
|
|
29
|
+
"denom": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7",
|
|
30
|
+
"exponent": 0,
|
|
31
|
+
"aliases": ["wavax-wei"]
|
|
32
|
+
}, {
|
|
33
|
+
"denom": "wavax",
|
|
34
|
+
"exponent": 18
|
|
35
|
+
}],
|
|
36
|
+
"base": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7",
|
|
37
|
+
"name": "Wrapped AVAX",
|
|
38
|
+
"display": "wavax",
|
|
39
|
+
"symbol": "WAVAX",
|
|
40
|
+
"logo_URIs": {
|
|
41
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg"
|
|
42
|
+
},
|
|
43
|
+
"coingecko_id": "wrapped-avax"
|
|
44
|
+
}, {
|
|
45
|
+
"description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.",
|
|
46
|
+
"type_asset": "erc20",
|
|
47
|
+
"address": "0xc5fa5669e326da8b2c35540257cd48811f40a36b",
|
|
48
|
+
"denom_units": [{
|
|
49
|
+
"denom": "0xc5fa5669e326da8b2c35540257cd48811f40a36b",
|
|
50
|
+
"exponent": 0,
|
|
51
|
+
"aliases": ["dai-wei"]
|
|
52
|
+
}, {
|
|
53
|
+
"denom": "axldai",
|
|
54
|
+
"exponent": 18
|
|
55
|
+
}],
|
|
56
|
+
"base": "0xc5fa5669e326da8b2c35540257cd48811f40a36b",
|
|
57
|
+
"name": "Axelar Wrapped DAI",
|
|
58
|
+
"display": "axldai",
|
|
59
|
+
"symbol": "axlDAI",
|
|
60
|
+
"logo_URIs": {
|
|
61
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg"
|
|
62
|
+
}
|
|
63
|
+
}, {
|
|
64
|
+
"description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.",
|
|
65
|
+
"type_asset": "erc20",
|
|
66
|
+
"address": "0x4914886dbb8aad7a7456d471eaab10b06d42348d",
|
|
67
|
+
"denom_units": [{
|
|
68
|
+
"denom": "0x4914886dbb8aad7a7456d471eaab10b06d42348d",
|
|
69
|
+
"exponent": 0,
|
|
70
|
+
"aliases": ["frax-wei"]
|
|
71
|
+
}, {
|
|
72
|
+
"denom": "axlfrax",
|
|
73
|
+
"exponent": 18
|
|
74
|
+
}],
|
|
75
|
+
"base": "0x4914886dbb8aad7a7456d471eaab10b06d42348d",
|
|
76
|
+
"name": "Axelar Wrapped Frax",
|
|
77
|
+
"display": "axlfrax",
|
|
78
|
+
"symbol": "axlFRAX",
|
|
79
|
+
"logo_URIs": {
|
|
80
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg"
|
|
81
|
+
}
|
|
82
|
+
}, {
|
|
83
|
+
"description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.",
|
|
84
|
+
"type_asset": "erc20",
|
|
85
|
+
"address": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec",
|
|
86
|
+
"denom_units": [{
|
|
87
|
+
"denom": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec",
|
|
88
|
+
"exponent": 0,
|
|
89
|
+
"aliases": ["uusdc"]
|
|
90
|
+
}, {
|
|
91
|
+
"denom": "axlusdc",
|
|
92
|
+
"exponent": 6
|
|
93
|
+
}],
|
|
94
|
+
"base": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec",
|
|
95
|
+
"name": "Axelar Wrapped USDC",
|
|
96
|
+
"display": "axlusdc",
|
|
97
|
+
"symbol": "axlUSDC",
|
|
98
|
+
"logo_URIs": {
|
|
99
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg"
|
|
100
|
+
}
|
|
101
|
+
}, {
|
|
102
|
+
"description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.",
|
|
103
|
+
"type_asset": "erc20",
|
|
104
|
+
"address": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66",
|
|
105
|
+
"denom_units": [{
|
|
106
|
+
"denom": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66",
|
|
107
|
+
"exponent": 0,
|
|
108
|
+
"aliases": ["uusdt"]
|
|
109
|
+
}, {
|
|
110
|
+
"denom": "axlusdt",
|
|
111
|
+
"exponent": 6
|
|
112
|
+
}],
|
|
113
|
+
"base": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66",
|
|
114
|
+
"name": "Axelar Wrapped USDT",
|
|
115
|
+
"display": "axlusdt",
|
|
116
|
+
"symbol": "axlUSDT",
|
|
117
|
+
"logo_URIs": {
|
|
118
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg"
|
|
119
|
+
}
|
|
120
|
+
}]
|
|
121
|
+
}, {
|
|
4
122
|
"$schema": "../assetlist.schema.json",
|
|
5
123
|
"chain_name": "ethereum",
|
|
6
124
|
"assets": [{
|
|
@@ -1081,7 +1199,8 @@ module.exports = [{
|
|
|
1081
1199
|
"display": "dot",
|
|
1082
1200
|
"symbol": "DOT",
|
|
1083
1201
|
"logo_URIs": {
|
|
1084
|
-
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg"
|
|
1202
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg",
|
|
1203
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png"
|
|
1085
1204
|
},
|
|
1086
1205
|
"coingecko_id": "polkadot"
|
|
1087
1206
|
}, {
|
|
@@ -1098,7 +1217,8 @@ module.exports = [{
|
|
|
1098
1217
|
"display": "wglmr",
|
|
1099
1218
|
"symbol": "WGLMR",
|
|
1100
1219
|
"logo_URIs": {
|
|
1101
|
-
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg"
|
|
1220
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg",
|
|
1221
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png"
|
|
1102
1222
|
},
|
|
1103
1223
|
"coingecko_id": "wrapped-moonbeam"
|
|
1104
1224
|
}]
|
|
@@ -1599,8 +1719,8 @@ module.exports = [{
|
|
|
1599
1719
|
"display": "cre",
|
|
1600
1720
|
"symbol": "CRE",
|
|
1601
1721
|
"logo_URIs": {
|
|
1602
|
-
"png": "https://raw.githubusercontent.com/
|
|
1603
|
-
"svg": "https://raw.githubusercontent.com/
|
|
1722
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png",
|
|
1723
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg"
|
|
1604
1724
|
},
|
|
1605
1725
|
"coingecko_id": "crescent-network"
|
|
1606
1726
|
}, {
|
|
@@ -1619,8 +1739,8 @@ module.exports = [{
|
|
|
1619
1739
|
"display": "bcre",
|
|
1620
1740
|
"symbol": "bCRE",
|
|
1621
1741
|
"logo_URIs": {
|
|
1622
|
-
"png": "https://raw.githubusercontent.com/
|
|
1623
|
-
"svg": "https://raw.githubusercontent.com/
|
|
1742
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png",
|
|
1743
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg"
|
|
1624
1744
|
},
|
|
1625
1745
|
"coingecko_id": "crescent-network"
|
|
1626
1746
|
}]
|
|
@@ -2307,6 +2427,63 @@ module.exports = [{
|
|
|
2307
2427
|
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.png",
|
|
2308
2428
|
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg"
|
|
2309
2429
|
}
|
|
2430
|
+
}, {
|
|
2431
|
+
"description": "DeFi gaming platform built on Juno",
|
|
2432
|
+
"type_asset": "cw20",
|
|
2433
|
+
"address": "juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se",
|
|
2434
|
+
"denom_units": [{
|
|
2435
|
+
"denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se",
|
|
2436
|
+
"exponent": 0
|
|
2437
|
+
}, {
|
|
2438
|
+
"denom": "glto",
|
|
2439
|
+
"exponent": 6
|
|
2440
|
+
}],
|
|
2441
|
+
"base": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se",
|
|
2442
|
+
"name": "Gelotto",
|
|
2443
|
+
"display": "glto",
|
|
2444
|
+
"symbol": "GLTO",
|
|
2445
|
+
"logo_URIs": {
|
|
2446
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png",
|
|
2447
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg"
|
|
2448
|
+
}
|
|
2449
|
+
}, {
|
|
2450
|
+
"description": "Gelotto Year 1 Grand Prize Token",
|
|
2451
|
+
"type_asset": "cw20",
|
|
2452
|
+
"address": "juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh",
|
|
2453
|
+
"denom_units": [{
|
|
2454
|
+
"denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh",
|
|
2455
|
+
"exponent": 0
|
|
2456
|
+
}, {
|
|
2457
|
+
"denom": "gkey",
|
|
2458
|
+
"exponent": 6
|
|
2459
|
+
}],
|
|
2460
|
+
"base": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh",
|
|
2461
|
+
"name": "GKey",
|
|
2462
|
+
"display": "gkey",
|
|
2463
|
+
"symbol": "GKEY",
|
|
2464
|
+
"logo_URIs": {
|
|
2465
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png",
|
|
2466
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg"
|
|
2467
|
+
}
|
|
2468
|
+
}, {
|
|
2469
|
+
"description": "The native token cw20 for BlackHole on Juno Chain",
|
|
2470
|
+
"type_asset": "cw20",
|
|
2471
|
+
"address": "juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca",
|
|
2472
|
+
"denom_units": [{
|
|
2473
|
+
"denom": "cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca",
|
|
2474
|
+
"exponent": 0
|
|
2475
|
+
}, {
|
|
2476
|
+
"denom": "blkh",
|
|
2477
|
+
"exponent": 4
|
|
2478
|
+
}],
|
|
2479
|
+
"base": "cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca",
|
|
2480
|
+
"name": "Blackhole",
|
|
2481
|
+
"display": "blkh",
|
|
2482
|
+
"symbol": "BLKH",
|
|
2483
|
+
"logo_URIs": {
|
|
2484
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.png",
|
|
2485
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.svg"
|
|
2486
|
+
}
|
|
2310
2487
|
}]
|
|
2311
2488
|
}, {
|
|
2312
2489
|
"$schema": "../assetlist.schema.json",
|
|
@@ -2471,6 +2648,26 @@ module.exports = [{
|
|
|
2471
2648
|
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png"
|
|
2472
2649
|
}
|
|
2473
2650
|
}]
|
|
2651
|
+
}, {
|
|
2652
|
+
"$schema": "../assetlist.schema.json",
|
|
2653
|
+
"chain_name": "lumenx",
|
|
2654
|
+
"assets": [{
|
|
2655
|
+
"description": "The native token of Lumen Network",
|
|
2656
|
+
"denom_units": [{
|
|
2657
|
+
"denom": "ulumen",
|
|
2658
|
+
"exponent": 0
|
|
2659
|
+
}, {
|
|
2660
|
+
"denom": "lumen",
|
|
2661
|
+
"exponent": 6
|
|
2662
|
+
}],
|
|
2663
|
+
"base": "ulumen",
|
|
2664
|
+
"name": "LUMEN",
|
|
2665
|
+
"display": "lumen",
|
|
2666
|
+
"symbol": "LUMEN",
|
|
2667
|
+
"logo_URIs": {
|
|
2668
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png"
|
|
2669
|
+
}
|
|
2670
|
+
}]
|
|
2474
2671
|
}, {
|
|
2475
2672
|
"$schema": "../assetlist.schema.json",
|
|
2476
2673
|
"chain_name": "lumnetwork",
|
|
@@ -2599,6 +2796,23 @@ module.exports = [{
|
|
|
2599
2796
|
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg",
|
|
2600
2797
|
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png"
|
|
2601
2798
|
}
|
|
2799
|
+
}, {
|
|
2800
|
+
"description": "GEO token for ODIN Protocol",
|
|
2801
|
+
"denom_units": [{
|
|
2802
|
+
"denom": "mGeo",
|
|
2803
|
+
"exponent": 0
|
|
2804
|
+
}, {
|
|
2805
|
+
"denom": "geo",
|
|
2806
|
+
"exponent": 6
|
|
2807
|
+
}],
|
|
2808
|
+
"base": "mGeo",
|
|
2809
|
+
"name": "GEO",
|
|
2810
|
+
"display": "geo",
|
|
2811
|
+
"symbol": "GEO",
|
|
2812
|
+
"logo_URIs": {
|
|
2813
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg",
|
|
2814
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png"
|
|
2815
|
+
}
|
|
2602
2816
|
}]
|
|
2603
2817
|
}, {
|
|
2604
2818
|
"$schema": "../assetlist.schema.json",
|
|
@@ -2665,7 +2879,8 @@ module.exports = [{
|
|
|
2665
2879
|
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png",
|
|
2666
2880
|
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg"
|
|
2667
2881
|
},
|
|
2668
|
-
"coingecko_id": "osmosis"
|
|
2882
|
+
"coingecko_id": "osmosis",
|
|
2883
|
+
"keywords": ["dex", "staking"]
|
|
2669
2884
|
}, {
|
|
2670
2885
|
"denom_units": [{
|
|
2671
2886
|
"denom": "uion",
|
|
@@ -2682,7 +2897,8 @@ module.exports = [{
|
|
|
2682
2897
|
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png",
|
|
2683
2898
|
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg"
|
|
2684
2899
|
},
|
|
2685
|
-
"coingecko_id": "ion"
|
|
2900
|
+
"coingecko_id": "ion",
|
|
2901
|
+
"keywords": ["memecoin"]
|
|
2686
2902
|
}]
|
|
2687
2903
|
}, {
|
|
2688
2904
|
"$schema": "../assetlist.schema.json",
|
|
@@ -2726,6 +2942,30 @@ module.exports = [{
|
|
|
2726
2942
|
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg"
|
|
2727
2943
|
},
|
|
2728
2944
|
"coingecko_id": "persistence"
|
|
2945
|
+
}, {
|
|
2946
|
+
"description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.",
|
|
2947
|
+
"denom_units": [{
|
|
2948
|
+
"denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444",
|
|
2949
|
+
"exponent": 0,
|
|
2950
|
+
"aliases": ["gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006"]
|
|
2951
|
+
}, {
|
|
2952
|
+
"denom": "pstake",
|
|
2953
|
+
"exponent": 18
|
|
2954
|
+
}],
|
|
2955
|
+
"base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444",
|
|
2956
|
+
"name": "pSTAKE Finance",
|
|
2957
|
+
"display": "pstake",
|
|
2958
|
+
"symbol": "PSTAKE",
|
|
2959
|
+
"ibc": {
|
|
2960
|
+
"source_channel": "channel-24",
|
|
2961
|
+
"dst_channel": "channel-38",
|
|
2962
|
+
"source_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006"
|
|
2963
|
+
},
|
|
2964
|
+
"logo_URIs": {
|
|
2965
|
+
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png",
|
|
2966
|
+
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg"
|
|
2967
|
+
},
|
|
2968
|
+
"coingecko_id": "pstake-finance"
|
|
2729
2969
|
}]
|
|
2730
2970
|
}, {
|
|
2731
2971
|
"$schema": "../assetlist.schema.json",
|
|
@@ -6726,7 +6966,8 @@ module.exports = [{
|
|
|
6726
6966
|
"logo_URIs": {
|
|
6727
6967
|
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png",
|
|
6728
6968
|
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg"
|
|
6729
|
-
}
|
|
6969
|
+
},
|
|
6970
|
+
"coingecko_id": "tgrade"
|
|
6730
6971
|
}]
|
|
6731
6972
|
}, {
|
|
6732
6973
|
"$schema": "../assetlist.schema.json",
|