chain-registry 1.69.30 → 1.69.31

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.
Files changed (63) hide show
  1. package/esm/mainnet/andromeda1/assets.js +30 -0
  2. package/esm/mainnet/andromeda1/index.js +2 -0
  3. package/esm/mainnet/assets.js +4 -0
  4. package/esm/mainnet/axelar/assets.js +22 -14
  5. package/esm/mainnet/chains.js +2 -0
  6. package/esm/mainnet/int3face/chain.js +1 -1
  7. package/esm/mainnet/mantrachain/chain.js +1 -1
  8. package/esm/mainnet/named.js +1 -0
  9. package/esm/mainnet/neutron/assets.js +103 -0
  10. package/esm/mainnet/nibiru/assets.js +5 -6
  11. package/esm/mainnet/nolus/assets.js +5 -2
  12. package/esm/mainnet/odin/assets.js +65 -13
  13. package/esm/mainnet/odin/chain.js +35 -14
  14. package/esm/mainnet/odin1/assets.js +95 -0
  15. package/esm/mainnet/odin1/chain.js +88 -0
  16. package/esm/mainnet/odin1/index.js +4 -0
  17. package/esm/mainnet/omniflixhub/ibc.js +29 -0
  18. package/esm/mainnet/oraichain/assets.js +5 -5
  19. package/esm/mainnet/osmosis/assets.js +100 -92
  20. package/esm/mainnet/rootstock/assets.js +13 -0
  21. package/esm/mainnet/stargaze/assets.js +52 -4
  22. package/esm/mainnet/stargaze/ibc.js +29 -0
  23. package/esm/noncosmos/avalanche/assets.js +12 -1
  24. package/esm/noncosmos/moonbeam/assets.js +12 -1
  25. package/esm/noncosmos/polygon/assets.js +12 -1
  26. package/esm/testnet/kimanetworktestnet/assets.js +4 -0
  27. package/esm/testnet/mantrachaintestnet2/chain.js +1 -1
  28. package/esm/testnet/stridetestnet/assets.js +5 -8
  29. package/mainnet/andromeda1/assets.d.ts +3 -0
  30. package/mainnet/andromeda1/assets.js +32 -0
  31. package/mainnet/andromeda1/index.d.ts +1 -0
  32. package/mainnet/andromeda1/index.js +3 -1
  33. package/mainnet/assets.js +4 -0
  34. package/mainnet/axelar/assets.js +22 -14
  35. package/mainnet/chains.js +2 -0
  36. package/mainnet/int3face/chain.js +1 -1
  37. package/mainnet/mantrachain/chain.js +1 -1
  38. package/mainnet/named.d.ts +1 -0
  39. package/mainnet/named.js +3 -2
  40. package/mainnet/neutron/assets.js +103 -0
  41. package/mainnet/nibiru/assets.js +5 -6
  42. package/mainnet/nolus/assets.js +5 -2
  43. package/mainnet/odin/assets.js +65 -13
  44. package/mainnet/odin/chain.js +35 -14
  45. package/mainnet/odin1/assets.d.ts +3 -0
  46. package/mainnet/odin1/assets.js +97 -0
  47. package/mainnet/odin1/chain.d.ts +3 -0
  48. package/mainnet/odin1/chain.js +90 -0
  49. package/mainnet/odin1/index.d.ts +2 -0
  50. package/mainnet/odin1/index.js +10 -0
  51. package/mainnet/omniflixhub/ibc.js +29 -0
  52. package/mainnet/oraichain/assets.js +5 -5
  53. package/mainnet/osmosis/assets.js +100 -92
  54. package/mainnet/rootstock/assets.js +13 -0
  55. package/mainnet/stargaze/assets.js +52 -4
  56. package/mainnet/stargaze/ibc.js +29 -0
  57. package/noncosmos/avalanche/assets.js +12 -1
  58. package/noncosmos/moonbeam/assets.js +12 -1
  59. package/noncosmos/polygon/assets.js +12 -1
  60. package/package.json +4 -4
  61. package/testnet/kimanetworktestnet/assets.js +4 -0
  62. package/testnet/mantrachaintestnet2/chain.js +1 -1
  63. package/testnet/stridetestnet/assets.js +5 -8
@@ -0,0 +1,30 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'andromeda1',
4
+ assets: [{
5
+ description: 'The native staking and governance token of Andromeda',
6
+ denom_units: [{
7
+ denom: 'uandr',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'andr',
11
+ exponent: 6
12
+ }],
13
+ coingecko_id: 'andromeda-2',
14
+ base: 'uandr',
15
+ name: 'Andr',
16
+ display: 'andr',
17
+ symbol: 'ANDR',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png',
23
+ theme: {
24
+ primary_color_hex: '#040404'
25
+ }
26
+ }],
27
+ type_asset: 'sdk.coin'
28
+ }]
29
+ };
30
+ export default info;
@@ -1,2 +1,4 @@
1
+ import _assets from './assets';
1
2
  import _chain from './chain';
3
+ export const assets = _assets;
2
4
  export const chain = _chain;
@@ -11,6 +11,7 @@ import * as _akash from './akash';
11
11
  import * as _akiro from './akiro';
12
12
  import * as _althea from './althea';
13
13
  import * as _andromeda from './andromeda';
14
+ import * as _andromeda1 from './andromeda1';
14
15
  import * as _archway from './archway';
15
16
  import * as _arkh from './arkh';
16
17
  import * as _assetmantle from './assetmantle';
@@ -129,6 +130,7 @@ import * as _nomic from './nomic';
129
130
  import * as _nyx from './nyx';
130
131
  import * as _octa from './octa';
131
132
  import * as _odin from './odin';
133
+ import * as _odin1 from './odin1';
132
134
  import * as _okexchain from './okexchain';
133
135
  import * as _omniflixhub from './omniflixhub';
134
136
  import * as _onex from './onex';
@@ -208,6 +210,7 @@ const assets = [
208
210
  _akiro.assets,
209
211
  _althea.assets,
210
212
  _andromeda.assets,
213
+ _andromeda1.assets,
211
214
  _archway.assets,
212
215
  _arkh.assets,
213
216
  _assetmantle.assets,
@@ -326,6 +329,7 @@ const assets = [
326
329
  _nyx.assets,
327
330
  _octa.assets,
328
331
  _odin.assets,
332
+ _odin1.assets,
329
333
  _okexchain.assets,
330
334
  _omniflixhub.assets,
331
335
  _onex.assets,
@@ -159,18 +159,20 @@ const info = {
159
159
  provider: 'Axelar'
160
160
  }],
161
161
  logo_URIs: {
162
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
163
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
162
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
163
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
164
164
  },
165
165
  images: [{
166
166
  image_sync: {
167
167
  chain_name: 'ethereum',
168
168
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
169
169
  },
170
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
171
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg',
170
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
171
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
172
172
  theme: {
173
- primary_color_hex: '#54ac94'
173
+ circle: true,
174
+ primary_color_hex: '#009393',
175
+ background_color_hex: '#009393'
174
176
  }
175
177
  }],
176
178
  type_asset: 'sdk.coin'
@@ -1420,10 +1422,12 @@ const info = {
1420
1422
  chain_name: 'arbitrum',
1421
1423
  base_denom: '0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9'
1422
1424
  },
1423
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
1424
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg',
1425
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
1426
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
1425
1427
  theme: {
1426
- primary_color_hex: '#54ac94'
1428
+ circle: true,
1429
+ primary_color_hex: '#009393',
1430
+ background_color_hex: '#009393'
1427
1431
  }
1428
1432
  }]
1429
1433
  },
@@ -1454,10 +1458,12 @@ const info = {
1454
1458
  chain_name: 'optimism',
1455
1459
  base_denom: '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58'
1456
1460
  },
1457
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
1458
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg',
1461
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
1462
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
1459
1463
  theme: {
1460
- primary_color_hex: '#54ac94'
1464
+ circle: true,
1465
+ primary_color_hex: '#009393',
1466
+ background_color_hex: '#009393'
1461
1467
  }
1462
1468
  }]
1463
1469
  },
@@ -1488,10 +1494,12 @@ const info = {
1488
1494
  chain_name: 'polygon',
1489
1495
  base_denom: '0xc2132D05D31c914a87C6611C10748AEb04B58e8F'
1490
1496
  },
1491
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
1492
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg',
1497
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
1498
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
1493
1499
  theme: {
1494
- primary_color_hex: '#54ac94'
1500
+ circle: true,
1501
+ primary_color_hex: '#009393',
1502
+ background_color_hex: '#009393'
1495
1503
  }
1496
1504
  }]
1497
1505
  },
@@ -130,6 +130,7 @@ import * as _nomic from './nomic';
130
130
  import * as _nyx from './nyx';
131
131
  import * as _octa from './octa';
132
132
  import * as _odin from './odin';
133
+ import * as _odin1 from './odin1';
133
134
  import * as _okexchain from './okexchain';
134
135
  import * as _omniflixhub from './omniflixhub';
135
136
  import * as _onex from './onex';
@@ -328,6 +329,7 @@ const chains = [
328
329
  _nyx.chain,
329
330
  _octa.chain,
330
331
  _odin.chain,
332
+ _odin1.chain,
331
333
  _okexchain.chain,
332
334
  _omniflixhub.chain,
333
335
  _onex.chain,
@@ -53,7 +53,7 @@ const info = {
53
53
  },
54
54
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png',
55
55
  theme: {
56
- primary_color_hex: '#040404'
56
+ primary_color_hex: '#3d3d3d'
57
57
  }
58
58
  }, {
59
59
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3face-chain-logo.png',
@@ -100,7 +100,7 @@ const info = {
100
100
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
101
101
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
102
102
  theme: {
103
- circle: false,
103
+ circle: true,
104
104
  primary_color_hex: '#fba0c1'
105
105
  }
106
106
  }]
@@ -130,6 +130,7 @@ export * as nomic from './nomic';
130
130
  export * as nyx from './nyx';
131
131
  export * as octa from './octa';
132
132
  export * as odin from './odin';
133
+ export * as odin1 from './odin1';
133
134
  export * as okexchain from './okexchain';
134
135
  export * as omniflixhub from './omniflixhub';
135
136
  export * as onex from './onex';
@@ -1170,6 +1170,109 @@ const info = {
1170
1170
  twitter: 'https://x.com/ArenaDAO',
1171
1171
  website: 'https://arenadao.org/'
1172
1172
  }
1173
+ },
1174
+ {
1175
+ description: 'Astrovault AXV',
1176
+ denom_units: [{
1177
+ denom: 'cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af',
1178
+ exponent: 0
1179
+ }, {
1180
+ denom: 'AXV',
1181
+ exponent: 6
1182
+ }],
1183
+ type_asset: 'cw20',
1184
+ address: 'neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af',
1185
+ base: 'cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af',
1186
+ name: 'Astrovault AXV (Neutron)',
1187
+ display: 'AXV',
1188
+ symbol: 'AXV',
1189
+ logo_URIs: {
1190
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.png',
1191
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.svg'
1192
+ },
1193
+ images: [{
1194
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.png',
1195
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.svg'
1196
+ }],
1197
+ socials: {
1198
+ website: 'https://astrovault.io/',
1199
+ twitter: 'https://x.com/axvdex'
1200
+ },
1201
+ coingecko_id: 'astrovault'
1202
+ },
1203
+ {
1204
+ description: 'IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2',
1205
+ denom_units: [{
1206
+ denom: 'ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363',
1207
+ exponent: 0,
1208
+ aliases: ['uusdc']
1209
+ }, {
1210
+ denom: 'axlwbtc',
1211
+ exponent: 8
1212
+ }],
1213
+ type_asset: 'ics20',
1214
+ base: 'ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363',
1215
+ name: 'Wrapped Bitcoin (Axelar)',
1216
+ display: 'axlwbtc',
1217
+ symbol: 'axlWBTC',
1218
+ traces: [{
1219
+ type: 'ibc',
1220
+ counterparty: {
1221
+ chain_name: 'axelar',
1222
+ base_denom: 'wbtc-satoshi',
1223
+ channel_id: 'channel-78'
1224
+ },
1225
+ chain: {
1226
+ channel_id: 'channel-2',
1227
+ path: 'transfer/channel-2/wbtc-satoshi'
1228
+ }
1229
+ }],
1230
+ logo_URIs: {
1231
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png'
1232
+ },
1233
+ images: [{
1234
+ image_sync: {
1235
+ chain_name: 'axelar',
1236
+ base_denom: 'wbtc-satoshi'
1237
+ },
1238
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png',
1239
+ theme: {
1240
+ primary_color_hex: '#41394d'
1241
+ }
1242
+ }]
1243
+ },
1244
+ {
1245
+ description: 'Astrovault xATOM on Neutron Chain',
1246
+ denom_units: [{
1247
+ denom: 'cw20:neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj',
1248
+ exponent: 0
1249
+ }, {
1250
+ denom: 'xATOM',
1251
+ exponent: 6
1252
+ }],
1253
+ type_asset: 'cw20',
1254
+ address: 'neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj',
1255
+ base: 'cw20:neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj',
1256
+ name: 'Astrovault xATOM (Neutron)',
1257
+ display: 'xATOM',
1258
+ symbol: 'xATOM',
1259
+ traces: [{
1260
+ type: 'liquid-stake',
1261
+ counterparty: {
1262
+ chain_name: 'neutron',
1263
+ base_denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9'
1264
+ },
1265
+ provider: 'Astrovault'
1266
+ }],
1267
+ logo_URIs: {
1268
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xatom.png',
1269
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xatom.svg'
1270
+ },
1271
+ images: [{
1272
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xatom.png',
1273
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xatom.svg'
1274
+ }],
1275
+ coingecko_id: 'astrovault-xatom'
1173
1276
  }
1174
1277
  ]
1175
1278
  };
@@ -111,17 +111,16 @@ const info = {
111
111
  chain_name: 'noble',
112
112
  base_denom: 'uusdc'
113
113
  },
114
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg',
115
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
114
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
115
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
116
116
  theme: {
117
117
  circle: true,
118
- primary_color_hex: '#a8bbfb',
119
- background_color_hex: '#ffffff'
118
+ primary_color_hex: '#2775CA'
120
119
  }
121
120
  }],
122
121
  logo_URIs: {
123
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
124
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
122
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
123
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
125
124
  }
126
125
  },
127
126
  {
@@ -868,7 +868,9 @@ const info = {
868
868
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png',
869
869
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg',
870
870
  theme: {
871
- primary_color_hex: '#f4941c'
871
+ primary_color_hex: '#f4941c',
872
+ background_color_hex: '#f4941c',
873
+ circle: true
872
874
  }
873
875
  }],
874
876
  logo_URIs: {
@@ -911,7 +913,8 @@ const info = {
911
913
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png',
912
914
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg',
913
915
  theme: {
914
- primary_color_hex: '#000000'
916
+ circle: true,
917
+ background_color_hex: '#000000'
915
918
  }
916
919
  }],
917
920
  logo_URIs: {
@@ -3,7 +3,7 @@ const info = {
3
3
  chain_name: 'odin',
4
4
  assets: [
5
5
  {
6
- description: 'Staking and governance token for ODIN Protocol',
6
+ description: 'ODIN is the Staking and governance token for ODIN Protocol',
7
7
  denom_units: [{
8
8
  denom: 'loki',
9
9
  exponent: 0
@@ -21,13 +21,13 @@ const info = {
21
21
  },
22
22
  coingecko_id: 'odin-protocol',
23
23
  images: [{
24
- image_sync: {
25
- chain_name: 'odin',
26
- base_denom: 'loki'
27
- },
28
24
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png',
29
25
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg'
30
26
  }],
27
+ socials: {
28
+ website: 'https://odinprotocol.io/',
29
+ twitter: 'https://twitter.com/odinprotocol'
30
+ },
31
31
  type_asset: 'sdk.coin'
32
32
  },
33
33
  {
@@ -48,10 +48,6 @@ const info = {
48
48
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg'
49
49
  },
50
50
  images: [{
51
- image_sync: {
52
- chain_name: 'odin',
53
- base_denom: 'mGeo'
54
- },
55
51
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png',
56
52
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg',
57
53
  theme: {
@@ -60,6 +56,62 @@ const info = {
60
56
  }],
61
57
  type_asset: 'sdk.coin'
62
58
  },
59
+ {
60
+ description: 'DOKI the last Dragon',
61
+ denom_units: [{
62
+ denom: 'udoki',
63
+ exponent: 0
64
+ }, {
65
+ denom: 'doki',
66
+ exponent: 6
67
+ }],
68
+ base: 'udoki',
69
+ name: 'DOKI',
70
+ display: 'doki',
71
+ symbol: 'DOKI',
72
+ logo_URIs: {
73
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png'
74
+ },
75
+ coingecko_id: 'doki',
76
+ images: [{
77
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png',
78
+ theme: {
79
+ primary_color_hex: '#2e2d2a'
80
+ }
81
+ }],
82
+ socials: {
83
+ website: 'https://dokicoin.io/',
84
+ twitter: 'https://twitter.com/doki_coin'
85
+ },
86
+ type_asset: 'sdk.coin'
87
+ },
88
+ {
89
+ description: 'Myrkur the leader of OLD Order',
90
+ denom_units: [{
91
+ denom: 'umyrk',
92
+ exponent: 0
93
+ }, {
94
+ denom: 'myrk',
95
+ exponent: 6
96
+ }],
97
+ base: 'umyrk',
98
+ name: 'MYRK',
99
+ display: 'myrk',
100
+ symbol: 'MYRK',
101
+ logo_URIs: {
102
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png'
103
+ },
104
+ images: [{
105
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png',
106
+ theme: {
107
+ primary_color_hex: '#0a0707'
108
+ }
109
+ }],
110
+ socials: {
111
+ twitter: 'https://twitter.com/myrkweilds'
112
+ },
113
+ type_asset: 'sdk.coin'
114
+ },
63
115
  {
64
116
  description: 'O9W token for ODIN Protocol',
65
117
  denom_units: [{
@@ -78,16 +130,16 @@ const info = {
78
130
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg'
79
131
  },
80
132
  images: [{
81
- image_sync: {
82
- chain_name: 'odin',
83
- base_denom: 'mO9W'
84
- },
85
133
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png',
86
134
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg',
87
135
  theme: {
88
136
  primary_color_hex: '#040404'
89
137
  }
90
138
  }],
139
+ socials: {
140
+ website: 'https://www.odin9worlds.io/',
141
+ twitter: 'https://twitter.com/odin9worlds'
142
+ },
91
143
  type_asset: 'sdk.coin'
92
144
  }
93
145
  ]
@@ -1,12 +1,13 @@
1
1
  const info = {
2
2
  $schema: '../chain.schema.json',
3
3
  chain_name: 'odin',
4
- status: 'killed',
4
+ status: 'live',
5
5
  network_type: 'mainnet',
6
6
  website: 'https://odinprotocol.io/',
7
7
  pretty_name: 'Odin Protocol',
8
8
  chain_type: 'cosmos',
9
9
  chain_id: 'odin-mainnet-freya',
10
+ pre_fork_chain_name: 'odin1',
10
11
  bech32_prefix: 'odin',
11
12
  daemon_name: 'odind',
12
13
  node_home: '$HOME/.odin',
@@ -34,8 +35,12 @@ const info = {
34
35
  apis: {
35
36
  rpc: [
36
37
  {
37
- address: 'http://34.79.179.216:26657',
38
- provider: 'Odin Protocol'
38
+ address: 'https://rpc.odinprotocol.io',
39
+ provider: 'Heimdall Gateway'
40
+ },
41
+ {
42
+ address: 'https://odin.rpc.m.stavr.tech:443',
43
+ provider: '🔥STAVR🔥'
39
44
  },
40
45
  {
41
46
  address: 'https://rpc.lavenderfive.com:443/odin',
@@ -48,8 +53,12 @@ const info = {
48
53
  ],
49
54
  rest: [
50
55
  {
51
- address: 'http://34.79.179.216:1317/',
52
- provider: 'Odin Protocol'
56
+ address: 'https://api.odinprotocol.io',
57
+ provider: 'Heimdall Gateway'
58
+ },
59
+ {
60
+ address: 'https://odin.api.m.stavr.tech',
61
+ provider: '🔥STAVR🔥'
53
62
  },
54
63
  {
55
64
  address: 'https://rest.lavenderfive.com:443/odin',
@@ -60,27 +69,39 @@ const info = {
60
69
  provider: 'AutoStake 🛡️ Slash Protected'
61
70
  }
62
71
  ],
63
- grpc: [{
72
+ grpc: [
73
+ {
64
74
  address: 'odin.lavenderfive.com:443',
65
75
  provider: 'Lavender.Five Nodes 🐝'
66
- }, {
76
+ },
77
+ {
78
+ address: 'odin.grpc.m.stavr.tech:122',
79
+ provider: '🔥STAVR🔥'
80
+ },
81
+ {
67
82
  address: 'odin-mainnet-grpc.autostake.com:443',
68
83
  provider: 'AutoStake 🛡️ Slash Protected'
69
- }]
84
+ }
85
+ ]
70
86
  },
71
- explorers: [{
87
+ explorers: [
88
+ {
72
89
  kind: 'odin web',
73
90
  url: 'https://mainnet.odinprotocol.io/',
74
91
  tx_page: 'https://mainnet.odinprotocol.io/transactions/${txHash}'
75
- }, {
92
+ },
93
+ {
94
+ kind: '🔥STAVR🔥',
95
+ url: 'https://explorer.stavr.tech/Odin-Mainnet',
96
+ tx_page: 'https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}'
97
+ },
98
+ {
76
99
  kind: 'ping.pub',
77
100
  url: 'https://ping.pub/odin',
78
101
  tx_page: 'https://ping.pub/odin/tx/${txHash}'
79
- }],
102
+ }
103
+ ],
80
104
  images: [{
81
- image_sync: {
82
- chain_name: 'odin'
83
- },
84
105
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png',
85
106
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg'
86
107
  }]
@@ -0,0 +1,95 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'odin1',
4
+ assets: [
5
+ {
6
+ description: 'Staking and governance token for ODIN Protocol',
7
+ denom_units: [{
8
+ denom: 'loki',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'odin',
12
+ exponent: 6
13
+ }],
14
+ base: 'loki',
15
+ name: 'ODIN',
16
+ display: 'odin',
17
+ symbol: 'ODIN',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png',
20
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg'
21
+ },
22
+ coingecko_id: 'odin-protocol',
23
+ images: [{
24
+ image_sync: {
25
+ chain_name: 'odin',
26
+ base_denom: 'loki'
27
+ },
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png',
29
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg'
30
+ }],
31
+ type_asset: 'sdk.coin'
32
+ },
33
+ {
34
+ description: 'GEO token for ODIN Protocol',
35
+ denom_units: [{
36
+ denom: 'mGeo',
37
+ exponent: 0
38
+ }, {
39
+ denom: 'geo',
40
+ exponent: 6
41
+ }],
42
+ base: 'mGeo',
43
+ name: 'GEO',
44
+ display: 'geo',
45
+ symbol: 'GEO',
46
+ logo_URIs: {
47
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png',
48
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg'
49
+ },
50
+ images: [{
51
+ image_sync: {
52
+ chain_name: 'odin',
53
+ base_denom: 'mGeo'
54
+ },
55
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png',
56
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg',
57
+ theme: {
58
+ primary_color_hex: '#c3ebf3'
59
+ }
60
+ }],
61
+ type_asset: 'sdk.coin'
62
+ },
63
+ {
64
+ description: 'O9W token for ODIN Protocol',
65
+ denom_units: [{
66
+ denom: 'mO9W',
67
+ exponent: 0
68
+ }, {
69
+ denom: 'O9W',
70
+ exponent: 6
71
+ }],
72
+ base: 'mO9W',
73
+ name: 'O9W',
74
+ display: 'O9W',
75
+ symbol: 'O9W',
76
+ logo_URIs: {
77
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png',
78
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg'
79
+ },
80
+ images: [{
81
+ image_sync: {
82
+ chain_name: 'odin',
83
+ base_denom: 'mO9W'
84
+ },
85
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png',
86
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg',
87
+ theme: {
88
+ primary_color_hex: '#040404'
89
+ }
90
+ }],
91
+ type_asset: 'sdk.coin'
92
+ }
93
+ ]
94
+ };
95
+ export default info;