@chain-registry/osmosis 1.15.0 → 1.16.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 +8 -0
- package/README.md +11 -0
- package/main/asset_list.js +693 -7
- package/main/assets.js +15 -0
- package/main/chain.js +56 -14
- package/package.json +4 -4
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
|
+
# [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.15.0...@chain-registry/osmosis@1.16.0) (2023-06-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/osmosis
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.14.0...@chain-registry/osmosis@1.15.0) (2023-05-24)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @chain-registry/osmosis
|
package/README.md
CHANGED
|
@@ -54,6 +54,17 @@ console.log(asset_list);
|
|
|
54
54
|
}
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
## Related
|
|
58
|
+
|
|
59
|
+
Checkout these related projects:
|
|
60
|
+
|
|
61
|
+
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) for generated CosmWasm contract Typescript classes
|
|
62
|
+
* [@osmonauts/telescope](https://github.com/osmosis-labs/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
|
|
63
|
+
* [chain-registry](https://github.com/cosmology-tech/chain-registry) an npm module for the official Cosmos chain-registry.
|
|
64
|
+
* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) A wallet connector for the Cosmos ⚛️
|
|
65
|
+
* [create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) set up a modern Cosmos app by running one command.
|
|
66
|
+
* [starship](https://github.com/cosmology-tech/starship) a k8s-based unified development environment for Cosmos Ecosystem
|
|
67
|
+
|
|
57
68
|
## Credits
|
|
58
69
|
|
|
59
70
|
🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.tech/validator)
|
package/main/asset_list.js
CHANGED
|
@@ -184,6 +184,39 @@ var asset_list = {
|
|
|
184
184
|
channel_id: 'channel-320'
|
|
185
185
|
}
|
|
186
186
|
}]
|
|
187
|
+
}, {
|
|
188
|
+
description: 'The native staking and governance token of the AIOZ Network.',
|
|
189
|
+
denom_units: [{
|
|
190
|
+
denom: 'ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F',
|
|
191
|
+
exponent: 0,
|
|
192
|
+
aliases: ['attoaioz']
|
|
193
|
+
}, {
|
|
194
|
+
denom: 'nanoaioz',
|
|
195
|
+
exponent: 9
|
|
196
|
+
}, {
|
|
197
|
+
denom: 'aioz',
|
|
198
|
+
exponent: 18
|
|
199
|
+
}],
|
|
200
|
+
base: 'ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F',
|
|
201
|
+
name: 'AIOZ',
|
|
202
|
+
display: 'aioz',
|
|
203
|
+
symbol: 'AIOZ',
|
|
204
|
+
logo_URIs: {
|
|
205
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg',
|
|
206
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png'
|
|
207
|
+
},
|
|
208
|
+
coingecko_id: 'aioz-network',
|
|
209
|
+
traces: [{
|
|
210
|
+
type: 'ibc',
|
|
211
|
+
counterparty: {
|
|
212
|
+
channel_id: 'channel-1',
|
|
213
|
+
base_denom: 'attoaioz',
|
|
214
|
+
chain_name: 'aioz'
|
|
215
|
+
},
|
|
216
|
+
chain: {
|
|
217
|
+
channel_id: 'channel-779'
|
|
218
|
+
}
|
|
219
|
+
}]
|
|
187
220
|
}, {
|
|
188
221
|
description: "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.",
|
|
189
222
|
denom_units: [{
|
|
@@ -358,8 +391,7 @@ var asset_list = {
|
|
|
358
391
|
}
|
|
359
392
|
}],
|
|
360
393
|
logo_URIs: {
|
|
361
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
362
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png'
|
|
394
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg'
|
|
363
395
|
}
|
|
364
396
|
}, {
|
|
365
397
|
description: 'Dai stablecoin on Axelar',
|
|
@@ -1014,6 +1046,184 @@ var asset_list = {
|
|
|
1014
1046
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg',
|
|
1015
1047
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png'
|
|
1016
1048
|
}
|
|
1049
|
+
}, {
|
|
1050
|
+
description: 'Wrapped FIL on Axelar',
|
|
1051
|
+
denom_units: [{
|
|
1052
|
+
denom: 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D',
|
|
1053
|
+
exponent: 0,
|
|
1054
|
+
aliases: ['wfil-wei']
|
|
1055
|
+
}, {
|
|
1056
|
+
denom: 'fil',
|
|
1057
|
+
exponent: 18
|
|
1058
|
+
}],
|
|
1059
|
+
base: 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D',
|
|
1060
|
+
name: 'Wrapped FIL from Filecoin',
|
|
1061
|
+
display: 'fil',
|
|
1062
|
+
symbol: 'axlFIL',
|
|
1063
|
+
traces: [{
|
|
1064
|
+
type: 'ibc',
|
|
1065
|
+
counterparty: {
|
|
1066
|
+
channel_id: 'channel-3',
|
|
1067
|
+
base_denom: 'wfil-wei',
|
|
1068
|
+
chain_name: 'axelar'
|
|
1069
|
+
},
|
|
1070
|
+
chain: {
|
|
1071
|
+
channel_id: 'channel-208'
|
|
1072
|
+
}
|
|
1073
|
+
}],
|
|
1074
|
+
logo_URIs: {
|
|
1075
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg',
|
|
1076
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png'
|
|
1077
|
+
}
|
|
1078
|
+
}, {
|
|
1079
|
+
description: 'Arbitrum on Axelar',
|
|
1080
|
+
denom_units: [{
|
|
1081
|
+
denom: 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6',
|
|
1082
|
+
exponent: 0,
|
|
1083
|
+
aliases: ['arb-wei']
|
|
1084
|
+
}, {
|
|
1085
|
+
denom: 'arb',
|
|
1086
|
+
exponent: 18
|
|
1087
|
+
}],
|
|
1088
|
+
base: 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6',
|
|
1089
|
+
name: 'Arbitrum',
|
|
1090
|
+
display: 'arb',
|
|
1091
|
+
symbol: 'ARB',
|
|
1092
|
+
traces: [{
|
|
1093
|
+
type: 'ibc',
|
|
1094
|
+
counterparty: {
|
|
1095
|
+
channel_id: 'channel-3',
|
|
1096
|
+
base_denom: 'arb-wei',
|
|
1097
|
+
chain_name: 'axelar'
|
|
1098
|
+
},
|
|
1099
|
+
chain: {
|
|
1100
|
+
channel_id: 'channel-208'
|
|
1101
|
+
}
|
|
1102
|
+
}],
|
|
1103
|
+
logo_URIs: {
|
|
1104
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png',
|
|
1105
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg'
|
|
1106
|
+
}
|
|
1107
|
+
}, {
|
|
1108
|
+
denom_units: [{
|
|
1109
|
+
denom: 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B',
|
|
1110
|
+
exponent: 0,
|
|
1111
|
+
aliases: ['pepe-wei']
|
|
1112
|
+
}, {
|
|
1113
|
+
denom: 'pepe',
|
|
1114
|
+
exponent: 18
|
|
1115
|
+
}],
|
|
1116
|
+
base: 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B',
|
|
1117
|
+
name: 'Pepe',
|
|
1118
|
+
display: 'pepe',
|
|
1119
|
+
symbol: 'PEPE',
|
|
1120
|
+
traces: [{
|
|
1121
|
+
type: 'ibc',
|
|
1122
|
+
counterparty: {
|
|
1123
|
+
channel_id: 'channel-3',
|
|
1124
|
+
base_denom: 'pepe-wei',
|
|
1125
|
+
chain_name: 'axelar'
|
|
1126
|
+
},
|
|
1127
|
+
chain: {
|
|
1128
|
+
channel_id: 'channel-208'
|
|
1129
|
+
}
|
|
1130
|
+
}]
|
|
1131
|
+
}, {
|
|
1132
|
+
denom_units: [{
|
|
1133
|
+
denom: 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A',
|
|
1134
|
+
exponent: 0,
|
|
1135
|
+
aliases: ['cbeth-wei']
|
|
1136
|
+
}, {
|
|
1137
|
+
denom: 'cbeth',
|
|
1138
|
+
exponent: 18
|
|
1139
|
+
}],
|
|
1140
|
+
base: 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A',
|
|
1141
|
+
name: 'Coinbase Wrapped Staked ETH',
|
|
1142
|
+
display: 'cbeth',
|
|
1143
|
+
symbol: 'cbETH',
|
|
1144
|
+
traces: [{
|
|
1145
|
+
type: 'ibc',
|
|
1146
|
+
counterparty: {
|
|
1147
|
+
channel_id: 'channel-3',
|
|
1148
|
+
base_denom: 'cbeth-wei',
|
|
1149
|
+
chain_name: 'axelar'
|
|
1150
|
+
},
|
|
1151
|
+
chain: {
|
|
1152
|
+
channel_id: 'channel-208'
|
|
1153
|
+
}
|
|
1154
|
+
}]
|
|
1155
|
+
}, {
|
|
1156
|
+
denom_units: [{
|
|
1157
|
+
denom: 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222',
|
|
1158
|
+
exponent: 0,
|
|
1159
|
+
aliases: ['reth-wei']
|
|
1160
|
+
}, {
|
|
1161
|
+
denom: 'reth',
|
|
1162
|
+
exponent: 18
|
|
1163
|
+
}],
|
|
1164
|
+
base: 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222',
|
|
1165
|
+
name: 'Rocket Pool Ether',
|
|
1166
|
+
display: 'reth',
|
|
1167
|
+
symbol: 'rETH',
|
|
1168
|
+
traces: [{
|
|
1169
|
+
type: 'ibc',
|
|
1170
|
+
counterparty: {
|
|
1171
|
+
channel_id: 'channel-3',
|
|
1172
|
+
base_denom: 'reth-wei',
|
|
1173
|
+
chain_name: 'axelar'
|
|
1174
|
+
},
|
|
1175
|
+
chain: {
|
|
1176
|
+
channel_id: 'channel-208'
|
|
1177
|
+
}
|
|
1178
|
+
}]
|
|
1179
|
+
}, {
|
|
1180
|
+
denom_units: [{
|
|
1181
|
+
denom: 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46',
|
|
1182
|
+
exponent: 0,
|
|
1183
|
+
aliases: ['sfrxeth-wei']
|
|
1184
|
+
}, {
|
|
1185
|
+
denom: 'sfrxeth',
|
|
1186
|
+
exponent: 18
|
|
1187
|
+
}],
|
|
1188
|
+
base: 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46',
|
|
1189
|
+
name: 'Staked Frax Ether',
|
|
1190
|
+
display: 'sfrxeth',
|
|
1191
|
+
symbol: 'sfrxETH',
|
|
1192
|
+
traces: [{
|
|
1193
|
+
type: 'ibc',
|
|
1194
|
+
counterparty: {
|
|
1195
|
+
channel_id: 'channel-3',
|
|
1196
|
+
base_denom: 'sfrxeth-wei',
|
|
1197
|
+
chain_name: 'axelar'
|
|
1198
|
+
},
|
|
1199
|
+
chain: {
|
|
1200
|
+
channel_id: 'channel-208'
|
|
1201
|
+
}
|
|
1202
|
+
}]
|
|
1203
|
+
}, {
|
|
1204
|
+
denom_units: [{
|
|
1205
|
+
denom: 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C',
|
|
1206
|
+
exponent: 0,
|
|
1207
|
+
aliases: ['wsteth-wei']
|
|
1208
|
+
}, {
|
|
1209
|
+
denom: 'wsteth',
|
|
1210
|
+
exponent: 18
|
|
1211
|
+
}],
|
|
1212
|
+
base: 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C',
|
|
1213
|
+
name: 'Wrapped Lido Staked Ether',
|
|
1214
|
+
display: 'wsteth',
|
|
1215
|
+
symbol: 'wstETH',
|
|
1216
|
+
traces: [{
|
|
1217
|
+
type: 'ibc',
|
|
1218
|
+
counterparty: {
|
|
1219
|
+
channel_id: 'channel-3',
|
|
1220
|
+
base_denom: 'wsteth-wei',
|
|
1221
|
+
chain_name: 'axelar'
|
|
1222
|
+
},
|
|
1223
|
+
chain: {
|
|
1224
|
+
channel_id: 'channel-208'
|
|
1225
|
+
}
|
|
1226
|
+
}]
|
|
1017
1227
|
}, {
|
|
1018
1228
|
description: 'The native token of BandChain',
|
|
1019
1229
|
denom_units: [{
|
|
@@ -1555,6 +1765,98 @@ var asset_list = {
|
|
|
1555
1765
|
channel_id: 'channel-73'
|
|
1556
1766
|
}
|
|
1557
1767
|
}]
|
|
1768
|
+
}, {
|
|
1769
|
+
description: 'The native token of Bluzelle',
|
|
1770
|
+
denom_units: [{
|
|
1771
|
+
denom: 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8',
|
|
1772
|
+
exponent: 0,
|
|
1773
|
+
aliases: ['ubnt']
|
|
1774
|
+
}, {
|
|
1775
|
+
denom: 'bnt',
|
|
1776
|
+
exponent: 6,
|
|
1777
|
+
aliases: ['blz']
|
|
1778
|
+
}],
|
|
1779
|
+
base: 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8',
|
|
1780
|
+
name: 'Bluzelle',
|
|
1781
|
+
display: 'bnt',
|
|
1782
|
+
symbol: 'BLZ',
|
|
1783
|
+
logo_URIs: {
|
|
1784
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png',
|
|
1785
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg'
|
|
1786
|
+
},
|
|
1787
|
+
coingecko_id: 'bluzelle',
|
|
1788
|
+
keywords: ['bluzelle', 'game'],
|
|
1789
|
+
traces: [{
|
|
1790
|
+
type: 'ibc',
|
|
1791
|
+
counterparty: {
|
|
1792
|
+
channel_id: 'channel-0',
|
|
1793
|
+
base_denom: 'ubnt',
|
|
1794
|
+
chain_name: 'bluzelle'
|
|
1795
|
+
},
|
|
1796
|
+
chain: {
|
|
1797
|
+
channel_id: 'channel-763'
|
|
1798
|
+
}
|
|
1799
|
+
}]
|
|
1800
|
+
}, {
|
|
1801
|
+
description: "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem",
|
|
1802
|
+
denom_units: [{
|
|
1803
|
+
denom: 'ibc/FDFCC8A906432FA7EFBA430062DA860883F5DDC77B8D64AFA2EE6CD5DC54B6A2',
|
|
1804
|
+
exponent: 0,
|
|
1805
|
+
aliases: ['uelt']
|
|
1806
|
+
}, {
|
|
1807
|
+
denom: 'elt',
|
|
1808
|
+
exponent: 6
|
|
1809
|
+
}],
|
|
1810
|
+
base: 'ibc/FDFCC8A906432FA7EFBA430062DA860883F5DDC77B8D64AFA2EE6CD5DC54B6A2',
|
|
1811
|
+
name: 'ELT',
|
|
1812
|
+
display: 'elt',
|
|
1813
|
+
symbol: 'ELT',
|
|
1814
|
+
logo_URIs: {
|
|
1815
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/elt.png'
|
|
1816
|
+
},
|
|
1817
|
+
coingecko_id: '',
|
|
1818
|
+
keywords: ['elt'],
|
|
1819
|
+
traces: [{
|
|
1820
|
+
type: 'ibc',
|
|
1821
|
+
counterparty: {
|
|
1822
|
+
channel_id: 'channel-0',
|
|
1823
|
+
base_denom: 'uelt',
|
|
1824
|
+
chain_name: 'bluzelle'
|
|
1825
|
+
},
|
|
1826
|
+
chain: {
|
|
1827
|
+
channel_id: 'channel-763'
|
|
1828
|
+
}
|
|
1829
|
+
}]
|
|
1830
|
+
}, {
|
|
1831
|
+
description: "The game token of Bluzelle's Gamma 4 Gaming Ecosystem",
|
|
1832
|
+
denom_units: [{
|
|
1833
|
+
denom: 'ibc/6A71FD886C62ECADA07ECFD24542C5E87C316A590737F5CE6FC37E3D258CD106',
|
|
1834
|
+
exponent: 0,
|
|
1835
|
+
aliases: ['ug4']
|
|
1836
|
+
}, {
|
|
1837
|
+
denom: 'g4',
|
|
1838
|
+
exponent: 6
|
|
1839
|
+
}],
|
|
1840
|
+
base: 'ibc/6A71FD886C62ECADA07ECFD24542C5E87C316A590737F5CE6FC37E3D258CD106',
|
|
1841
|
+
name: 'G4',
|
|
1842
|
+
display: 'g4',
|
|
1843
|
+
symbol: 'G4',
|
|
1844
|
+
logo_URIs: {
|
|
1845
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.png'
|
|
1846
|
+
},
|
|
1847
|
+
coingecko_id: '',
|
|
1848
|
+
keywords: ['g4'],
|
|
1849
|
+
traces: [{
|
|
1850
|
+
type: 'ibc',
|
|
1851
|
+
counterparty: {
|
|
1852
|
+
channel_id: 'channel-0',
|
|
1853
|
+
base_denom: 'ug4',
|
|
1854
|
+
chain_name: 'bluzelle'
|
|
1855
|
+
},
|
|
1856
|
+
chain: {
|
|
1857
|
+
channel_id: 'channel-763'
|
|
1858
|
+
}
|
|
1859
|
+
}]
|
|
1558
1860
|
}, {
|
|
1559
1861
|
description: 'The staking token of Bostrom',
|
|
1560
1862
|
denom_units: [{
|
|
@@ -3468,7 +3770,8 @@ var asset_list = {
|
|
|
3468
3770
|
display: 'ampKUJI',
|
|
3469
3771
|
symbol: 'ampKUJI',
|
|
3470
3772
|
logo_URIs: {
|
|
3471
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg'
|
|
3773
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg',
|
|
3774
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png'
|
|
3472
3775
|
},
|
|
3473
3776
|
traces: [{
|
|
3474
3777
|
type: 'ibc',
|
|
@@ -3481,6 +3784,63 @@ var asset_list = {
|
|
|
3481
3784
|
channel_id: 'channel-259'
|
|
3482
3785
|
}
|
|
3483
3786
|
}]
|
|
3787
|
+
}, {
|
|
3788
|
+
description: 'MantaDAO Governance Token',
|
|
3789
|
+
denom_units: [{
|
|
3790
|
+
denom: 'ibc/4D9F8691DB362DB2F92363CD8601B9C670FBAEAFB43842128179F5109535CD95',
|
|
3791
|
+
exponent: 0,
|
|
3792
|
+
aliases: ['factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta']
|
|
3793
|
+
}, {
|
|
3794
|
+
denom: 'mnta',
|
|
3795
|
+
exponent: 6
|
|
3796
|
+
}],
|
|
3797
|
+
base: 'ibc/4D9F8691DB362DB2F92363CD8601B9C670FBAEAFB43842128179F5109535CD95',
|
|
3798
|
+
name: 'MNTA',
|
|
3799
|
+
display: 'MNTA',
|
|
3800
|
+
symbol: 'MNTA',
|
|
3801
|
+
logo_URIs: {
|
|
3802
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg',
|
|
3803
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png'
|
|
3804
|
+
},
|
|
3805
|
+
traces: [{
|
|
3806
|
+
type: 'ibc',
|
|
3807
|
+
counterparty: {
|
|
3808
|
+
channel_id: 'channel-3',
|
|
3809
|
+
base_denom: 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta',
|
|
3810
|
+
chain_name: 'kujira'
|
|
3811
|
+
},
|
|
3812
|
+
chain: {
|
|
3813
|
+
channel_id: 'channel-259'
|
|
3814
|
+
}
|
|
3815
|
+
}]
|
|
3816
|
+
}, {
|
|
3817
|
+
description: 'The native utility token of the KYVE network.',
|
|
3818
|
+
denom_units: [{
|
|
3819
|
+
denom: 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13',
|
|
3820
|
+
exponent: 0,
|
|
3821
|
+
aliases: ['ukyve']
|
|
3822
|
+
}, {
|
|
3823
|
+
denom: 'kyve',
|
|
3824
|
+
exponent: 6
|
|
3825
|
+
}],
|
|
3826
|
+
base: 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13',
|
|
3827
|
+
name: 'KYVE',
|
|
3828
|
+
display: 'kyve',
|
|
3829
|
+
symbol: 'KYVE',
|
|
3830
|
+
logo_URIs: {
|
|
3831
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg'
|
|
3832
|
+
},
|
|
3833
|
+
traces: [{
|
|
3834
|
+
type: 'ibc',
|
|
3835
|
+
counterparty: {
|
|
3836
|
+
channel_id: 'channel-0',
|
|
3837
|
+
base_denom: 'ukyve',
|
|
3838
|
+
chain_name: 'kyve'
|
|
3839
|
+
},
|
|
3840
|
+
chain: {
|
|
3841
|
+
channel_id: 'channel-767'
|
|
3842
|
+
}
|
|
3843
|
+
}]
|
|
3484
3844
|
}, {
|
|
3485
3845
|
description: 'The native token of Lambda',
|
|
3486
3846
|
denom_units: [{
|
|
@@ -3542,7 +3902,7 @@ var asset_list = {
|
|
|
3542
3902
|
}
|
|
3543
3903
|
}]
|
|
3544
3904
|
}, {
|
|
3545
|
-
description: 'The native token of
|
|
3905
|
+
description: 'The native token of LumenX Network',
|
|
3546
3906
|
denom_units: [{
|
|
3547
3907
|
denom: 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7',
|
|
3548
3908
|
exponent: 0,
|
|
@@ -3675,6 +4035,7 @@ var asset_list = {
|
|
|
3675
4035
|
display: 'meme',
|
|
3676
4036
|
symbol: 'MEME',
|
|
3677
4037
|
logo_URIs: {
|
|
4038
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg',
|
|
3678
4039
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png'
|
|
3679
4040
|
},
|
|
3680
4041
|
coingecko_id: 'meme-network',
|
|
@@ -3736,6 +4097,7 @@ var asset_list = {
|
|
|
3736
4097
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
|
|
3737
4098
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png'
|
|
3738
4099
|
},
|
|
4100
|
+
coingecko_id: 'white-whale',
|
|
3739
4101
|
traces: [{
|
|
3740
4102
|
type: 'ibc',
|
|
3741
4103
|
counterparty: {
|
|
@@ -3877,7 +4239,8 @@ var asset_list = {
|
|
|
3877
4239
|
display: 'stake',
|
|
3878
4240
|
symbol: 'STAKE',
|
|
3879
4241
|
logo_URIs: {
|
|
3880
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png'
|
|
4242
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png',
|
|
4243
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg'
|
|
3881
4244
|
},
|
|
3882
4245
|
traces: [{
|
|
3883
4246
|
type: 'ibc',
|
|
@@ -3905,7 +4268,8 @@ var asset_list = {
|
|
|
3905
4268
|
name: 'Frienzies',
|
|
3906
4269
|
symbol: 'FRNZ',
|
|
3907
4270
|
logo_URIs: {
|
|
3908
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png'
|
|
4271
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png',
|
|
4272
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
3909
4273
|
},
|
|
3910
4274
|
traces: [{
|
|
3911
4275
|
type: 'ibc',
|
|
@@ -3946,7 +4310,8 @@ var asset_list = {
|
|
|
3946
4310
|
}
|
|
3947
4311
|
}],
|
|
3948
4312
|
logo_URIs: {
|
|
3949
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png'
|
|
4313
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
4314
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
3950
4315
|
}
|
|
3951
4316
|
}, {
|
|
3952
4317
|
description: 'USD Coin',
|
|
@@ -3962,6 +4327,10 @@ var asset_list = {
|
|
|
3962
4327
|
display: 'usdc',
|
|
3963
4328
|
name: 'USD Coin',
|
|
3964
4329
|
symbol: 'USDC',
|
|
4330
|
+
logo_URIs: {
|
|
4331
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
|
|
4332
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
|
|
4333
|
+
},
|
|
3965
4334
|
traces: [{
|
|
3966
4335
|
type: 'ibc',
|
|
3967
4336
|
counterparty: {
|
|
@@ -5188,6 +5557,34 @@ var asset_list = {
|
|
|
5188
5557
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png',
|
|
5189
5558
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg'
|
|
5190
5559
|
}
|
|
5560
|
+
}, {
|
|
5561
|
+
denom_units: [{
|
|
5562
|
+
denom: 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F',
|
|
5563
|
+
exponent: 0,
|
|
5564
|
+
aliases: ['stuumee']
|
|
5565
|
+
}, {
|
|
5566
|
+
denom: 'stumee',
|
|
5567
|
+
exponent: 6
|
|
5568
|
+
}],
|
|
5569
|
+
base: 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F',
|
|
5570
|
+
name: 'stUMEE',
|
|
5571
|
+
display: 'stumee',
|
|
5572
|
+
symbol: 'stUMEE',
|
|
5573
|
+
traces: [{
|
|
5574
|
+
type: 'ibc',
|
|
5575
|
+
counterparty: {
|
|
5576
|
+
channel_id: 'channel-5',
|
|
5577
|
+
base_denom: 'stuumee',
|
|
5578
|
+
chain_name: 'stride'
|
|
5579
|
+
},
|
|
5580
|
+
chain: {
|
|
5581
|
+
channel_id: 'channel-326'
|
|
5582
|
+
}
|
|
5583
|
+
}],
|
|
5584
|
+
logo_URIs: {
|
|
5585
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png',
|
|
5586
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg'
|
|
5587
|
+
}
|
|
5191
5588
|
}, {
|
|
5192
5589
|
description: 'Tori token (TORI) is the Teritoti Network’s native utility token, used as the primary means to govern, secure the blockchain, incentivize ecosystem contributors and use the various Teritori dApp features.',
|
|
5193
5590
|
denom_units: [{
|
|
@@ -7847,6 +8244,230 @@ var asset_list = {
|
|
|
7847
8244
|
channel_id: 'channel-169'
|
|
7848
8245
|
}
|
|
7849
8246
|
}]
|
|
8247
|
+
}, {
|
|
8248
|
+
description: 'Spacer',
|
|
8249
|
+
type_asset: 'cw20',
|
|
8250
|
+
address: 'juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg',
|
|
8251
|
+
denom_units: [{
|
|
8252
|
+
denom: 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C',
|
|
8253
|
+
exponent: 0,
|
|
8254
|
+
aliases: ['cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg']
|
|
8255
|
+
}, {
|
|
8256
|
+
denom: 'spacer',
|
|
8257
|
+
exponent: 6
|
|
8258
|
+
}],
|
|
8259
|
+
base: 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C',
|
|
8260
|
+
name: 'Spacer',
|
|
8261
|
+
display: 'spacer',
|
|
8262
|
+
symbol: 'SPACER',
|
|
8263
|
+
logo_URIs: {
|
|
8264
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png'
|
|
8265
|
+
},
|
|
8266
|
+
traces: [{
|
|
8267
|
+
type: 'ibc-cw20',
|
|
8268
|
+
counterparty: {
|
|
8269
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8270
|
+
channel_id: 'channel-47',
|
|
8271
|
+
base_denom: 'cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg',
|
|
8272
|
+
chain_name: 'juno'
|
|
8273
|
+
},
|
|
8274
|
+
chain: {
|
|
8275
|
+
port: 'transfer',
|
|
8276
|
+
channel_id: 'channel-169'
|
|
8277
|
+
}
|
|
8278
|
+
}]
|
|
8279
|
+
}, {
|
|
8280
|
+
description: 'Light: LumenX community DAO treasury token',
|
|
8281
|
+
type_asset: 'cw20',
|
|
8282
|
+
address: 'juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l',
|
|
8283
|
+
denom_units: [{
|
|
8284
|
+
denom: 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29',
|
|
8285
|
+
exponent: 0,
|
|
8286
|
+
aliases: ['cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l']
|
|
8287
|
+
}, {
|
|
8288
|
+
denom: 'light',
|
|
8289
|
+
exponent: 9
|
|
8290
|
+
}],
|
|
8291
|
+
base: 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29',
|
|
8292
|
+
name: 'LIGHT',
|
|
8293
|
+
display: 'light',
|
|
8294
|
+
symbol: 'LIGHT',
|
|
8295
|
+
logo_URIs: {
|
|
8296
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png'
|
|
8297
|
+
},
|
|
8298
|
+
traces: [{
|
|
8299
|
+
type: 'ibc-cw20',
|
|
8300
|
+
counterparty: {
|
|
8301
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8302
|
+
channel_id: 'channel-47',
|
|
8303
|
+
base_denom: 'cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l',
|
|
8304
|
+
chain_name: 'juno'
|
|
8305
|
+
},
|
|
8306
|
+
chain: {
|
|
8307
|
+
port: 'transfer',
|
|
8308
|
+
channel_id: 'channel-169'
|
|
8309
|
+
}
|
|
8310
|
+
}]
|
|
8311
|
+
}, {
|
|
8312
|
+
description: 'Mille: the 1000th token on osmosis',
|
|
8313
|
+
type_asset: 'cw20',
|
|
8314
|
+
address: 'juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d',
|
|
8315
|
+
denom_units: [{
|
|
8316
|
+
denom: 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF',
|
|
8317
|
+
exponent: 0,
|
|
8318
|
+
aliases: ['cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d']
|
|
8319
|
+
}, {
|
|
8320
|
+
denom: 'mile',
|
|
8321
|
+
exponent: 6
|
|
8322
|
+
}],
|
|
8323
|
+
base: 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF',
|
|
8324
|
+
name: 'Mille',
|
|
8325
|
+
display: 'mile',
|
|
8326
|
+
symbol: 'MILE',
|
|
8327
|
+
logo_URIs: {
|
|
8328
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png'
|
|
8329
|
+
},
|
|
8330
|
+
traces: [{
|
|
8331
|
+
type: 'ibc-cw20',
|
|
8332
|
+
counterparty: {
|
|
8333
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8334
|
+
channel_id: 'channel-47',
|
|
8335
|
+
base_denom: 'cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d',
|
|
8336
|
+
chain_name: 'juno'
|
|
8337
|
+
},
|
|
8338
|
+
chain: {
|
|
8339
|
+
port: 'transfer',
|
|
8340
|
+
channel_id: 'channel-169'
|
|
8341
|
+
}
|
|
8342
|
+
}]
|
|
8343
|
+
}, {
|
|
8344
|
+
description: 'Void',
|
|
8345
|
+
type_asset: 'cw20',
|
|
8346
|
+
address: 'juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8',
|
|
8347
|
+
denom_units: [{
|
|
8348
|
+
denom: 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960',
|
|
8349
|
+
exponent: 0,
|
|
8350
|
+
aliases: ['cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8']
|
|
8351
|
+
}, {
|
|
8352
|
+
denom: 'void',
|
|
8353
|
+
exponent: 6
|
|
8354
|
+
}],
|
|
8355
|
+
base: 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960',
|
|
8356
|
+
name: 'Void',
|
|
8357
|
+
display: 'void',
|
|
8358
|
+
symbol: 'VOID',
|
|
8359
|
+
logo_URIs: {
|
|
8360
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png'
|
|
8361
|
+
},
|
|
8362
|
+
traces: [{
|
|
8363
|
+
type: 'ibc-cw20',
|
|
8364
|
+
counterparty: {
|
|
8365
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8366
|
+
channel_id: 'channel-47',
|
|
8367
|
+
base_denom: 'cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8',
|
|
8368
|
+
chain_name: 'juno'
|
|
8369
|
+
},
|
|
8370
|
+
chain: {
|
|
8371
|
+
port: 'transfer',
|
|
8372
|
+
channel_id: 'channel-169'
|
|
8373
|
+
}
|
|
8374
|
+
}]
|
|
8375
|
+
}, {
|
|
8376
|
+
description: 'Silica',
|
|
8377
|
+
type_asset: 'cw20',
|
|
8378
|
+
address: 'juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux',
|
|
8379
|
+
denom_units: [{
|
|
8380
|
+
denom: 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07',
|
|
8381
|
+
exponent: 0,
|
|
8382
|
+
aliases: ['cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux']
|
|
8383
|
+
}, {
|
|
8384
|
+
denom: 'silica',
|
|
8385
|
+
exponent: 6
|
|
8386
|
+
}],
|
|
8387
|
+
base: 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07',
|
|
8388
|
+
name: 'Silica',
|
|
8389
|
+
display: 'silica',
|
|
8390
|
+
symbol: 'SLCA',
|
|
8391
|
+
logo_URIs: {
|
|
8392
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png'
|
|
8393
|
+
},
|
|
8394
|
+
traces: [{
|
|
8395
|
+
type: 'ibc-cw20',
|
|
8396
|
+
counterparty: {
|
|
8397
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8398
|
+
channel_id: 'channel-47',
|
|
8399
|
+
base_denom: 'cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux',
|
|
8400
|
+
chain_name: 'juno'
|
|
8401
|
+
},
|
|
8402
|
+
chain: {
|
|
8403
|
+
port: 'transfer',
|
|
8404
|
+
channel_id: 'channel-169'
|
|
8405
|
+
}
|
|
8406
|
+
}]
|
|
8407
|
+
}, {
|
|
8408
|
+
description: 'Pepec',
|
|
8409
|
+
type_asset: 'cw20',
|
|
8410
|
+
address: 'juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k',
|
|
8411
|
+
denom_units: [{
|
|
8412
|
+
denom: 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93',
|
|
8413
|
+
exponent: 0,
|
|
8414
|
+
aliases: ['cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k']
|
|
8415
|
+
}, {
|
|
8416
|
+
denom: 'pepec',
|
|
8417
|
+
exponent: 6
|
|
8418
|
+
}],
|
|
8419
|
+
base: 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93',
|
|
8420
|
+
name: 'Pepec',
|
|
8421
|
+
display: 'pepec',
|
|
8422
|
+
symbol: 'PEPEC',
|
|
8423
|
+
logo_URIs: {
|
|
8424
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png'
|
|
8425
|
+
},
|
|
8426
|
+
traces: [{
|
|
8427
|
+
type: 'ibc-cw20',
|
|
8428
|
+
counterparty: {
|
|
8429
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8430
|
+
channel_id: 'channel-47',
|
|
8431
|
+
base_denom: 'cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k',
|
|
8432
|
+
chain_name: 'juno'
|
|
8433
|
+
},
|
|
8434
|
+
chain: {
|
|
8435
|
+
port: 'transfer',
|
|
8436
|
+
channel_id: 'channel-169'
|
|
8437
|
+
}
|
|
8438
|
+
}]
|
|
8439
|
+
}, {
|
|
8440
|
+
description: 'Palantin',
|
|
8441
|
+
type_asset: 'cw20',
|
|
8442
|
+
address: 'juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp',
|
|
8443
|
+
denom_units: [{
|
|
8444
|
+
denom: 'ibc/0E30775281643124D79B8670ACD3F478AC5FAB2B1CA1E32903D0775D8A8BB064',
|
|
8445
|
+
exponent: 0,
|
|
8446
|
+
aliases: ['cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp']
|
|
8447
|
+
}, {
|
|
8448
|
+
denom: 'pltn',
|
|
8449
|
+
exponent: 6
|
|
8450
|
+
}],
|
|
8451
|
+
base: 'ibc/0E30775281643124D79B8670ACD3F478AC5FAB2B1CA1E32903D0775D8A8BB064',
|
|
8452
|
+
name: 'Palantin',
|
|
8453
|
+
display: 'palantin',
|
|
8454
|
+
symbol: 'PLTN',
|
|
8455
|
+
logo_URIs: {
|
|
8456
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png'
|
|
8457
|
+
},
|
|
8458
|
+
traces: [{
|
|
8459
|
+
type: 'ibc-cw20',
|
|
8460
|
+
counterparty: {
|
|
8461
|
+
port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn',
|
|
8462
|
+
channel_id: 'channel-47',
|
|
8463
|
+
base_denom: 'cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp',
|
|
8464
|
+
chain_name: 'juno'
|
|
8465
|
+
},
|
|
8466
|
+
chain: {
|
|
8467
|
+
port: 'transfer',
|
|
8468
|
+
channel_id: 'channel-169'
|
|
8469
|
+
}
|
|
8470
|
+
}]
|
|
7850
8471
|
}, {
|
|
7851
8472
|
description: 'ELEVENPARIS loyalty token on KiChain',
|
|
7852
8473
|
type_asset: 'cw20',
|
|
@@ -7980,6 +8601,39 @@ var asset_list = {
|
|
|
7980
8601
|
channel_id: 'channel-476'
|
|
7981
8602
|
}
|
|
7982
8603
|
}]
|
|
8604
|
+
}, {
|
|
8605
|
+
description: 'The native token cw20 for Silk on Secret Network',
|
|
8606
|
+
denom_units: [{
|
|
8607
|
+
denom: 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7',
|
|
8608
|
+
exponent: 0,
|
|
8609
|
+
aliases: ['cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd']
|
|
8610
|
+
}, {
|
|
8611
|
+
denom: 'silk',
|
|
8612
|
+
exponent: 6
|
|
8613
|
+
}],
|
|
8614
|
+
type_asset: 'snip25',
|
|
8615
|
+
address: 'secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd',
|
|
8616
|
+
base: 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7',
|
|
8617
|
+
name: 'Silk',
|
|
8618
|
+
display: 'silk',
|
|
8619
|
+
symbol: 'SILK',
|
|
8620
|
+
logo_URIs: {
|
|
8621
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png',
|
|
8622
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg'
|
|
8623
|
+
},
|
|
8624
|
+
traces: [{
|
|
8625
|
+
type: 'ibc-cw20',
|
|
8626
|
+
counterparty: {
|
|
8627
|
+
port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4',
|
|
8628
|
+
channel_id: 'channel-44',
|
|
8629
|
+
base_denom: 'cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd',
|
|
8630
|
+
chain_name: 'secretnetwork'
|
|
8631
|
+
},
|
|
8632
|
+
chain: {
|
|
8633
|
+
port: 'transfer',
|
|
8634
|
+
channel_id: 'channel-476'
|
|
8635
|
+
}
|
|
8636
|
+
}]
|
|
7983
8637
|
}, {
|
|
7984
8638
|
description: 'The native token cw20 for SCRT Staking Derivatives on Secret Network',
|
|
7985
8639
|
denom_units: [{
|
|
@@ -8211,6 +8865,38 @@ var asset_list = {
|
|
|
8211
8865
|
channel_id: 'channel-559'
|
|
8212
8866
|
}
|
|
8213
8867
|
}]
|
|
8868
|
+
}, {
|
|
8869
|
+
description: 'Lion Cub DAO is a useless meme community DAO on Terra',
|
|
8870
|
+
type_asset: 'cw20',
|
|
8871
|
+
address: 'terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t',
|
|
8872
|
+
denom_units: [{
|
|
8873
|
+
denom: 'ibc/92D104452291E203A20D098E3413904DA113CED1F70392E68ADDFD28AF88A614',
|
|
8874
|
+
exponent: 0,
|
|
8875
|
+
aliases: ['cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t']
|
|
8876
|
+
}, {
|
|
8877
|
+
denom: 'cub',
|
|
8878
|
+
exponent: 6
|
|
8879
|
+
}],
|
|
8880
|
+
base: 'ibc/92D104452291E203A20D098E3413904DA113CED1F70392E68ADDFD28AF88A614',
|
|
8881
|
+
name: 'Lion Cub DAO',
|
|
8882
|
+
display: 'cub',
|
|
8883
|
+
symbol: 'CUB',
|
|
8884
|
+
logo_URIs: {
|
|
8885
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png'
|
|
8886
|
+
},
|
|
8887
|
+
traces: [{
|
|
8888
|
+
type: 'ibc-cw20',
|
|
8889
|
+
counterparty: {
|
|
8890
|
+
port: 'wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x',
|
|
8891
|
+
channel_id: 'channel-85',
|
|
8892
|
+
base_denom: 'cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t',
|
|
8893
|
+
chain_name: 'terra2'
|
|
8894
|
+
},
|
|
8895
|
+
chain: {
|
|
8896
|
+
port: 'transfer',
|
|
8897
|
+
channel_id: 'channel-559'
|
|
8898
|
+
}
|
|
8899
|
+
}]
|
|
8214
8900
|
}, {
|
|
8215
8901
|
description: 'The GraveDigger is the Liquid Staking Product of BackBone Labs. It will have its own platform. Its liquid staking derivative (LSD) is boneLUNA.',
|
|
8216
8902
|
type_asset: 'cw20',
|
package/main/assets.js
CHANGED
|
@@ -44,6 +44,21 @@ var assets = {
|
|
|
44
44
|
},
|
|
45
45
|
coingecko_id: 'ion',
|
|
46
46
|
keywords: ['memecoin']
|
|
47
|
+
}, {
|
|
48
|
+
denom_units: [{
|
|
49
|
+
denom: 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx',
|
|
50
|
+
exponent: 0
|
|
51
|
+
}, {
|
|
52
|
+
denom: 'ibcx',
|
|
53
|
+
exponent: 6
|
|
54
|
+
}],
|
|
55
|
+
base: 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx',
|
|
56
|
+
name: 'IBCX',
|
|
57
|
+
display: 'ibcx',
|
|
58
|
+
symbol: 'IBCX',
|
|
59
|
+
logo_URIs: {
|
|
60
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg'
|
|
61
|
+
}
|
|
47
62
|
}]
|
|
48
63
|
};
|
|
49
64
|
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: 'v15.
|
|
41
|
-
compatible_versions: ['v15.0.0'],
|
|
40
|
+
recommended_version: 'v15.1.0',
|
|
41
|
+
compatible_versions: ['v15.1.0', 'v15.0.0'],
|
|
42
42
|
binaries: {
|
|
43
|
-
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.
|
|
44
|
-
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.
|
|
43
|
+
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-amd64?checksum=sha256:f16f901dfd47426caced8436c507e2950a4e2452b6cc6efc7845ab3b43a5c5d5',
|
|
44
|
+
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-arm64?checksum=sha256:08b20f0753b6b0bafa3a6ca7e4bb6807baf72754dfb69d6db7b1fb2b4b55ffc0'
|
|
45
45
|
},
|
|
46
46
|
cosmos_sdk_version: '0.45',
|
|
47
47
|
consensus: {
|
|
@@ -103,10 +103,10 @@ var chain = {
|
|
|
103
103
|
next_version_name: 'v15'
|
|
104
104
|
}, {
|
|
105
105
|
name: 'v15',
|
|
106
|
-
tag: 'v15.
|
|
106
|
+
tag: 'v15.1.0',
|
|
107
107
|
height: 8732500,
|
|
108
|
-
recommended_version: 'v15.
|
|
109
|
-
compatible_versions: ['v15.0.0'],
|
|
108
|
+
recommended_version: 'v15.1.0',
|
|
109
|
+
compatible_versions: ['v15.1.0', 'v15.0.0'],
|
|
110
110
|
cosmos_sdk_version: '0.45',
|
|
111
111
|
consensus: {
|
|
112
112
|
type: 'tendermint',
|
|
@@ -117,8 +117,8 @@ var chain = {
|
|
|
117
117
|
ibc_go_version: '4.3.0',
|
|
118
118
|
ics_enabled: ['ics20-1'],
|
|
119
119
|
binaries: {
|
|
120
|
-
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.
|
|
121
|
-
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.
|
|
120
|
+
'linux/amd64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-amd64?checksum=sha256:f16f901dfd47426caced8436c507e2950a4e2452b6cc6efc7845ab3b43a5c5d5',
|
|
121
|
+
'linux/arm64': 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-arm64?checksum=sha256:08b20f0753b6b0bafa3a6ca7e4bb6807baf72754dfb69d6db7b1fb2b4b55ffc0'
|
|
122
122
|
}
|
|
123
123
|
}]
|
|
124
124
|
},
|
|
@@ -129,7 +129,8 @@ var chain = {
|
|
|
129
129
|
}
|
|
130
130
|
}],
|
|
131
131
|
logo_URIs: {
|
|
132
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
|
|
132
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png',
|
|
133
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
133
134
|
},
|
|
134
135
|
peers: {
|
|
135
136
|
seeds: [{
|
|
@@ -157,9 +158,17 @@ var chain = {
|
|
|
157
158
|
address: 'seed-osmosis.freshstaking.com:31656',
|
|
158
159
|
provider: 'FreshSTAKING'
|
|
159
160
|
}, {
|
|
160
|
-
id: '
|
|
161
|
-
address: '
|
|
162
|
-
provider: '
|
|
161
|
+
id: 'bd7064a50f5843e2c84c71c4dc18ac07424bdcc1',
|
|
162
|
+
address: 'seeds.whispernode.com:12556',
|
|
163
|
+
provider: 'WhisperNode🤐'
|
|
164
|
+
}, {
|
|
165
|
+
id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc',
|
|
166
|
+
address: 'osmosis.rpc.kjnodes.com:11259',
|
|
167
|
+
provider: 'kjnodes'
|
|
168
|
+
}, {
|
|
169
|
+
id: '38ab18cb2ea1dfeb6232b429e1508f56b6ae5031',
|
|
170
|
+
address: 'seed-osmosis-01.stakeflow.io:65535',
|
|
171
|
+
provider: 'Genesis Lab'
|
|
163
172
|
}],
|
|
164
173
|
persistent_peers: [{
|
|
165
174
|
id: '4d9ac3510d9f5cfc975a28eb2a7b8da866f7bc47',
|
|
@@ -177,6 +186,10 @@ var chain = {
|
|
|
177
186
|
id: '3e874613919a6f8b3fc26071fef563c88f031b3c',
|
|
178
187
|
address: 'seed-osmosis.freshstaking.com:31656',
|
|
179
188
|
provider: 'FreshSTAKING'
|
|
189
|
+
}, {
|
|
190
|
+
id: '38ab18cb2ea1dfeb6232b429e1508f56b6ae5031',
|
|
191
|
+
address: 'peer-osmosis-01.stakeflow.io:65535',
|
|
192
|
+
provider: 'Genesis Lab'
|
|
180
193
|
}]
|
|
181
194
|
},
|
|
182
195
|
apis: {
|
|
@@ -225,6 +238,15 @@ var chain = {
|
|
|
225
238
|
}, {
|
|
226
239
|
address: 'https://osmosis.api.onfinality.io/public',
|
|
227
240
|
provider: 'OnFinality'
|
|
241
|
+
}, {
|
|
242
|
+
address: 'https://osmosis.rpc.silknodes.io',
|
|
243
|
+
provider: 'Silk Nodes'
|
|
244
|
+
}, {
|
|
245
|
+
address: 'https://osmosis.rpc.kjnodes.com',
|
|
246
|
+
provider: 'kjnodes'
|
|
247
|
+
}, {
|
|
248
|
+
address: 'https://rpc-osmosis-01.stakeflow.io',
|
|
249
|
+
provider: 'Genesis Lab'
|
|
228
250
|
}],
|
|
229
251
|
rest: [{
|
|
230
252
|
address: 'https://lcd.osmosis.zone/',
|
|
@@ -265,6 +287,15 @@ var chain = {
|
|
|
265
287
|
}, {
|
|
266
288
|
address: 'https://osmosis.rest.interchain.ivaldilabs.xyz',
|
|
267
289
|
provider: 'ivaldilabs'
|
|
290
|
+
}, {
|
|
291
|
+
address: 'https://osmosis.api.silknodes.io',
|
|
292
|
+
provider: 'Silk Nodes'
|
|
293
|
+
}, {
|
|
294
|
+
address: 'https://osmosis.api.kjnodes.com',
|
|
295
|
+
provider: 'kjnodes'
|
|
296
|
+
}, {
|
|
297
|
+
address: 'https://api-osmosis-01.stakeflow.io',
|
|
298
|
+
provider: 'Genesis Lab'
|
|
268
299
|
}, {
|
|
269
300
|
address: 'https://osmosis.stakesystems.io/',
|
|
270
301
|
provider: 'stakesystems'
|
|
@@ -284,6 +315,12 @@ var chain = {
|
|
|
284
315
|
}, {
|
|
285
316
|
address: 'osmosis.grpc.interchain.ivaldilabs.xyz:433',
|
|
286
317
|
provider: 'ivaldilabs'
|
|
318
|
+
}, {
|
|
319
|
+
address: 'osmosis.grpc.kjnodes.com:11290',
|
|
320
|
+
provider: 'kjnodes'
|
|
321
|
+
}, {
|
|
322
|
+
address: 'grpc-osmosis-01.stakeflow.io:6754',
|
|
323
|
+
provider: 'Genesis Lab'
|
|
287
324
|
}]
|
|
288
325
|
},
|
|
289
326
|
explorers: [{
|
|
@@ -308,7 +345,8 @@ var chain = {
|
|
|
308
345
|
}, {
|
|
309
346
|
kind: 'atomscan',
|
|
310
347
|
url: 'https://atomscan.com/osmosis',
|
|
311
|
-
tx_page: 'https://atomscan.com/osmosis/transactions/${txHash}'
|
|
348
|
+
tx_page: 'https://atomscan.com/osmosis/transactions/${txHash}',
|
|
349
|
+
account_page: 'https://atomscan.com/osmosis/accounts/${accountAddress}'
|
|
312
350
|
}, {
|
|
313
351
|
kind: 'bigdipper',
|
|
314
352
|
url: 'https://bigdipper.live/osmosis',
|
|
@@ -319,6 +357,10 @@ var chain = {
|
|
|
319
357
|
url: 'https://explorer.tcnetwork.io/osmosis',
|
|
320
358
|
tx_page: 'https://explorer.tcnetwork.io/osmosis/transaction/${txHash}',
|
|
321
359
|
account_page: 'https://explorer.tcnetwork.io/osmosis/account/${accountAddress}'
|
|
360
|
+
}, {
|
|
361
|
+
kind: 'Stakeflow',
|
|
362
|
+
url: 'https://stakeflow.io/osmosis',
|
|
363
|
+
account_page: 'https://stakeflow.io/osmosis/accounts/${accountAddress}'
|
|
322
364
|
}],
|
|
323
365
|
keywords: ['dex']
|
|
324
366
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/osmosis",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Chain Registry info for Osmosis",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@babel/plugin-transform-runtime": "7.21.4",
|
|
51
51
|
"@babel/preset-env": "7.21.4",
|
|
52
52
|
"@babel/preset-typescript": "^7.21.4",
|
|
53
|
-
"@chain-registry/utils": "^1.
|
|
53
|
+
"@chain-registry/utils": "^1.11.0",
|
|
54
54
|
"@types/jest": "^29.5.1",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "5.59.0",
|
|
56
56
|
"@typescript-eslint/parser": "5.59.0",
|
|
57
57
|
"babel-core": "7.0.0-bridge.0",
|
|
58
58
|
"babel-jest": "29.5.0",
|
|
59
59
|
"babel-watch": "^7.7.2",
|
|
60
|
-
"chain-registry": "^1.
|
|
60
|
+
"chain-registry": "^1.15.0",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.38.0",
|
|
63
63
|
"eslint-config-prettier": "^8.8.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"@babel/runtime": "^7.21.0",
|
|
76
76
|
"@chain-registry/types": "^0.16.0"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "b2e52cf39bbe96c704b2c9e7d8716af2ab1b7a25"
|
|
79
79
|
}
|