chain-registry 1.2.0 → 1.3.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 +16 -0
- package/main/assets.js +165 -4
- package/main/chains.js +543 -103
- package/main/ibc.js +28 -0
- package/package.json +4 -4
- package/types/index.d.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.3.0...chain-registry@1.3.1) (2022-10-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.2.0...chain-registry@1.3.0) (2022-10-26)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package chain-registry
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.1.0...chain-registry@1.2.0) (2022-10-20)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package chain-registry
|
package/main/assets.js
CHANGED
|
@@ -2310,6 +2310,74 @@ var assets = [{
|
|
|
2310
2310
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png'
|
|
2311
2311
|
},
|
|
2312
2312
|
coingecko_id: 'e-money-eur'
|
|
2313
|
+
}, {
|
|
2314
|
+
description: 'e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.',
|
|
2315
|
+
denom_units: [{
|
|
2316
|
+
denom: 'echf',
|
|
2317
|
+
exponent: 0
|
|
2318
|
+
}, {
|
|
2319
|
+
denom: 'echf',
|
|
2320
|
+
exponent: 6
|
|
2321
|
+
}],
|
|
2322
|
+
base: 'echf',
|
|
2323
|
+
name: 'e-Money CHF',
|
|
2324
|
+
display: 'chf',
|
|
2325
|
+
symbol: 'ECHF',
|
|
2326
|
+
logo_URIs: {
|
|
2327
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png'
|
|
2328
|
+
},
|
|
2329
|
+
coingecko_id: ''
|
|
2330
|
+
}, {
|
|
2331
|
+
description: 'e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.',
|
|
2332
|
+
denom_units: [{
|
|
2333
|
+
denom: 'enok',
|
|
2334
|
+
exponent: 0
|
|
2335
|
+
}, {
|
|
2336
|
+
denom: 'enok',
|
|
2337
|
+
exponent: 6
|
|
2338
|
+
}],
|
|
2339
|
+
base: 'enok',
|
|
2340
|
+
name: 'e-Money NOK',
|
|
2341
|
+
display: 'nok',
|
|
2342
|
+
symbol: 'ENOK',
|
|
2343
|
+
logo_URIs: {
|
|
2344
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png'
|
|
2345
|
+
},
|
|
2346
|
+
coingecko_id: ''
|
|
2347
|
+
}, {
|
|
2348
|
+
description: 'e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.',
|
|
2349
|
+
denom_units: [{
|
|
2350
|
+
denom: 'edkk',
|
|
2351
|
+
exponent: 0
|
|
2352
|
+
}, {
|
|
2353
|
+
denom: 'edkk',
|
|
2354
|
+
exponent: 6
|
|
2355
|
+
}],
|
|
2356
|
+
base: 'edkk',
|
|
2357
|
+
name: 'e-Money DKK',
|
|
2358
|
+
display: 'dkk',
|
|
2359
|
+
symbol: 'EDKK',
|
|
2360
|
+
logo_URIs: {
|
|
2361
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png'
|
|
2362
|
+
},
|
|
2363
|
+
coingecko_id: ''
|
|
2364
|
+
}, {
|
|
2365
|
+
description: 'e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.',
|
|
2366
|
+
denom_units: [{
|
|
2367
|
+
denom: 'esek',
|
|
2368
|
+
exponent: 0
|
|
2369
|
+
}, {
|
|
2370
|
+
denom: 'esek',
|
|
2371
|
+
exponent: 6
|
|
2372
|
+
}],
|
|
2373
|
+
base: 'esek',
|
|
2374
|
+
name: 'e-Money SEK',
|
|
2375
|
+
display: 'sek',
|
|
2376
|
+
symbol: 'ESEK',
|
|
2377
|
+
logo_URIs: {
|
|
2378
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png'
|
|
2379
|
+
},
|
|
2380
|
+
coingecko_id: ''
|
|
2313
2381
|
}]
|
|
2314
2382
|
}, {
|
|
2315
2383
|
$schema: '../assetlist.schema.json',
|
|
@@ -4055,9 +4123,10 @@ var assets = [{
|
|
|
4055
4123
|
display: 'tori',
|
|
4056
4124
|
symbol: 'TORI',
|
|
4057
4125
|
logo_URIs: {
|
|
4058
|
-
|
|
4126
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png',
|
|
4127
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg'
|
|
4059
4128
|
},
|
|
4060
|
-
coingecko_id: ''
|
|
4129
|
+
coingecko_id: 'teritori'
|
|
4061
4130
|
}]
|
|
4062
4131
|
}, {
|
|
4063
4132
|
$schema: '../assetlist.schema.json',
|
|
@@ -7795,6 +7864,28 @@ var assets = [{
|
|
|
7795
7864
|
},
|
|
7796
7865
|
coingecko_id: 'bitcanna'
|
|
7797
7866
|
}]
|
|
7867
|
+
}, {
|
|
7868
|
+
$schema: '../../assetlist.schema.json',
|
|
7869
|
+
chain_name: 'bitcannadev2',
|
|
7870
|
+
assets: [{
|
|
7871
|
+
description: 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.',
|
|
7872
|
+
denom_units: [{
|
|
7873
|
+
denom: 'ubcna',
|
|
7874
|
+
exponent: 0
|
|
7875
|
+
}, {
|
|
7876
|
+
denom: 'bcna',
|
|
7877
|
+
exponent: 6
|
|
7878
|
+
}],
|
|
7879
|
+
base: 'ubcna',
|
|
7880
|
+
display: 'bcna',
|
|
7881
|
+
name: 'BitCanna',
|
|
7882
|
+
symbol: 'BCNA',
|
|
7883
|
+
logo_URIs: {
|
|
7884
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcanna2/images/bcna.png',
|
|
7885
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcanna2/images/bcna.svg'
|
|
7886
|
+
},
|
|
7887
|
+
coingecko_id: 'bitcanna'
|
|
7888
|
+
}]
|
|
7798
7889
|
}, {
|
|
7799
7890
|
$schema: '../../assetlist.schema.json',
|
|
7800
7891
|
chain_name: 'cheqdtestnet',
|
|
@@ -7832,7 +7923,10 @@ var assets = [{
|
|
|
7832
7923
|
base: 'umlg',
|
|
7833
7924
|
name: 'Malaga',
|
|
7834
7925
|
display: 'umlg',
|
|
7835
|
-
symbol: 'MLG'
|
|
7926
|
+
symbol: 'MLG',
|
|
7927
|
+
logo_URIs: {
|
|
7928
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg'
|
|
7929
|
+
}
|
|
7836
7930
|
}, {
|
|
7837
7931
|
description: 'Staking Token',
|
|
7838
7932
|
denom_units: [{
|
|
@@ -7845,7 +7939,10 @@ var assets = [{
|
|
|
7845
7939
|
base: 'uand',
|
|
7846
7940
|
name: 'Malaga Stake',
|
|
7847
7941
|
display: 'uand',
|
|
7848
|
-
symbol: 'AND'
|
|
7942
|
+
symbol: 'AND',
|
|
7943
|
+
logo_URIs: {
|
|
7944
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg'
|
|
7945
|
+
}
|
|
7849
7946
|
}]
|
|
7850
7947
|
}, {
|
|
7851
7948
|
$schema: '../../assetlist.schema.json',
|
|
@@ -7888,6 +7985,27 @@ var assets = [{
|
|
|
7888
7985
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/harpoon/images/kuji.png'
|
|
7889
7986
|
}
|
|
7890
7987
|
}]
|
|
7988
|
+
}, {
|
|
7989
|
+
$schema: '../../assetlist.schema.json',
|
|
7990
|
+
chain_name: 'hypersigntestnet',
|
|
7991
|
+
assets: [{
|
|
7992
|
+
description: 'Native token for Hypersign Identity Network',
|
|
7993
|
+
denom_units: [{
|
|
7994
|
+
denom: 'uhid',
|
|
7995
|
+
exponent: 0
|
|
7996
|
+
}, {
|
|
7997
|
+
denom: 'hid',
|
|
7998
|
+
exponent: 6
|
|
7999
|
+
}],
|
|
8000
|
+
base: 'uhid',
|
|
8001
|
+
display: 'hid',
|
|
8002
|
+
name: 'Hypersign',
|
|
8003
|
+
symbol: 'HID',
|
|
8004
|
+
logo_URIs: {
|
|
8005
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png'
|
|
8006
|
+
},
|
|
8007
|
+
coingecko_id: 'hypersign-identity-token'
|
|
8008
|
+
}]
|
|
7891
8009
|
}, {
|
|
7892
8010
|
$schema: '../../assetlist.schema.json',
|
|
7893
8011
|
chain_name: 'imversedtestnet',
|
|
@@ -7932,6 +8050,28 @@ var assets = [{
|
|
|
7932
8050
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg'
|
|
7933
8051
|
}
|
|
7934
8052
|
}]
|
|
8053
|
+
}, {
|
|
8054
|
+
$schema: '../../assetlist.schema.json',
|
|
8055
|
+
chain_name: 'jackaltestnet',
|
|
8056
|
+
assets: [{
|
|
8057
|
+
description: 'The native staking and governance token of Jackal.',
|
|
8058
|
+
denom_units: [{
|
|
8059
|
+
denom: 'ujkl',
|
|
8060
|
+
exponent: 0
|
|
8061
|
+
}, {
|
|
8062
|
+
denom: 'jkl',
|
|
8063
|
+
exponent: 6
|
|
8064
|
+
}],
|
|
8065
|
+
base: 'ujkl',
|
|
8066
|
+
name: 'Jackal',
|
|
8067
|
+
display: 'jkl',
|
|
8068
|
+
symbol: 'JKL',
|
|
8069
|
+
logo_URIs: {
|
|
8070
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png',
|
|
8071
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg'
|
|
8072
|
+
},
|
|
8073
|
+
coingecko_id: 'jackal'
|
|
8074
|
+
}]
|
|
7935
8075
|
}, {
|
|
7936
8076
|
$schema: '../../assetlist.schema.json',
|
|
7937
8077
|
chain_name: 'junotestnet',
|
|
@@ -8237,6 +8377,27 @@ var assets = [{
|
|
|
8237
8377
|
},
|
|
8238
8378
|
coingecko_id: 'umee'
|
|
8239
8379
|
}]
|
|
8380
|
+
}, {
|
|
8381
|
+
$schema: '../assetlist.schema.json',
|
|
8382
|
+
chain_name: 'unification',
|
|
8383
|
+
assets: [{
|
|
8384
|
+
description: 'Staking and governance coin for the Unification Blockchain',
|
|
8385
|
+
denom_units: [{
|
|
8386
|
+
denom: 'nund',
|
|
8387
|
+
exponent: 0
|
|
8388
|
+
}, {
|
|
8389
|
+
denom: 'FUND',
|
|
8390
|
+
exponent: 9
|
|
8391
|
+
}],
|
|
8392
|
+
base: 'nund',
|
|
8393
|
+
name: 'Unification Network',
|
|
8394
|
+
display: 'FUND',
|
|
8395
|
+
symbol: 'FUND',
|
|
8396
|
+
logo_URIs: {
|
|
8397
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png'
|
|
8398
|
+
},
|
|
8399
|
+
coingecko_id: 'unification'
|
|
8400
|
+
}]
|
|
8240
8401
|
}, {
|
|
8241
8402
|
$schema: '../assetlist.schema.json',
|
|
8242
8403
|
chain_name: 'vidulum',
|