@chain-registry/assets 1.70.135 → 1.70.137
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/esm/mainnet/axelar.js +84 -0
- package/esm/mainnet/kopi.js +24 -24
- package/esm/mainnet/noble.js +48 -48
- package/esm/mainnet/sidechain.js +86 -0
- package/esm/testnet/assets.js +3 -1
- package/esm/testnet/cosmosicsprovidertestnet.js +141 -0
- package/esm/testnet/index.js +2 -0
- package/esm/testnet/mantrachaintestnet2.js +254 -0
- package/esm/testnet/nobletestnet.js +138 -0
- package/esm/testnet/osmosistestnet.js +138 -0
- package/mainnet/axelar.js +84 -0
- package/mainnet/kopi.js +24 -24
- package/mainnet/noble.js +48 -48
- package/mainnet/sidechain.js +86 -0
- package/package.json +5 -5
- package/testnet/assets.js +3 -1
- package/testnet/cosmosicsprovidertestnet.d.ts +3 -0
- package/testnet/cosmosicsprovidertestnet.js +143 -0
- package/testnet/index.d.ts +2 -0
- package/testnet/index.js +3 -1
- package/testnet/mantrachaintestnet2.d.ts +3 -0
- package/testnet/mantrachaintestnet2.js +256 -0
- package/testnet/nobletestnet.js +138 -0
- package/testnet/osmosistestnet.js +138 -0
|
@@ -380,6 +380,75 @@ const assets = {
|
|
|
380
380
|
}
|
|
381
381
|
}]
|
|
382
382
|
},
|
|
383
|
+
{
|
|
384
|
+
description: 'The native token of MANTRA',
|
|
385
|
+
denom_units: [{
|
|
386
|
+
denom: 'ibc/9FFAF10A8821A69C52CF66910A8F75BBC9454FB282167FA7F015BE2753B474C8',
|
|
387
|
+
exponent: 0,
|
|
388
|
+
aliases: ['uom']
|
|
389
|
+
}, {
|
|
390
|
+
denom: 'om',
|
|
391
|
+
exponent: 6
|
|
392
|
+
}],
|
|
393
|
+
type_asset: 'sdk.coin',
|
|
394
|
+
base: 'ibc/9FFAF10A8821A69C52CF66910A8F75BBC9454FB282167FA7F015BE2753B474C8',
|
|
395
|
+
name: 'MANTRA Chain Dukong',
|
|
396
|
+
display: 'om',
|
|
397
|
+
symbol: 'OM',
|
|
398
|
+
keywords: [
|
|
399
|
+
'rwa',
|
|
400
|
+
'wasm',
|
|
401
|
+
'staking',
|
|
402
|
+
'testnet'
|
|
403
|
+
],
|
|
404
|
+
logo_URIs: {
|
|
405
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
406
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg'
|
|
407
|
+
},
|
|
408
|
+
images: [
|
|
409
|
+
{
|
|
410
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
411
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
|
|
412
|
+
theme: {
|
|
413
|
+
circle: true,
|
|
414
|
+
primary_color_hex: '#fba0c1'
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png',
|
|
419
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg',
|
|
420
|
+
theme: {
|
|
421
|
+
dark_mode: true,
|
|
422
|
+
circle: true,
|
|
423
|
+
primary_color_hex: '#342c2c'
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png',
|
|
428
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg',
|
|
429
|
+
theme: {
|
|
430
|
+
dark_mode: false,
|
|
431
|
+
circle: true,
|
|
432
|
+
primary_color_hex: '#342c2c'
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
socials: {
|
|
437
|
+
website: 'https://www.mantrachain.io/',
|
|
438
|
+
twitter: 'https://x.com/MANTRA_Chain'
|
|
439
|
+
},
|
|
440
|
+
traces: [{
|
|
441
|
+
type: 'ibc',
|
|
442
|
+
counterparty: {
|
|
443
|
+
channel_id: 'channel-0',
|
|
444
|
+
base_denom: 'uom',
|
|
445
|
+
chain_name: 'mantrachaintestnet2'
|
|
446
|
+
},
|
|
447
|
+
chain: {
|
|
448
|
+
channel_id: 'channel-9126'
|
|
449
|
+
}
|
|
450
|
+
}]
|
|
451
|
+
},
|
|
383
452
|
{
|
|
384
453
|
description: 'The native token of Mars Protocol',
|
|
385
454
|
denom_units: [{
|
|
@@ -951,6 +1020,75 @@ const assets = {
|
|
|
951
1020
|
}
|
|
952
1021
|
}]
|
|
953
1022
|
},
|
|
1023
|
+
{
|
|
1024
|
+
description: 'The native token of MANTRA',
|
|
1025
|
+
denom_units: [{
|
|
1026
|
+
denom: 'ibc/9FFAF10A8821A69C52CF66910A8F75BBC9454FB282167FA7F015BE2753B474C8',
|
|
1027
|
+
exponent: 0,
|
|
1028
|
+
aliases: ['uom']
|
|
1029
|
+
}, {
|
|
1030
|
+
denom: 'om',
|
|
1031
|
+
exponent: 6
|
|
1032
|
+
}],
|
|
1033
|
+
type_asset: 'sdk.coin',
|
|
1034
|
+
base: 'ibc/9FFAF10A8821A69C52CF66910A8F75BBC9454FB282167FA7F015BE2753B474C8',
|
|
1035
|
+
name: 'MANTRA Chain Dukong',
|
|
1036
|
+
display: 'om',
|
|
1037
|
+
symbol: 'OM',
|
|
1038
|
+
keywords: [
|
|
1039
|
+
'rwa',
|
|
1040
|
+
'wasm',
|
|
1041
|
+
'staking',
|
|
1042
|
+
'testnet'
|
|
1043
|
+
],
|
|
1044
|
+
logo_URIs: {
|
|
1045
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
1046
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg'
|
|
1047
|
+
},
|
|
1048
|
+
images: [
|
|
1049
|
+
{
|
|
1050
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
1051
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
|
|
1052
|
+
theme: {
|
|
1053
|
+
circle: true,
|
|
1054
|
+
primary_color_hex: '#fba0c1'
|
|
1055
|
+
}
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png',
|
|
1059
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg',
|
|
1060
|
+
theme: {
|
|
1061
|
+
dark_mode: true,
|
|
1062
|
+
circle: true,
|
|
1063
|
+
primary_color_hex: '#342c2c'
|
|
1064
|
+
}
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png',
|
|
1068
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg',
|
|
1069
|
+
theme: {
|
|
1070
|
+
dark_mode: false,
|
|
1071
|
+
circle: true,
|
|
1072
|
+
primary_color_hex: '#342c2c'
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
],
|
|
1076
|
+
socials: {
|
|
1077
|
+
website: 'https://www.mantrachain.io/',
|
|
1078
|
+
twitter: 'https://x.com/MANTRA_Chain'
|
|
1079
|
+
},
|
|
1080
|
+
traces: [{
|
|
1081
|
+
type: 'ibc',
|
|
1082
|
+
counterparty: {
|
|
1083
|
+
channel_id: 'channel-0',
|
|
1084
|
+
base_denom: 'uom',
|
|
1085
|
+
chain_name: 'mantrachaintestnet2'
|
|
1086
|
+
},
|
|
1087
|
+
chain: {
|
|
1088
|
+
channel_id: 'channel-9126'
|
|
1089
|
+
}
|
|
1090
|
+
}]
|
|
1091
|
+
},
|
|
954
1092
|
{
|
|
955
1093
|
description: 'The native token of Mars Protocol',
|
|
956
1094
|
denom_units: [{
|