chain-registry 1.63.11 → 1.63.13
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/LICENSE +1 -0
- package/README.md +6 -2
- package/esm/mainnet/akash/assets.js +8 -1
- package/esm/mainnet/assets.js +2 -0
- package/esm/mainnet/canto/assets.js +8 -1
- package/esm/mainnet/celestia/chain.js +18 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/composable/assets.js +21 -3
- package/esm/mainnet/cosmoshub/assets.js +8 -1
- package/esm/mainnet/cronos/assets.js +8 -1
- package/esm/mainnet/evmos/assets.js +8 -1
- package/esm/mainnet/gateway/assets.js +8 -1
- package/esm/mainnet/gravitybridge/assets.js +8 -1
- package/esm/mainnet/heli/assets.js +24 -0
- package/esm/mainnet/heli/chain.js +57 -0
- package/esm/mainnet/heli/index.js +4 -0
- package/esm/mainnet/injective/assets.js +8 -1
- package/esm/mainnet/kava/assets.js +8 -1
- package/esm/mainnet/kujira/assets.js +10 -1
- package/esm/mainnet/lava/chain.js +2 -10
- package/esm/mainnet/loop/chain.js +1 -2
- package/esm/mainnet/migaloo/assets.js +13 -2
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/nomic/chain.js +8 -4
- package/esm/mainnet/omniflixhub/assets.js +6 -1
- package/esm/mainnet/osmosis/assets.js +97 -17
- package/esm/mainnet/osmosis/chain.js +6 -10
- package/esm/mainnet/osmosis/ibc.js +16 -0
- package/esm/mainnet/persistence/assets.js +8 -1
- package/esm/mainnet/sunrise/assets.js +34 -8
- package/esm/mainnet/sunrise/chain.js +3 -3
- package/esm/mainnet/terra/ibc.js +16 -0
- package/esm/mainnet/terra2/assets.js +8 -1
- package/esm/noncosmos/ethereum/assets.js +18 -3
- package/esm/noncosmos/solana/assets.js +7 -1
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/celestiatestnet3/chain.js +18 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/mantrachaintestnet/chain.js +0 -1
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/sgetestnet4/assets.js +6 -1
- package/esm/testnet/sunrisetestnet/assets.js +58 -0
- package/esm/testnet/sunrisetestnet/chain.js +54 -0
- package/esm/testnet/sunrisetestnet/index.js +4 -0
- package/mainnet/akash/assets.js +8 -1
- package/mainnet/assets.js +2 -0
- package/mainnet/canto/assets.js +8 -1
- package/mainnet/celestia/chain.js +18 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/composable/assets.js +21 -3
- package/mainnet/cosmoshub/assets.js +8 -1
- package/mainnet/cronos/assets.js +8 -1
- package/mainnet/evmos/assets.js +8 -1
- package/mainnet/gateway/assets.js +8 -1
- package/mainnet/gravitybridge/assets.js +8 -1
- package/mainnet/heli/assets.d.ts +3 -0
- package/mainnet/heli/assets.js +26 -0
- package/mainnet/heli/chain.d.ts +3 -0
- package/mainnet/heli/chain.js +59 -0
- package/mainnet/heli/index.d.ts +2 -0
- package/mainnet/heli/index.js +10 -0
- package/mainnet/injective/assets.js +8 -1
- package/mainnet/kava/assets.js +8 -1
- package/mainnet/kujira/assets.js +10 -1
- package/mainnet/lava/chain.js +2 -10
- package/mainnet/loop/chain.js +1 -2
- package/mainnet/migaloo/assets.js +13 -2
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +4 -3
- package/mainnet/nomic/chain.js +8 -4
- package/mainnet/omniflixhub/assets.js +6 -1
- package/mainnet/osmosis/assets.js +97 -17
- package/mainnet/osmosis/chain.js +6 -10
- package/mainnet/osmosis/ibc.js +16 -0
- package/mainnet/persistence/assets.js +8 -1
- package/mainnet/sunrise/assets.js +34 -8
- package/mainnet/sunrise/chain.js +3 -3
- package/mainnet/terra/ibc.js +16 -0
- package/mainnet/terra2/assets.js +8 -1
- package/noncosmos/ethereum/assets.js +18 -3
- package/noncosmos/solana/assets.js +7 -1
- package/package.json +4 -4
- package/testnet/assets.js +2 -0
- package/testnet/celestiatestnet3/chain.js +18 -0
- package/testnet/chains.js +2 -0
- package/testnet/mantrachaintestnet/chain.js +0 -1
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +3 -2
- package/testnet/sgetestnet4/assets.js +6 -1
- package/testnet/sunrisetestnet/assets.d.ts +3 -0
- package/testnet/sunrisetestnet/assets.js +60 -0
- package/testnet/sunrisetestnet/chain.d.ts +3 -0
- package/testnet/sunrisetestnet/chain.js +56 -0
- package/testnet/sunrisetestnet/index.d.ts +2 -0
- package/testnet/sunrisetestnet/index.js +10 -0
package/mainnet/named.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export * as gitopia from './gitopia';
|
|
|
67
67
|
export * as govgen from './govgen';
|
|
68
68
|
export * as gravitybridge from './gravitybridge';
|
|
69
69
|
export * as haqq from './haqq';
|
|
70
|
+
export * as heli from './heli';
|
|
70
71
|
export * as highbury from './highbury';
|
|
71
72
|
export * as humans from './humans';
|
|
72
73
|
export * as idep from './idep';
|
package/mainnet/named.js
CHANGED
|
@@ -24,9 +24,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bostrom = exports.bluzelle = exports.bluechip = exports.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura1 = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.althea = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = void 0;
|
|
27
|
+
exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = void 0;
|
|
28
|
+
exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = void 0;
|
|
29
|
+
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = void 0;
|
|
30
30
|
exports._8ball = __importStar(require("./8ball"));
|
|
31
31
|
exports.acrechain = __importStar(require("./acrechain"));
|
|
32
32
|
exports.agoric = __importStar(require("./agoric"));
|
|
@@ -96,6 +96,7 @@ exports.gitopia = __importStar(require("./gitopia"));
|
|
|
96
96
|
exports.govgen = __importStar(require("./govgen"));
|
|
97
97
|
exports.gravitybridge = __importStar(require("./gravitybridge"));
|
|
98
98
|
exports.haqq = __importStar(require("./haqq"));
|
|
99
|
+
exports.heli = __importStar(require("./heli"));
|
|
99
100
|
exports.highbury = __importStar(require("./highbury"));
|
|
100
101
|
exports.humans = __importStar(require("./humans"));
|
|
101
102
|
exports.idep = __importStar(require("./idep"));
|
package/mainnet/nomic/chain.js
CHANGED
|
@@ -31,8 +31,8 @@ const info = {
|
|
|
31
31
|
},
|
|
32
32
|
codebase: {},
|
|
33
33
|
logo_URIs: {
|
|
34
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/
|
|
35
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png',
|
|
35
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg'
|
|
36
36
|
},
|
|
37
37
|
description: 'The superior way to use Bitcoin in Cosmos DeFi. Use IBC to securely and efficiently bridge your BTC to Osmosis and more.',
|
|
38
38
|
apis: {
|
|
@@ -84,8 +84,12 @@ const info = {
|
|
|
84
84
|
}
|
|
85
85
|
],
|
|
86
86
|
images: [{
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
image_sync: {
|
|
88
|
+
chain_name: 'nomic',
|
|
89
|
+
base_denom: 'unom'
|
|
90
|
+
},
|
|
91
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png',
|
|
92
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg'
|
|
89
93
|
}],
|
|
90
94
|
bech32_config: {
|
|
91
95
|
bech32PrefixAccAddr: 'nomic',
|
|
@@ -257,7 +257,12 @@ const info = {
|
|
|
257
257
|
chain_name: 'osmosis',
|
|
258
258
|
base_denom: 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7'
|
|
259
259
|
},
|
|
260
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png'
|
|
260
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png',
|
|
261
|
+
theme: {
|
|
262
|
+
primary_color_hex: '#F7E3C0',
|
|
263
|
+
background_color_hex: '#F7E3C0',
|
|
264
|
+
circle: true
|
|
265
|
+
}
|
|
261
266
|
}, {
|
|
262
267
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png',
|
|
263
268
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.svg'
|
|
@@ -289,14 +289,15 @@ const info = {
|
|
|
289
289
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
|
|
290
290
|
},
|
|
291
291
|
images: [{
|
|
292
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg',
|
|
293
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png'
|
|
294
|
+
}, {
|
|
292
295
|
image_sync: {
|
|
293
296
|
chain_name: 'axelar',
|
|
294
297
|
base_denom: 'uusdt'
|
|
295
298
|
},
|
|
296
299
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
|
|
297
300
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
|
|
298
|
-
}, {
|
|
299
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg'
|
|
300
301
|
}]
|
|
301
302
|
},
|
|
302
303
|
{
|
|
@@ -3086,16 +3087,24 @@ const info = {
|
|
|
3086
3087
|
}
|
|
3087
3088
|
],
|
|
3088
3089
|
logo_URIs: {
|
|
3090
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
3089
3091
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
3090
3092
|
},
|
|
3091
3093
|
images: [{
|
|
3094
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg',
|
|
3095
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png'
|
|
3096
|
+
}, {
|
|
3092
3097
|
image_sync: {
|
|
3093
3098
|
chain_name: 'gravitybridge',
|
|
3094
3099
|
base_denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7'
|
|
3095
3100
|
},
|
|
3096
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
3097
|
-
|
|
3098
|
-
|
|
3101
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
3102
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
3103
|
+
theme: {
|
|
3104
|
+
circle: true,
|
|
3105
|
+
primary_color_hex: '#009393',
|
|
3106
|
+
background_color_hex: '#009393'
|
|
3107
|
+
}
|
|
3099
3108
|
}]
|
|
3100
3109
|
},
|
|
3101
3110
|
{
|
|
@@ -9192,14 +9201,24 @@ const info = {
|
|
|
9192
9201
|
}
|
|
9193
9202
|
],
|
|
9194
9203
|
logo_URIs: {
|
|
9204
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
9195
9205
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
9196
9206
|
},
|
|
9197
9207
|
images: [{
|
|
9208
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg',
|
|
9209
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png'
|
|
9210
|
+
}, {
|
|
9198
9211
|
image_sync: {
|
|
9199
9212
|
chain_name: 'kava',
|
|
9200
9213
|
base_denom: 'erc20/tether/usdt'
|
|
9201
9214
|
},
|
|
9202
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
9215
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
9216
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
9217
|
+
theme: {
|
|
9218
|
+
circle: true,
|
|
9219
|
+
primary_color_hex: '#009393',
|
|
9220
|
+
background_color_hex: '#009393'
|
|
9221
|
+
}
|
|
9203
9222
|
}]
|
|
9204
9223
|
},
|
|
9205
9224
|
{
|
|
@@ -9550,16 +9569,24 @@ const info = {
|
|
|
9550
9569
|
}
|
|
9551
9570
|
],
|
|
9552
9571
|
logo_URIs: {
|
|
9572
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
9553
9573
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
9554
9574
|
},
|
|
9555
9575
|
images: [{
|
|
9576
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg',
|
|
9577
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png'
|
|
9578
|
+
}, {
|
|
9556
9579
|
image_sync: {
|
|
9557
9580
|
chain_name: 'ethereum',
|
|
9558
9581
|
base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
|
|
9559
9582
|
},
|
|
9560
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
9561
|
-
|
|
9562
|
-
|
|
9583
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
9584
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
9585
|
+
theme: {
|
|
9586
|
+
circle: true,
|
|
9587
|
+
primary_color_hex: '#009393',
|
|
9588
|
+
background_color_hex: '#009393'
|
|
9589
|
+
}
|
|
9563
9590
|
}]
|
|
9564
9591
|
},
|
|
9565
9592
|
{
|
|
@@ -10129,7 +10156,12 @@ const info = {
|
|
|
10129
10156
|
base_denom: 'ario'
|
|
10130
10157
|
},
|
|
10131
10158
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png',
|
|
10132
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg'
|
|
10159
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg',
|
|
10160
|
+
theme: {
|
|
10161
|
+
primary_color_hex: '#000000',
|
|
10162
|
+
background_color_hex: '#000000',
|
|
10163
|
+
circle: true
|
|
10164
|
+
}
|
|
10133
10165
|
}]
|
|
10134
10166
|
},
|
|
10135
10167
|
{
|
|
@@ -10213,7 +10245,12 @@ const info = {
|
|
|
10213
10245
|
base_denom: 'usge'
|
|
10214
10246
|
},
|
|
10215
10247
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
|
|
10216
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
|
|
10248
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg',
|
|
10249
|
+
theme: {
|
|
10250
|
+
primary_color_hex: '#C0A15B',
|
|
10251
|
+
background_color_hex: '#00000000',
|
|
10252
|
+
circle: false
|
|
10253
|
+
}
|
|
10217
10254
|
}]
|
|
10218
10255
|
},
|
|
10219
10256
|
{
|
|
@@ -11639,7 +11676,12 @@ const info = {
|
|
|
11639
11676
|
chain_name: 'injective',
|
|
11640
11677
|
base_denom: 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'
|
|
11641
11678
|
},
|
|
11642
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png'
|
|
11679
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png',
|
|
11680
|
+
theme: {
|
|
11681
|
+
primary_color_hex: '#00468E',
|
|
11682
|
+
background_color_hex: '#00468E',
|
|
11683
|
+
circle: true
|
|
11684
|
+
}
|
|
11643
11685
|
}]
|
|
11644
11686
|
},
|
|
11645
11687
|
{
|
|
@@ -11790,7 +11832,12 @@ const info = {
|
|
|
11790
11832
|
chain_name: 'chihuahua',
|
|
11791
11833
|
base_denom: 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat'
|
|
11792
11834
|
},
|
|
11793
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png'
|
|
11835
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png',
|
|
11836
|
+
theme: {
|
|
11837
|
+
primary_color_hex: '#F7E3C0',
|
|
11838
|
+
background_color_hex: '#F7E3C0',
|
|
11839
|
+
circle: true
|
|
11840
|
+
}
|
|
11794
11841
|
}]
|
|
11795
11842
|
},
|
|
11796
11843
|
{
|
|
@@ -13684,6 +13731,10 @@ const info = {
|
|
|
13684
13731
|
}
|
|
13685
13732
|
}],
|
|
13686
13733
|
images: [{
|
|
13734
|
+
image_sync: {
|
|
13735
|
+
chain_name: 'furya',
|
|
13736
|
+
base_denom: 'ufury'
|
|
13737
|
+
},
|
|
13687
13738
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png',
|
|
13688
13739
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg'
|
|
13689
13740
|
}],
|
|
@@ -14424,11 +14475,20 @@ const info = {
|
|
|
14424
14475
|
}
|
|
14425
14476
|
],
|
|
14426
14477
|
images: [{
|
|
14478
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg',
|
|
14479
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png'
|
|
14480
|
+
}, {
|
|
14427
14481
|
image_sync: {
|
|
14428
14482
|
chain_name: 'ethereum',
|
|
14429
14483
|
base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
|
|
14430
14484
|
},
|
|
14431
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
14485
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
14486
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
14487
|
+
theme: {
|
|
14488
|
+
circle: true,
|
|
14489
|
+
primary_color_hex: '#009393',
|
|
14490
|
+
background_color_hex: '#009393'
|
|
14491
|
+
}
|
|
14432
14492
|
}]
|
|
14433
14493
|
},
|
|
14434
14494
|
{
|
|
@@ -15749,11 +15809,20 @@ const info = {
|
|
|
15749
15809
|
}
|
|
15750
15810
|
],
|
|
15751
15811
|
images: [{
|
|
15812
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg',
|
|
15813
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png'
|
|
15814
|
+
}, {
|
|
15752
15815
|
image_sync: {
|
|
15753
15816
|
chain_name: 'solana',
|
|
15754
15817
|
base_denom: 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
|
|
15755
15818
|
},
|
|
15756
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
15819
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
15820
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
15821
|
+
theme: {
|
|
15822
|
+
circle: true,
|
|
15823
|
+
primary_color_hex: '#009393',
|
|
15824
|
+
background_color_hex: '#009393'
|
|
15825
|
+
}
|
|
15757
15826
|
}],
|
|
15758
15827
|
keywords: ['osmosis_unlisted']
|
|
15759
15828
|
},
|
|
@@ -16027,7 +16096,13 @@ const info = {
|
|
|
16027
16096
|
chain_name: 'ethereum',
|
|
16028
16097
|
base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
|
|
16029
16098
|
},
|
|
16030
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
16099
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
16100
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
16101
|
+
theme: {
|
|
16102
|
+
circle: true,
|
|
16103
|
+
primary_color_hex: '#009393',
|
|
16104
|
+
background_color_hex: '#009393'
|
|
16105
|
+
}
|
|
16031
16106
|
}],
|
|
16032
16107
|
keywords: ['osmosis_unlisted']
|
|
16033
16108
|
},
|
|
@@ -16074,7 +16149,12 @@ const info = {
|
|
|
16074
16149
|
chain_name: 'solana',
|
|
16075
16150
|
base_denom: 'ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump'
|
|
16076
16151
|
},
|
|
16077
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png'
|
|
16152
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png',
|
|
16153
|
+
theme: {
|
|
16154
|
+
primary_color_hex: '#FFFFFF',
|
|
16155
|
+
background_color_hex: '#FFFFFF',
|
|
16156
|
+
circle: false
|
|
16157
|
+
}
|
|
16078
16158
|
}]
|
|
16079
16159
|
},
|
|
16080
16160
|
{
|
package/mainnet/osmosis/chain.js
CHANGED
|
@@ -37,18 +37,14 @@ const info = {
|
|
|
37
37
|
cosmwasm_version: 'osmosis-labs/wasmd v0.45.0-osmo'
|
|
38
38
|
},
|
|
39
39
|
images: [{
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
text_position: 'right'
|
|
46
|
-
}, {
|
|
47
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
|
|
48
|
-
layout: 'logomark'
|
|
40
|
+
image_sync: {
|
|
41
|
+
chain_name: 'osmosis',
|
|
42
|
+
base_denom: 'uosmo'
|
|
43
|
+
},
|
|
44
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
49
45
|
}],
|
|
50
46
|
logo_URIs: {
|
|
51
|
-
|
|
47
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
52
48
|
},
|
|
53
49
|
description: 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.',
|
|
54
50
|
apis: {
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -3708,6 +3708,22 @@ const info = [
|
|
|
3708
3708
|
preferred: true,
|
|
3709
3709
|
dex: 'osmosis'
|
|
3710
3710
|
}
|
|
3711
|
+
}, {
|
|
3712
|
+
chain_1: {
|
|
3713
|
+
channel_id: 'channel-78488',
|
|
3714
|
+
port_id: 'transfer'
|
|
3715
|
+
},
|
|
3716
|
+
chain_2: {
|
|
3717
|
+
channel_id: 'channel-108',
|
|
3718
|
+
port_id: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc'
|
|
3719
|
+
},
|
|
3720
|
+
ordering: 'unordered',
|
|
3721
|
+
version: 'ics20-1',
|
|
3722
|
+
tags: {
|
|
3723
|
+
status: 'live',
|
|
3724
|
+
preferred: false,
|
|
3725
|
+
dex: 'osmosis'
|
|
3726
|
+
}
|
|
3711
3727
|
}]
|
|
3712
3728
|
},
|
|
3713
3729
|
{
|
|
@@ -193,9 +193,16 @@ const info = {
|
|
|
193
193
|
chain_name: 'kava',
|
|
194
194
|
base_denom: 'erc20/tether/usdt'
|
|
195
195
|
},
|
|
196
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
196
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
197
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
198
|
+
theme: {
|
|
199
|
+
circle: true,
|
|
200
|
+
primary_color_hex: '#009393',
|
|
201
|
+
background_color_hex: '#009393'
|
|
202
|
+
}
|
|
197
203
|
}],
|
|
198
204
|
logo_URIs: {
|
|
205
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
199
206
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
200
207
|
}
|
|
201
208
|
},
|
|
@@ -4,19 +4,45 @@ const info = {
|
|
|
4
4
|
$schema: '../assetlist.schema.json',
|
|
5
5
|
chain_name: 'sunrise',
|
|
6
6
|
assets: [{
|
|
7
|
-
description: 'The native token of the Sunrise
|
|
7
|
+
description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
|
|
8
8
|
denom_units: [{
|
|
9
|
-
denom: '
|
|
9
|
+
denom: 'uvrise',
|
|
10
10
|
exponent: 0,
|
|
11
|
-
aliases: ['
|
|
11
|
+
aliases: ['microvRISE', 'microvrise']
|
|
12
12
|
}, {
|
|
13
|
-
denom: '
|
|
13
|
+
denom: 'vrise',
|
|
14
14
|
exponent: 6
|
|
15
15
|
}],
|
|
16
|
-
base: '
|
|
17
|
-
name: 'Sunrise',
|
|
18
|
-
display: '
|
|
19
|
-
symbol: '
|
|
16
|
+
base: 'uvrise',
|
|
17
|
+
name: 'Sunrise vRISE',
|
|
18
|
+
display: 'vrise',
|
|
19
|
+
symbol: 'vRISE',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.svg',
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.png'
|
|
27
|
+
}],
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://sunriselayer.io/',
|
|
30
|
+
twitter: 'https://twitter.com/SunriseLayer'
|
|
31
|
+
}
|
|
32
|
+
}, {
|
|
33
|
+
description: 'The native token of the Sunrise network for fees.',
|
|
34
|
+
denom_units: [{
|
|
35
|
+
denom: 'urise',
|
|
36
|
+
exponent: 0,
|
|
37
|
+
aliases: ['microRISE', 'microrise']
|
|
38
|
+
}, {
|
|
39
|
+
denom: 'rise',
|
|
40
|
+
exponent: 6
|
|
41
|
+
}],
|
|
42
|
+
base: 'urise',
|
|
43
|
+
name: 'Sunrise RISE',
|
|
44
|
+
display: 'rise',
|
|
45
|
+
symbol: 'RISE',
|
|
20
46
|
logo_URIs: {
|
|
21
47
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png',
|
|
22
48
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const info = {
|
|
4
4
|
$schema: '../chain.schema.json',
|
|
5
5
|
chain_name: 'sunrise',
|
|
6
|
-
status: '
|
|
6
|
+
status: 'upcoming',
|
|
7
7
|
network_type: 'mainnet',
|
|
8
8
|
website: 'https://sunriselayer.io/',
|
|
9
9
|
pretty_name: 'Sunrise',
|
|
@@ -15,7 +15,7 @@ const info = {
|
|
|
15
15
|
slip44: 118,
|
|
16
16
|
fees: {
|
|
17
17
|
fee_tokens: [{
|
|
18
|
-
denom: '
|
|
18
|
+
denom: 'urise',
|
|
19
19
|
fixed_min_gas_price: 0.002,
|
|
20
20
|
low_gas_price: 0.01,
|
|
21
21
|
average_gas_price: 0.02,
|
|
@@ -24,7 +24,7 @@ const info = {
|
|
|
24
24
|
},
|
|
25
25
|
staking: {
|
|
26
26
|
staking_tokens: [{
|
|
27
|
-
denom: '
|
|
27
|
+
denom: 'uvrise'
|
|
28
28
|
}],
|
|
29
29
|
lock_duration: {
|
|
30
30
|
time: '1209600s'
|
package/mainnet/terra/ibc.js
CHANGED
|
@@ -146,6 +146,22 @@ const info = [
|
|
|
146
146
|
preferred: true,
|
|
147
147
|
dex: 'osmosis'
|
|
148
148
|
}
|
|
149
|
+
}, {
|
|
150
|
+
chain_1: {
|
|
151
|
+
channel_id: 'channel-78488',
|
|
152
|
+
port_id: 'transfer'
|
|
153
|
+
},
|
|
154
|
+
chain_2: {
|
|
155
|
+
channel_id: 'channel-108',
|
|
156
|
+
port_id: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc'
|
|
157
|
+
},
|
|
158
|
+
ordering: 'unordered',
|
|
159
|
+
version: 'ics20-1',
|
|
160
|
+
tags: {
|
|
161
|
+
status: 'live',
|
|
162
|
+
preferred: false,
|
|
163
|
+
dex: 'osmosis'
|
|
164
|
+
}
|
|
149
165
|
}]
|
|
150
166
|
},
|
|
151
167
|
{
|
package/mainnet/terra2/assets.js
CHANGED
|
@@ -895,9 +895,16 @@ const info = {
|
|
|
895
895
|
chain_name: 'kava',
|
|
896
896
|
base_denom: 'erc20/tether/usdt'
|
|
897
897
|
},
|
|
898
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
898
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
899
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
900
|
+
theme: {
|
|
901
|
+
circle: true,
|
|
902
|
+
primary_color_hex: '#009393',
|
|
903
|
+
background_color_hex: '#009393'
|
|
904
|
+
}
|
|
899
905
|
}],
|
|
900
906
|
logo_URIs: {
|
|
907
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
901
908
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
902
909
|
}
|
|
903
910
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = {
|
|
4
|
-
$schema: '
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
5
|
chain_name: 'ethereum',
|
|
6
6
|
assets: [
|
|
7
7
|
{
|
|
@@ -586,12 +586,27 @@ const info = {
|
|
|
586
586
|
},
|
|
587
587
|
provider: 'Tether'
|
|
588
588
|
}],
|
|
589
|
+
coingecko_id: 'tether',
|
|
589
590
|
logo_URIs: {
|
|
591
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
590
592
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
591
593
|
},
|
|
592
|
-
coingecko_id: 'tether',
|
|
593
594
|
images: [{
|
|
594
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
595
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
596
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
597
|
+
theme: {
|
|
598
|
+
circle: true,
|
|
599
|
+
primary_color_hex: '#009393',
|
|
600
|
+
background_color_hex: '#009393'
|
|
601
|
+
}
|
|
602
|
+
}, {
|
|
603
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png',
|
|
604
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg',
|
|
605
|
+
theme: {
|
|
606
|
+
circle: false,
|
|
607
|
+
primary_color_hex: '#50AF95',
|
|
608
|
+
background_color_hex: '#00000000'
|
|
609
|
+
}
|
|
595
610
|
}],
|
|
596
611
|
socials: {
|
|
597
612
|
website: 'https://tether.to/',
|
|
@@ -479,7 +479,13 @@ const info = {
|
|
|
479
479
|
chain_name: 'ethereum',
|
|
480
480
|
base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
|
|
481
481
|
},
|
|
482
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
482
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
|
|
483
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
|
|
484
|
+
theme: {
|
|
485
|
+
circle: true,
|
|
486
|
+
primary_color_hex: '#009393',
|
|
487
|
+
background_color_hex: '#009393'
|
|
488
|
+
}
|
|
483
489
|
}],
|
|
484
490
|
coingecko_id: 'tether',
|
|
485
491
|
socials: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.63.
|
|
3
|
+
"version": "1.63.13",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.46.
|
|
32
|
+
"@chain-registry/utils": "^1.46.10",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.45.
|
|
36
|
+
"@chain-registry/types": "^0.45.10"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "3e3109d5bd37e4cce9d07dd1f3bb7fb7d0a178cf"
|
|
47
47
|
}
|
package/testnet/assets.js
CHANGED
|
@@ -112,6 +112,7 @@ const _sourcetestnet = __importStar(require("./sourcetestnet"));
|
|
|
112
112
|
const _stargazetestnet = __importStar(require("./stargazetestnet"));
|
|
113
113
|
const _statesettestnet = __importStar(require("./statesettestnet"));
|
|
114
114
|
const _stridetestnet = __importStar(require("./stridetestnet"));
|
|
115
|
+
const _sunrisetestnet = __importStar(require("./sunrisetestnet"));
|
|
115
116
|
const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
|
|
116
117
|
const _symphonytestnet = __importStar(require("./symphonytestnet"));
|
|
117
118
|
const _temporaltestnet = __importStar(require("./temporaltestnet"));
|
|
@@ -217,6 +218,7 @@ const assets = [
|
|
|
217
218
|
_stargazetestnet.assets,
|
|
218
219
|
_statesettestnet.assets,
|
|
219
220
|
_stridetestnet.assets,
|
|
221
|
+
_sunrisetestnet.assets,
|
|
220
222
|
_swisstroniktestnet.assets,
|
|
221
223
|
_symphonytestnet.assets,
|
|
222
224
|
_temporaltestnet.assets,
|