@chain-registry/osmosis 1.26.4 → 1.28.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/CHANGELOG.md +16 -0
- package/main/asset_list.js +1 -1
- package/main/assets.js +449 -5
- package/main/chain.js +46 -14
- package/package.json +5 -5
- package/types/index.d.ts +5 -5
package/main/assets.js
CHANGED
|
@@ -68,6 +68,7 @@ var assets = {
|
|
|
68
68
|
logo_URIs: {
|
|
69
69
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg'
|
|
70
70
|
},
|
|
71
|
+
coingecko_id: 'ibc-index',
|
|
71
72
|
images: [{
|
|
72
73
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg'
|
|
73
74
|
}]
|
|
@@ -130,6 +131,40 @@ var assets = {
|
|
|
130
131
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png',
|
|
131
132
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg'
|
|
132
133
|
}
|
|
134
|
+
}, {
|
|
135
|
+
denom_units: [{
|
|
136
|
+
denom: 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43',
|
|
137
|
+
exponent: 0,
|
|
138
|
+
aliases: ['avalanche-uusdc']
|
|
139
|
+
}, {
|
|
140
|
+
denom: 'avalanche-usdc',
|
|
141
|
+
exponent: 6
|
|
142
|
+
}],
|
|
143
|
+
type_asset: 'ics20',
|
|
144
|
+
base: 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43',
|
|
145
|
+
name: 'Wormhole USDC(Avalanche)',
|
|
146
|
+
display: 'avalanche-usdc',
|
|
147
|
+
symbol: 'avalanche.USDC.wh',
|
|
148
|
+
traces: [{
|
|
149
|
+
type: 'ibc',
|
|
150
|
+
counterparty: {
|
|
151
|
+
chain_name: 'gateway',
|
|
152
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4',
|
|
153
|
+
channel_id: 'channel-3'
|
|
154
|
+
},
|
|
155
|
+
chain: {
|
|
156
|
+
channel_id: 'channel-2186',
|
|
157
|
+
path: 'transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4'
|
|
158
|
+
}
|
|
159
|
+
}],
|
|
160
|
+
images: [{
|
|
161
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png',
|
|
162
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg'
|
|
163
|
+
}],
|
|
164
|
+
logo_URIs: {
|
|
165
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png',
|
|
166
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg'
|
|
167
|
+
}
|
|
133
168
|
}, {
|
|
134
169
|
denom_units: [{
|
|
135
170
|
denom: 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4',
|
|
@@ -329,9 +364,9 @@ var assets = {
|
|
|
329
364
|
}],
|
|
330
365
|
type_asset: 'ics20',
|
|
331
366
|
base: 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F',
|
|
332
|
-
name: 'Wrapped Bitcoin',
|
|
367
|
+
name: 'Wrapped Bitcoin (Axelar)',
|
|
333
368
|
display: 'wbtc',
|
|
334
|
-
symbol: 'WBTC',
|
|
369
|
+
symbol: 'WBTC.axl',
|
|
335
370
|
traces: [{
|
|
336
371
|
type: 'ibc',
|
|
337
372
|
counterparty: {
|
|
@@ -345,6 +380,9 @@ var assets = {
|
|
|
345
380
|
}
|
|
346
381
|
}],
|
|
347
382
|
images: [{
|
|
383
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg',
|
|
384
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png'
|
|
385
|
+
}, {
|
|
348
386
|
image_sync: {
|
|
349
387
|
chain_name: 'axelar',
|
|
350
388
|
base_denom: 'wbtc-satoshi'
|
|
@@ -352,7 +390,8 @@ var assets = {
|
|
|
352
390
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png'
|
|
353
391
|
}],
|
|
354
392
|
logo_URIs: {
|
|
355
|
-
|
|
393
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg',
|
|
394
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png'
|
|
356
395
|
}
|
|
357
396
|
}, {
|
|
358
397
|
description: 'ERIS liquid staked OSMO',
|
|
@@ -426,6 +465,7 @@ var assets = {
|
|
|
426
465
|
logo_URIs: {
|
|
427
466
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg'
|
|
428
467
|
},
|
|
468
|
+
coingecko_id: 'collateralized-debt-token',
|
|
429
469
|
images: [{
|
|
430
470
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg'
|
|
431
471
|
}]
|
|
@@ -445,6 +485,7 @@ var assets = {
|
|
|
445
485
|
logo_URIs: {
|
|
446
486
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg'
|
|
447
487
|
},
|
|
488
|
+
coingecko_id: 'membrane',
|
|
448
489
|
images: [{
|
|
449
490
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg'
|
|
450
491
|
}]
|
|
@@ -805,6 +846,7 @@ var assets = {
|
|
|
805
846
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png',
|
|
806
847
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg'
|
|
807
848
|
},
|
|
849
|
+
coingecko_id: 'levana-protocol',
|
|
808
850
|
images: [{
|
|
809
851
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png',
|
|
810
852
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg'
|
|
@@ -824,11 +866,22 @@ var assets = {
|
|
|
824
866
|
name: 'milkTIA',
|
|
825
867
|
display: 'milkTIA',
|
|
826
868
|
symbol: 'milkTIA',
|
|
869
|
+
traces: [{
|
|
870
|
+
type: 'liquid-stake',
|
|
871
|
+
counterparty: {
|
|
872
|
+
chain_name: 'celestia',
|
|
873
|
+
base_denom: 'utia'
|
|
874
|
+
},
|
|
875
|
+
provider: 'MilkyWay'
|
|
876
|
+
}],
|
|
827
877
|
logo_URIs: {
|
|
828
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png'
|
|
878
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png',
|
|
879
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg'
|
|
829
880
|
},
|
|
881
|
+
coingecko_id: 'milkyway-staked-tia',
|
|
830
882
|
images: [{
|
|
831
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png'
|
|
883
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png',
|
|
884
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg'
|
|
832
885
|
}]
|
|
833
886
|
}, {
|
|
834
887
|
denom_units: [{
|
|
@@ -869,6 +922,397 @@ var assets = {
|
|
|
869
922
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png',
|
|
870
923
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg'
|
|
871
924
|
}
|
|
925
|
+
}, {
|
|
926
|
+
description: 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.',
|
|
927
|
+
denom_units: [{
|
|
928
|
+
denom: 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99',
|
|
929
|
+
exponent: 0,
|
|
930
|
+
aliases: ['gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e']
|
|
931
|
+
}, {
|
|
932
|
+
denom: 'page',
|
|
933
|
+
exponent: 8
|
|
934
|
+
}],
|
|
935
|
+
type_asset: 'ics20',
|
|
936
|
+
base: 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99',
|
|
937
|
+
name: 'PageDAO',
|
|
938
|
+
display: 'page',
|
|
939
|
+
symbol: 'PAGE.grv',
|
|
940
|
+
traces: [{
|
|
941
|
+
type: 'ibc',
|
|
942
|
+
counterparty: {
|
|
943
|
+
chain_name: 'gravity',
|
|
944
|
+
base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e',
|
|
945
|
+
channel_id: 'channel-10'
|
|
946
|
+
},
|
|
947
|
+
chain: {
|
|
948
|
+
channel_id: 'channel-144',
|
|
949
|
+
path: 'transfer/channel-144/gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e'
|
|
950
|
+
}
|
|
951
|
+
}],
|
|
952
|
+
images: [{
|
|
953
|
+
image_sync: {
|
|
954
|
+
chain_name: 'gravitybridge',
|
|
955
|
+
base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e'
|
|
956
|
+
},
|
|
957
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png',
|
|
958
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg'
|
|
959
|
+
}],
|
|
960
|
+
logo_URIs: {
|
|
961
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png',
|
|
962
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg'
|
|
963
|
+
}
|
|
964
|
+
}, {
|
|
965
|
+
description: "Nomic's native token.",
|
|
966
|
+
denom_units: [{
|
|
967
|
+
denom: 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C',
|
|
968
|
+
exponent: 0,
|
|
969
|
+
aliases: ['unom']
|
|
970
|
+
}, {
|
|
971
|
+
denom: 'nom',
|
|
972
|
+
exponent: 6
|
|
973
|
+
}],
|
|
974
|
+
type_asset: 'ics20',
|
|
975
|
+
base: 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C',
|
|
976
|
+
name: 'Nomic',
|
|
977
|
+
display: 'nomic',
|
|
978
|
+
symbol: 'NOM',
|
|
979
|
+
traces: [{
|
|
980
|
+
type: 'ibc',
|
|
981
|
+
counterparty: {
|
|
982
|
+
chain_name: 'nomic',
|
|
983
|
+
base_denom: 'unom',
|
|
984
|
+
channel_id: 'channel-1'
|
|
985
|
+
},
|
|
986
|
+
chain: {
|
|
987
|
+
channel_id: 'channel-6897',
|
|
988
|
+
path: 'transfer/channel-6897/unom'
|
|
989
|
+
}
|
|
990
|
+
}],
|
|
991
|
+
images: [{
|
|
992
|
+
image_sync: {
|
|
993
|
+
chain_name: 'nomic',
|
|
994
|
+
base_denom: 'unom'
|
|
995
|
+
},
|
|
996
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png',
|
|
997
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg'
|
|
998
|
+
}],
|
|
999
|
+
logo_URIs: {
|
|
1000
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png',
|
|
1001
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg'
|
|
1002
|
+
}
|
|
1003
|
+
}, {
|
|
1004
|
+
description: 'Bitcoin. On Cosmos.',
|
|
1005
|
+
denom_units: [{
|
|
1006
|
+
denom: 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F',
|
|
1007
|
+
exponent: 0,
|
|
1008
|
+
aliases: ['usat']
|
|
1009
|
+
}, {
|
|
1010
|
+
denom: 'nbtc',
|
|
1011
|
+
exponent: 14
|
|
1012
|
+
}],
|
|
1013
|
+
type_asset: 'ics20',
|
|
1014
|
+
base: 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F',
|
|
1015
|
+
name: 'Nomic Bitcoin',
|
|
1016
|
+
display: 'nbtc',
|
|
1017
|
+
symbol: 'nBTC',
|
|
1018
|
+
traces: [{
|
|
1019
|
+
type: 'ibc',
|
|
1020
|
+
counterparty: {
|
|
1021
|
+
chain_name: 'nomic',
|
|
1022
|
+
base_denom: 'usat',
|
|
1023
|
+
channel_id: 'channel-1'
|
|
1024
|
+
},
|
|
1025
|
+
chain: {
|
|
1026
|
+
channel_id: 'channel-6897',
|
|
1027
|
+
path: 'transfer/channel-6897/usat'
|
|
1028
|
+
}
|
|
1029
|
+
}],
|
|
1030
|
+
images: [{
|
|
1031
|
+
image_sync: {
|
|
1032
|
+
chain_name: 'nomic',
|
|
1033
|
+
base_denom: 'usat'
|
|
1034
|
+
},
|
|
1035
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png',
|
|
1036
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg'
|
|
1037
|
+
}],
|
|
1038
|
+
logo_URIs: {
|
|
1039
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png',
|
|
1040
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg'
|
|
1041
|
+
}
|
|
1042
|
+
}, {
|
|
1043
|
+
description: 'AUTISM on Osmosis',
|
|
1044
|
+
denom_units: [{
|
|
1045
|
+
denom: 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D',
|
|
1046
|
+
exponent: 0,
|
|
1047
|
+
aliases: ['uautism']
|
|
1048
|
+
}, {
|
|
1049
|
+
denom: 'autism',
|
|
1050
|
+
exponent: 6
|
|
1051
|
+
}],
|
|
1052
|
+
type_asset: 'ics20',
|
|
1053
|
+
base: 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D',
|
|
1054
|
+
name: 'Injective AUTISM',
|
|
1055
|
+
display: 'autism',
|
|
1056
|
+
symbol: 'AUTISM',
|
|
1057
|
+
traces: [{
|
|
1058
|
+
type: 'ibc',
|
|
1059
|
+
counterparty: {
|
|
1060
|
+
chain_name: 'injective',
|
|
1061
|
+
base_denom: 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism',
|
|
1062
|
+
channel_id: 'channel-8'
|
|
1063
|
+
},
|
|
1064
|
+
chain: {
|
|
1065
|
+
channel_id: 'channel-122',
|
|
1066
|
+
path: 'transfer/channel-122/factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism'
|
|
1067
|
+
}
|
|
1068
|
+
}],
|
|
1069
|
+
images: [{
|
|
1070
|
+
image_sync: {
|
|
1071
|
+
chain_name: 'injective',
|
|
1072
|
+
base_denom: 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism'
|
|
1073
|
+
},
|
|
1074
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png'
|
|
1075
|
+
}],
|
|
1076
|
+
logo_URIs: {
|
|
1077
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png'
|
|
1078
|
+
}
|
|
1079
|
+
}, {
|
|
1080
|
+
description: 'Woof on Osmosis',
|
|
1081
|
+
denom_units: [{
|
|
1082
|
+
denom: 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53',
|
|
1083
|
+
exponent: 0,
|
|
1084
|
+
aliases: ['uwoof']
|
|
1085
|
+
}, {
|
|
1086
|
+
denom: 'WOOF',
|
|
1087
|
+
exponent: 6
|
|
1088
|
+
}],
|
|
1089
|
+
type_asset: 'ics20',
|
|
1090
|
+
base: 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53',
|
|
1091
|
+
name: 'WOOF chihuahua',
|
|
1092
|
+
display: 'WOOF',
|
|
1093
|
+
symbol: 'WOOF',
|
|
1094
|
+
traces: [{
|
|
1095
|
+
type: 'ibc',
|
|
1096
|
+
counterparty: {
|
|
1097
|
+
chain_name: 'chihuahua',
|
|
1098
|
+
base_denom: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof',
|
|
1099
|
+
channel_id: 'channel-7'
|
|
1100
|
+
},
|
|
1101
|
+
chain: {
|
|
1102
|
+
channel_id: 'channel-113',
|
|
1103
|
+
path: 'transfer/channel-113/factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof'
|
|
1104
|
+
}
|
|
1105
|
+
}],
|
|
1106
|
+
logo_URIs: {
|
|
1107
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png'
|
|
1108
|
+
},
|
|
1109
|
+
images: [{
|
|
1110
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png'
|
|
1111
|
+
}]
|
|
1112
|
+
}, {
|
|
1113
|
+
description: 'The native coin of Sneaky Productions.',
|
|
1114
|
+
denom_units: [{
|
|
1115
|
+
denom: 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F',
|
|
1116
|
+
exponent: 0,
|
|
1117
|
+
aliases: ['usneaky']
|
|
1118
|
+
}, {
|
|
1119
|
+
denom: 'sneaky',
|
|
1120
|
+
exponent: 6
|
|
1121
|
+
}],
|
|
1122
|
+
type_asset: 'ics20',
|
|
1123
|
+
base: 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F',
|
|
1124
|
+
name: 'Sneaky Productions',
|
|
1125
|
+
display: 'sneaky',
|
|
1126
|
+
symbol: 'SNEAKY',
|
|
1127
|
+
traces: [{
|
|
1128
|
+
type: 'ibc',
|
|
1129
|
+
counterparty: {
|
|
1130
|
+
chain_name: 'stargaze',
|
|
1131
|
+
base_denom: 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky',
|
|
1132
|
+
channel_id: 'channel-0'
|
|
1133
|
+
},
|
|
1134
|
+
chain: {
|
|
1135
|
+
channel_id: 'channel-75',
|
|
1136
|
+
path: 'transfer/channel-75/factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky'
|
|
1137
|
+
}
|
|
1138
|
+
}],
|
|
1139
|
+
logo_URIs: {
|
|
1140
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png'
|
|
1141
|
+
},
|
|
1142
|
+
images: [{
|
|
1143
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png'
|
|
1144
|
+
}]
|
|
1145
|
+
}, {
|
|
1146
|
+
denom_units: [{
|
|
1147
|
+
denom: 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc',
|
|
1148
|
+
exponent: 0,
|
|
1149
|
+
aliases: ['wbtc-satoshi']
|
|
1150
|
+
}, {
|
|
1151
|
+
denom: 'wbtc',
|
|
1152
|
+
exponent: 8
|
|
1153
|
+
}],
|
|
1154
|
+
address: 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743',
|
|
1155
|
+
type_asset: 'sdk.coin',
|
|
1156
|
+
base: 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc',
|
|
1157
|
+
name: 'Wrapped Bitcoin',
|
|
1158
|
+
display: 'wbtc',
|
|
1159
|
+
symbol: 'WBTC',
|
|
1160
|
+
traces: [{
|
|
1161
|
+
type: 'additional-mintage',
|
|
1162
|
+
counterparty: {
|
|
1163
|
+
chain_name: 'ethereum',
|
|
1164
|
+
base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599'
|
|
1165
|
+
},
|
|
1166
|
+
provider: 'BitGo, Kyber, and Ren'
|
|
1167
|
+
}],
|
|
1168
|
+
images: [{
|
|
1169
|
+
image_sync: {
|
|
1170
|
+
chain_name: 'ethereum',
|
|
1171
|
+
base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599'
|
|
1172
|
+
},
|
|
1173
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
1174
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
1175
|
+
}],
|
|
1176
|
+
logo_URIs: {
|
|
1177
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
1178
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
1179
|
+
}
|
|
1180
|
+
}, {
|
|
1181
|
+
description: "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.",
|
|
1182
|
+
denom_units: [{
|
|
1183
|
+
denom: 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO',
|
|
1184
|
+
exponent: 0
|
|
1185
|
+
}, {
|
|
1186
|
+
denom: 'WOSMO',
|
|
1187
|
+
exponent: 6
|
|
1188
|
+
}],
|
|
1189
|
+
address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3',
|
|
1190
|
+
base: 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO',
|
|
1191
|
+
name: 'WOSMO',
|
|
1192
|
+
display: 'WOSMO',
|
|
1193
|
+
symbol: 'WOSMO',
|
|
1194
|
+
logo_URIs: {
|
|
1195
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png'
|
|
1196
|
+
},
|
|
1197
|
+
images: [{
|
|
1198
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png'
|
|
1199
|
+
}]
|
|
1200
|
+
}, {
|
|
1201
|
+
description: 'NLS on Osmosis',
|
|
1202
|
+
denom_units: [{
|
|
1203
|
+
denom: 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782',
|
|
1204
|
+
exponent: 0,
|
|
1205
|
+
aliases: ['unls']
|
|
1206
|
+
}, {
|
|
1207
|
+
denom: 'nls',
|
|
1208
|
+
exponent: 6
|
|
1209
|
+
}],
|
|
1210
|
+
type_asset: 'ics20',
|
|
1211
|
+
base: 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782',
|
|
1212
|
+
name: 'Nolus',
|
|
1213
|
+
display: 'nls',
|
|
1214
|
+
symbol: 'NLS',
|
|
1215
|
+
traces: [{
|
|
1216
|
+
type: 'ibc',
|
|
1217
|
+
counterparty: {
|
|
1218
|
+
chain_name: 'nolus',
|
|
1219
|
+
base_denom: 'unls',
|
|
1220
|
+
channel_id: 'channel-0'
|
|
1221
|
+
},
|
|
1222
|
+
chain: {
|
|
1223
|
+
channel_id: 'channel-783',
|
|
1224
|
+
path: 'transfer/channel-783/unls'
|
|
1225
|
+
}
|
|
1226
|
+
}],
|
|
1227
|
+
images: [{
|
|
1228
|
+
image_sync: {
|
|
1229
|
+
chain_name: 'nolus',
|
|
1230
|
+
base_denom: 'unls'
|
|
1231
|
+
},
|
|
1232
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png',
|
|
1233
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg'
|
|
1234
|
+
}],
|
|
1235
|
+
logo_URIs: {
|
|
1236
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png',
|
|
1237
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg'
|
|
1238
|
+
}
|
|
1239
|
+
}, {
|
|
1240
|
+
description: 'STRD on Osmosis',
|
|
1241
|
+
denom_units: [{
|
|
1242
|
+
denom: 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4',
|
|
1243
|
+
exponent: 0,
|
|
1244
|
+
aliases: ['ustrd']
|
|
1245
|
+
}, {
|
|
1246
|
+
denom: 'strd',
|
|
1247
|
+
exponent: 6
|
|
1248
|
+
}],
|
|
1249
|
+
type_asset: 'ics20',
|
|
1250
|
+
base: 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4',
|
|
1251
|
+
name: 'Stride',
|
|
1252
|
+
display: 'strd',
|
|
1253
|
+
symbol: 'STRD',
|
|
1254
|
+
traces: [{
|
|
1255
|
+
type: 'ibc',
|
|
1256
|
+
counterparty: {
|
|
1257
|
+
chain_name: 'stride',
|
|
1258
|
+
base_denom: 'ustrd',
|
|
1259
|
+
channel_id: 'channel-5'
|
|
1260
|
+
},
|
|
1261
|
+
chain: {
|
|
1262
|
+
channel_id: 'channel-326',
|
|
1263
|
+
path: 'transfer/channel-326/ustrd'
|
|
1264
|
+
}
|
|
1265
|
+
}],
|
|
1266
|
+
images: [{
|
|
1267
|
+
image_sync: {
|
|
1268
|
+
chain_name: 'stride',
|
|
1269
|
+
base_denom: 'ustrd'
|
|
1270
|
+
},
|
|
1271
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png',
|
|
1272
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg'
|
|
1273
|
+
}],
|
|
1274
|
+
logo_URIs: {
|
|
1275
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png',
|
|
1276
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg'
|
|
1277
|
+
}
|
|
1278
|
+
}, {
|
|
1279
|
+
description: 'Margined Power Token sqTIA',
|
|
1280
|
+
denom_units: [{
|
|
1281
|
+
denom: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia',
|
|
1282
|
+
exponent: 0
|
|
1283
|
+
}, {
|
|
1284
|
+
denom: 'sqtia',
|
|
1285
|
+
exponent: 6
|
|
1286
|
+
}],
|
|
1287
|
+
base: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia',
|
|
1288
|
+
name: 'TIA Squared',
|
|
1289
|
+
display: 'sqtia',
|
|
1290
|
+
symbol: 'sqTIA',
|
|
1291
|
+
logo_URIs: {
|
|
1292
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg'
|
|
1293
|
+
},
|
|
1294
|
+
images: [{
|
|
1295
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg'
|
|
1296
|
+
}]
|
|
1297
|
+
}, {
|
|
1298
|
+
description: 'Sail DAO Token',
|
|
1299
|
+
denom_units: [{
|
|
1300
|
+
denom: 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail',
|
|
1301
|
+
exponent: 0
|
|
1302
|
+
}, {
|
|
1303
|
+
denom: 'sail',
|
|
1304
|
+
exponent: 6
|
|
1305
|
+
}],
|
|
1306
|
+
base: 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail',
|
|
1307
|
+
name: 'Sail',
|
|
1308
|
+
display: 'sail',
|
|
1309
|
+
symbol: 'SAIL',
|
|
1310
|
+
logo_URIs: {
|
|
1311
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png'
|
|
1312
|
+
},
|
|
1313
|
+
images: [{
|
|
1314
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png'
|
|
1315
|
+
}]
|
|
872
1316
|
}]
|
|
873
1317
|
};
|
|
874
1318
|
var _default = assets;
|
package/main/chain.js
CHANGED
|
@@ -37,11 +37,11 @@ var chain = {
|
|
|
37
37
|
},
|
|
38
38
|
codebase: {
|
|
39
39
|
git_repo: 'https://github.com/osmosis-labs/osmosis',
|
|
40
|
-
recommended_version: 'v20.
|
|
41
|
-
compatible_versions: ['v20.
|
|
40
|
+
recommended_version: 'v20.5.0',
|
|
41
|
+
compatible_versions: ['v20.5.0'],
|
|
42
42
|
binaries: {
|
|
43
|
-
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.
|
|
44
|
-
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.
|
|
43
|
+
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64',
|
|
44
|
+
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64'
|
|
45
45
|
},
|
|
46
46
|
cosmos_sdk_version: 'osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785',
|
|
47
47
|
consensus: {
|
|
@@ -245,10 +245,10 @@ var chain = {
|
|
|
245
245
|
next_version_name: 'v20'
|
|
246
246
|
}, {
|
|
247
247
|
name: 'v20',
|
|
248
|
-
tag: 'v20.
|
|
248
|
+
tag: 'v20.5.0',
|
|
249
249
|
height: 12028900,
|
|
250
|
-
recommended_version: 'v20.
|
|
251
|
-
compatible_versions: ['v20.
|
|
250
|
+
recommended_version: 'v20.5.0',
|
|
251
|
+
compatible_versions: ['v20.5.0'],
|
|
252
252
|
cosmos_sdk_version: 'osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785',
|
|
253
253
|
consensus: {
|
|
254
254
|
type: 'tendermint',
|
|
@@ -259,8 +259,8 @@ var chain = {
|
|
|
259
259
|
ibc_go_version: '4.5.1',
|
|
260
260
|
ics_enabled: ['ics20-1'],
|
|
261
261
|
binaries: {
|
|
262
|
-
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.
|
|
263
|
-
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.
|
|
262
|
+
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64?checksum=sha256:f9ff6176e32499f22b20288c71dbc802556eb5399baef23de164fe6158a55a69',
|
|
263
|
+
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64?checksum=sha256:99359257ff81d21b55b685924a74473d532cbc5af196a672a784bf13dad06d26'
|
|
264
264
|
}
|
|
265
265
|
}]
|
|
266
266
|
},
|
|
@@ -268,9 +268,12 @@ var chain = {
|
|
|
268
268
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png',
|
|
269
269
|
theme: {
|
|
270
270
|
primary_color_hex: '#231D4B'
|
|
271
|
-
}
|
|
271
|
+
},
|
|
272
|
+
layout: 'logo',
|
|
273
|
+
text_position: 'right'
|
|
272
274
|
}, {
|
|
273
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
275
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
|
|
276
|
+
layout: 'logomark'
|
|
274
277
|
}],
|
|
275
278
|
logo_URIs: {
|
|
276
279
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
|
|
@@ -302,9 +305,9 @@ var chain = {
|
|
|
302
305
|
address: 'seed-osmosis.freshstaking.com:31656',
|
|
303
306
|
provider: 'FreshSTAKING'
|
|
304
307
|
}, {
|
|
305
|
-
id: '
|
|
308
|
+
id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6',
|
|
306
309
|
address: 'seeds.whispernode.com:12556',
|
|
307
|
-
provider: 'WhisperNode🤐'
|
|
310
|
+
provider: 'WhisperNode 🤐'
|
|
308
311
|
}, {
|
|
309
312
|
id: '38ab18cb2ea1dfeb6232b429e1508f56b6ae5031',
|
|
310
313
|
address: 'seed-osmosis-01.stakeflow.io:65535',
|
|
@@ -317,6 +320,10 @@ var chain = {
|
|
|
317
320
|
id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074',
|
|
318
321
|
address: 'seed.publicnode.com:26656',
|
|
319
322
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
323
|
+
}, {
|
|
324
|
+
id: '2cb8dd6195c65458e3c18505bb70ce2ff624f85c',
|
|
325
|
+
address: 'seed.osmosis.validatus.com:2000',
|
|
326
|
+
provider: 'Validatus'
|
|
320
327
|
}],
|
|
321
328
|
persistent_peers: [{
|
|
322
329
|
id: '4d9ac3510d9f5cfc975a28eb2a7b8da866f7bc47',
|
|
@@ -423,6 +430,12 @@ var chain = {
|
|
|
423
430
|
}, {
|
|
424
431
|
address: 'https://osmosis-rpc.reece.sh',
|
|
425
432
|
provider: 'Reecepbcups'
|
|
433
|
+
}, {
|
|
434
|
+
address: 'https://rpc.osmosis.validatus.com',
|
|
435
|
+
provider: 'Validatus'
|
|
436
|
+
}, {
|
|
437
|
+
address: 'https://rpc.osmosis.bronbro.io:443',
|
|
438
|
+
provider: 'Bro_n_Bro'
|
|
426
439
|
}],
|
|
427
440
|
rest: [{
|
|
428
441
|
address: 'https://lcd.osmosis.zone/',
|
|
@@ -462,7 +475,7 @@ var chain = {
|
|
|
462
475
|
provider: 'w3coins'
|
|
463
476
|
}, {
|
|
464
477
|
address: 'https://lcd-osmosis.whispernode.com:443',
|
|
465
|
-
provider: 'WhisperNode🤐'
|
|
478
|
+
provider: 'WhisperNode 🤐'
|
|
466
479
|
}, {
|
|
467
480
|
address: 'https://api-osmosis.mms.team',
|
|
468
481
|
provider: 'MMS'
|
|
@@ -481,6 +494,12 @@ var chain = {
|
|
|
481
494
|
}, {
|
|
482
495
|
address: 'https://osmosis-api.reece.sh',
|
|
483
496
|
provider: 'Reecepbcups'
|
|
497
|
+
}, {
|
|
498
|
+
address: 'https://api.osmosis.validatus.com:443',
|
|
499
|
+
provider: 'Validatus'
|
|
500
|
+
}, {
|
|
501
|
+
address: 'https://lcd.osmosis.bronbro.io:443',
|
|
502
|
+
provider: 'Bro_n_Bro'
|
|
484
503
|
}, {
|
|
485
504
|
address: 'https://osmosis.stakesystems.io/',
|
|
486
505
|
provider: 'stakesystems'
|
|
@@ -524,6 +543,15 @@ var chain = {
|
|
|
524
543
|
}, {
|
|
525
544
|
address: 'osmosis-mainnet.grpc.l0vd.com:80',
|
|
526
545
|
provider: 'L0vd.com ❤️'
|
|
546
|
+
}, {
|
|
547
|
+
address: 'grpc-osmosis.whispernode.com:443',
|
|
548
|
+
provider: 'WhisperNode 🤐'
|
|
549
|
+
}, {
|
|
550
|
+
address: 'grpc.osmosis.validatus.com:443',
|
|
551
|
+
provider: 'Validatus'
|
|
552
|
+
}, {
|
|
553
|
+
address: 'https://grpc.osmosis.bronbro.io:443',
|
|
554
|
+
provider: 'Bro_n_Bro'
|
|
527
555
|
}]
|
|
528
556
|
},
|
|
529
557
|
explorers: [{
|
|
@@ -572,6 +600,10 @@ var chain = {
|
|
|
572
600
|
kind: 'L0vd.com ❤️',
|
|
573
601
|
url: 'https://explorers.l0vd.com/osmosis-mainnet',
|
|
574
602
|
tx_page: 'https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}'
|
|
603
|
+
}, {
|
|
604
|
+
kind: 'Chainscope',
|
|
605
|
+
url: 'https://chainsco.pe/osmosis',
|
|
606
|
+
tx_page: 'https://chainsco.pe/osmosis/tx/${txHash}'
|
|
575
607
|
}],
|
|
576
608
|
keywords: ['dex']
|
|
577
609
|
};
|