chain-registry 1.69.53 → 1.69.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/mainnet/aaronetwork/assets.js +34 -0
- package/esm/mainnet/aaronetwork/chain.js +44 -0
- package/esm/mainnet/aaronetwork/index.js +4 -0
- package/esm/mainnet/archway/assets.js +43 -0
- package/esm/mainnet/archway/ibc.js +29 -0
- package/esm/mainnet/assets.js +4 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/chihuahua/assets.js +43 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/injective/assets.js +43 -0
- package/esm/mainnet/injective/ibc.js +29 -0
- package/esm/mainnet/juno/assets.js +43 -0
- package/esm/mainnet/kopi/assets.js +395 -0
- package/esm/mainnet/kopi/chain.js +203 -0
- package/esm/mainnet/kopi/ibc.js +148 -0
- package/esm/mainnet/kopi/index.js +6 -0
- package/esm/mainnet/migaloo/ibc.js +29 -0
- package/esm/mainnet/named.js +2 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/persistence/assets.js +12 -6
- package/esm/mainnet/synternet/chain.js +20 -6
- package/esm/mainnet/terra2/assets.js +43 -0
- package/esm/mainnet/terra2/ibc.js +29 -0
- package/esm/mainnet/xion/chain.js +25 -0
- package/mainnet/aaronetwork/assets.d.ts +3 -0
- package/mainnet/aaronetwork/assets.js +36 -0
- package/mainnet/aaronetwork/chain.d.ts +3 -0
- package/mainnet/aaronetwork/chain.js +46 -0
- package/mainnet/aaronetwork/index.d.ts +2 -0
- package/mainnet/aaronetwork/index.js +10 -0
- package/mainnet/archway/assets.js +43 -0
- package/mainnet/archway/ibc.js +29 -0
- package/mainnet/assets.js +4 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/chihuahua/assets.js +43 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/ibc.js +2 -0
- package/mainnet/injective/assets.js +43 -0
- package/mainnet/injective/ibc.js +29 -0
- package/mainnet/juno/assets.js +43 -0
- package/mainnet/kopi/assets.d.ts +3 -0
- package/mainnet/kopi/assets.js +397 -0
- package/mainnet/kopi/chain.d.ts +3 -0
- package/mainnet/kopi/chain.js +205 -0
- package/mainnet/kopi/ibc.d.ts +3 -0
- package/mainnet/kopi/ibc.js +150 -0
- package/mainnet/kopi/index.d.ts +3 -0
- package/mainnet/kopi/index.js +12 -0
- package/mainnet/migaloo/ibc.js +29 -0
- package/mainnet/named.d.ts +2 -0
- package/mainnet/named.js +6 -4
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/persistence/assets.js +12 -6
- package/mainnet/synternet/chain.js +20 -6
- package/mainnet/terra2/assets.js +43 -0
- package/mainnet/terra2/ibc.js +29 -0
- package/mainnet/xion/chain.js +25 -0
- package/package.json +4 -4
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'cosmoshub',
|
|
6
|
+
client_id: '07-tendermint-1332',
|
|
7
|
+
connection_id: 'connection-1065'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'kopi',
|
|
11
|
+
client_id: '07-tendermint-4',
|
|
12
|
+
connection_id: 'connection-8'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-1253',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-7',
|
|
21
|
+
port_id: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain_1: {
|
|
34
|
+
chain_name: 'injective',
|
|
35
|
+
client_id: '07-tendermint-278',
|
|
36
|
+
connection_id: 'connection-281'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'kopi',
|
|
40
|
+
client_id: '07-tendermint-0',
|
|
41
|
+
connection_id: 'connection-0'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-376',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-1',
|
|
50
|
+
port_id: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true
|
|
57
|
+
}
|
|
58
|
+
}]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
$schema: '../ibc_data.schema.json',
|
|
62
|
+
chain_1: {
|
|
63
|
+
chain_name: 'kopi',
|
|
64
|
+
client_id: '07-tendermint-0',
|
|
65
|
+
connection_id: 'connection-0'
|
|
66
|
+
},
|
|
67
|
+
chain_2: {
|
|
68
|
+
chain_name: 'noble',
|
|
69
|
+
client_id: '07-tendermint-124',
|
|
70
|
+
connection_id: 'connection-120'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain_1: {
|
|
74
|
+
channel_id: 'channel-0',
|
|
75
|
+
port_id: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain_2: {
|
|
78
|
+
channel_id: 'channel-109',
|
|
79
|
+
port_id: 'transfer'
|
|
80
|
+
},
|
|
81
|
+
ordering: 'unordered',
|
|
82
|
+
version: 'ics20-1',
|
|
83
|
+
tags: {
|
|
84
|
+
status: 'live',
|
|
85
|
+
preferred: true
|
|
86
|
+
}
|
|
87
|
+
}]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
$schema: '../ibc_data.schema.json',
|
|
91
|
+
chain_1: {
|
|
92
|
+
chain_name: 'kopi',
|
|
93
|
+
client_id: '07-tendermint-3',
|
|
94
|
+
connection_id: 'connection-3'
|
|
95
|
+
},
|
|
96
|
+
chain_2: {
|
|
97
|
+
chain_name: 'osmosis',
|
|
98
|
+
client_id: '07-tendermint-3359',
|
|
99
|
+
connection_id: 'connection-2816'
|
|
100
|
+
},
|
|
101
|
+
channels: [{
|
|
102
|
+
chain_1: {
|
|
103
|
+
channel_id: 'channel-6',
|
|
104
|
+
port_id: 'transfer'
|
|
105
|
+
},
|
|
106
|
+
chain_2: {
|
|
107
|
+
channel_id: 'channel-88475',
|
|
108
|
+
port_id: 'transfer'
|
|
109
|
+
},
|
|
110
|
+
ordering: 'unordered',
|
|
111
|
+
version: 'ics20-1',
|
|
112
|
+
tags: {
|
|
113
|
+
status: 'live',
|
|
114
|
+
preferred: true
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
$schema: '../ibc_data.schema.json',
|
|
120
|
+
chain_1: {
|
|
121
|
+
chain_name: 'kopi',
|
|
122
|
+
client_id: '07-tendermint-2',
|
|
123
|
+
connection_id: 'connection-2'
|
|
124
|
+
},
|
|
125
|
+
chain_2: {
|
|
126
|
+
chain_name: 'terra2',
|
|
127
|
+
client_id: '07-tendermint-426',
|
|
128
|
+
connection_id: 'connection-440'
|
|
129
|
+
},
|
|
130
|
+
channels: [{
|
|
131
|
+
chain_1: {
|
|
132
|
+
channel_id: 'channel-5',
|
|
133
|
+
port_id: 'transfer'
|
|
134
|
+
},
|
|
135
|
+
chain_2: {
|
|
136
|
+
channel_id: 'channel-586',
|
|
137
|
+
port_id: 'transfer'
|
|
138
|
+
},
|
|
139
|
+
ordering: 'unordered',
|
|
140
|
+
version: 'ics20-1',
|
|
141
|
+
tags: {
|
|
142
|
+
status: 'live',
|
|
143
|
+
preferred: true
|
|
144
|
+
}
|
|
145
|
+
}]
|
|
146
|
+
}
|
|
147
|
+
];
|
|
148
|
+
export default info;
|
|
@@ -1,4 +1,33 @@
|
|
|
1
1
|
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'archway',
|
|
6
|
+
client_id: '07-tendermint-119',
|
|
7
|
+
connection_id: 'connection-114'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'migaloo',
|
|
11
|
+
client_id: '07-tendermint-138',
|
|
12
|
+
connection_id: 'connection-108'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-184',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-141',
|
|
21
|
+
port_id: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
2
31
|
{
|
|
3
32
|
$schema: '../ibc_data.schema.json',
|
|
4
33
|
chain_1: {
|
package/esm/mainnet/named.js
CHANGED
|
@@ -3,6 +3,7 @@ export * as rootstock from './rootstock';
|
|
|
3
3
|
export * as solana from './solana';
|
|
4
4
|
export * as ton from './ton';
|
|
5
5
|
export * as tron from './tron';
|
|
6
|
+
export * as aaronetwork from './aaronetwork';
|
|
6
7
|
export * as acrechain from './acrechain';
|
|
7
8
|
export * as agoric from './agoric';
|
|
8
9
|
export * as aioz from './aioz';
|
|
@@ -86,6 +87,7 @@ export * as kava from './kava';
|
|
|
86
87
|
export * as kichain from './kichain';
|
|
87
88
|
export * as kimanetwork from './kimanetwork';
|
|
88
89
|
export * as konstellation from './konstellation';
|
|
90
|
+
export * as kopi from './kopi';
|
|
89
91
|
export * as kujira from './kujira';
|
|
90
92
|
export * as kyve from './kyve';
|
|
91
93
|
export * as lambda from './lambda';
|
package/esm/mainnet/noble/ibc.js
CHANGED
|
@@ -521,6 +521,35 @@ const info = [
|
|
|
521
521
|
}
|
|
522
522
|
}]
|
|
523
523
|
},
|
|
524
|
+
{
|
|
525
|
+
$schema: '../ibc_data.schema.json',
|
|
526
|
+
chain_1: {
|
|
527
|
+
chain_name: 'kopi',
|
|
528
|
+
client_id: '07-tendermint-0',
|
|
529
|
+
connection_id: 'connection-0'
|
|
530
|
+
},
|
|
531
|
+
chain_2: {
|
|
532
|
+
chain_name: 'noble',
|
|
533
|
+
client_id: '07-tendermint-124',
|
|
534
|
+
connection_id: 'connection-120'
|
|
535
|
+
},
|
|
536
|
+
channels: [{
|
|
537
|
+
chain_1: {
|
|
538
|
+
channel_id: 'channel-0',
|
|
539
|
+
port_id: 'transfer'
|
|
540
|
+
},
|
|
541
|
+
chain_2: {
|
|
542
|
+
channel_id: 'channel-109',
|
|
543
|
+
port_id: 'transfer'
|
|
544
|
+
},
|
|
545
|
+
ordering: 'unordered',
|
|
546
|
+
version: 'ics20-1',
|
|
547
|
+
tags: {
|
|
548
|
+
status: 'live',
|
|
549
|
+
preferred: true
|
|
550
|
+
}
|
|
551
|
+
}]
|
|
552
|
+
},
|
|
524
553
|
{
|
|
525
554
|
$schema: '../ibc_data.schema.json',
|
|
526
555
|
chain_1: {
|
|
@@ -2134,6 +2134,35 @@ const info = [
|
|
|
2134
2134
|
}
|
|
2135
2135
|
}]
|
|
2136
2136
|
},
|
|
2137
|
+
{
|
|
2138
|
+
$schema: '../ibc_data.schema.json',
|
|
2139
|
+
chain_1: {
|
|
2140
|
+
chain_name: 'kopi',
|
|
2141
|
+
client_id: '07-tendermint-3',
|
|
2142
|
+
connection_id: 'connection-3'
|
|
2143
|
+
},
|
|
2144
|
+
chain_2: {
|
|
2145
|
+
chain_name: 'osmosis',
|
|
2146
|
+
client_id: '07-tendermint-3359',
|
|
2147
|
+
connection_id: 'connection-2816'
|
|
2148
|
+
},
|
|
2149
|
+
channels: [{
|
|
2150
|
+
chain_1: {
|
|
2151
|
+
channel_id: 'channel-6',
|
|
2152
|
+
port_id: 'transfer'
|
|
2153
|
+
},
|
|
2154
|
+
chain_2: {
|
|
2155
|
+
channel_id: 'channel-88475',
|
|
2156
|
+
port_id: 'transfer'
|
|
2157
|
+
},
|
|
2158
|
+
ordering: 'unordered',
|
|
2159
|
+
version: 'ics20-1',
|
|
2160
|
+
tags: {
|
|
2161
|
+
status: 'live',
|
|
2162
|
+
preferred: true
|
|
2163
|
+
}
|
|
2164
|
+
}]
|
|
2165
|
+
},
|
|
2137
2166
|
{
|
|
2138
2167
|
$schema: '../ibc_data.schema.json',
|
|
2139
2168
|
chain_1: {
|
|
@@ -37,7 +37,7 @@ const info = {
|
|
|
37
37
|
type_asset: 'sdk.coin'
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
description: 'PSTAKE Liquid-Staked ATOM',
|
|
40
|
+
description: '(Deprecated) PSTAKE Liquid-Staked ATOM',
|
|
41
41
|
denom_units: [{
|
|
42
42
|
denom: 'stk/uatom',
|
|
43
43
|
exponent: 0,
|
|
@@ -47,6 +47,7 @@ const info = {
|
|
|
47
47
|
exponent: 6,
|
|
48
48
|
aliases: ['stk/atom']
|
|
49
49
|
}],
|
|
50
|
+
deprecated: true,
|
|
50
51
|
base: 'stk/uatom',
|
|
51
52
|
name: 'PSTAKE staked ATOM',
|
|
52
53
|
display: 'stkatom',
|
|
@@ -309,7 +310,7 @@ const info = {
|
|
|
309
310
|
}
|
|
310
311
|
},
|
|
311
312
|
{
|
|
312
|
-
description: 'PSTAKE Liquid-Staked OSMO',
|
|
313
|
+
description: '(Deprecated) PSTAKE Liquid-Staked OSMO',
|
|
313
314
|
denom_units: [{
|
|
314
315
|
denom: 'stk/uosmo',
|
|
315
316
|
exponent: 0,
|
|
@@ -319,6 +320,7 @@ const info = {
|
|
|
319
320
|
exponent: 6,
|
|
320
321
|
aliases: ['stk/osmo']
|
|
321
322
|
}],
|
|
323
|
+
deprecated: true,
|
|
322
324
|
base: 'stk/uosmo',
|
|
323
325
|
name: 'PSTAKE staked OSMO',
|
|
324
326
|
display: 'stkosmo',
|
|
@@ -346,7 +348,7 @@ const info = {
|
|
|
346
348
|
type_asset: 'sdk.coin'
|
|
347
349
|
},
|
|
348
350
|
{
|
|
349
|
-
description: 'PSTAKE Liquid-Staked DYDX',
|
|
351
|
+
description: '(Deprecated) PSTAKE Liquid-Staked DYDX',
|
|
350
352
|
denom_units: [{
|
|
351
353
|
denom: 'stk/adydx',
|
|
352
354
|
exponent: 0,
|
|
@@ -356,6 +358,7 @@ const info = {
|
|
|
356
358
|
exponent: 18,
|
|
357
359
|
aliases: ['stk/dydx']
|
|
358
360
|
}],
|
|
361
|
+
deprecated: true,
|
|
359
362
|
base: 'stk/adydx',
|
|
360
363
|
name: 'PSTAKE staked DYDX',
|
|
361
364
|
display: 'stkdydx',
|
|
@@ -382,7 +385,7 @@ const info = {
|
|
|
382
385
|
type_asset: 'sdk.coin'
|
|
383
386
|
},
|
|
384
387
|
{
|
|
385
|
-
description: 'PSTAKE Liquid-Staked STARS',
|
|
388
|
+
description: '(Deprecated) PSTAKE Liquid-Staked STARS',
|
|
386
389
|
denom_units: [{
|
|
387
390
|
denom: 'stk/ustars',
|
|
388
391
|
exponent: 0,
|
|
@@ -392,6 +395,7 @@ const info = {
|
|
|
392
395
|
exponent: 6,
|
|
393
396
|
aliases: ['stk/stars']
|
|
394
397
|
}],
|
|
398
|
+
deprecated: true,
|
|
395
399
|
base: 'stk/ustars',
|
|
396
400
|
name: 'PSTAKE staked STARS',
|
|
397
401
|
display: 'stkstars',
|
|
@@ -505,7 +509,7 @@ const info = {
|
|
|
505
509
|
}]
|
|
506
510
|
},
|
|
507
511
|
{
|
|
508
|
-
description: 'PSTAKE Liquid-Staked HUAHUA',
|
|
512
|
+
description: '(Deprecated) PSTAKE Liquid-Staked HUAHUA',
|
|
509
513
|
denom_units: [{
|
|
510
514
|
denom: 'stk/uhuahua',
|
|
511
515
|
exponent: 0,
|
|
@@ -515,6 +519,7 @@ const info = {
|
|
|
515
519
|
exponent: 6,
|
|
516
520
|
aliases: ['stk/huahua']
|
|
517
521
|
}],
|
|
522
|
+
deprecated: true,
|
|
518
523
|
base: 'stk/uhuahua',
|
|
519
524
|
name: 'PSTAKE staked HUAHUA',
|
|
520
525
|
display: 'stkhuahua',
|
|
@@ -583,7 +588,7 @@ const info = {
|
|
|
583
588
|
}
|
|
584
589
|
},
|
|
585
590
|
{
|
|
586
|
-
description: 'PSTAKE Liquid-Staked XPRT',
|
|
591
|
+
description: '(Deprecated) PSTAKE Liquid-Staked XPRT',
|
|
587
592
|
denom_units: [{
|
|
588
593
|
denom: 'stk/uxprt',
|
|
589
594
|
exponent: 0,
|
|
@@ -593,6 +598,7 @@ const info = {
|
|
|
593
598
|
exponent: 6,
|
|
594
599
|
aliases: ['stk/xprt']
|
|
595
600
|
}],
|
|
601
|
+
deprecated: true,
|
|
596
602
|
base: 'stk/uxprt',
|
|
597
603
|
name: 'PSTAKE staked XPRT',
|
|
598
604
|
display: 'stkxprt',
|
|
@@ -33,20 +33,34 @@ const info = {
|
|
|
33
33
|
},
|
|
34
34
|
description: 'Synternet is the backbone of the Data Layer, a protocol serving as the customizable execution layer between all blockchains. It enables builders to See, Interpret and Act on any data from any chain, supercharging their applications.',
|
|
35
35
|
apis: {
|
|
36
|
-
rpc: [
|
|
36
|
+
rpc: [
|
|
37
|
+
{
|
|
37
38
|
address: 'https://rpc.synternet.com/',
|
|
38
39
|
provider: 'Synternet'
|
|
39
|
-
},
|
|
40
|
+
},
|
|
41
|
+
{
|
|
40
42
|
address: 'https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
41
43
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
address: 'https://synternet-mainnet-rpc.autostake.com:443',
|
|
47
|
+
provider: 'AutoStake 🛡️ Slash Protected'
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
rest: [
|
|
51
|
+
{
|
|
44
52
|
address: 'https://api.synternet.com/',
|
|
45
53
|
provider: 'Synternet'
|
|
46
|
-
},
|
|
54
|
+
},
|
|
55
|
+
{
|
|
47
56
|
address: 'https://synternet_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
48
57
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
49
|
-
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'https://synternet-mainnet-lcd.autostake.com:443',
|
|
61
|
+
provider: 'AutoStake 🛡️ Slash Protected'
|
|
62
|
+
}
|
|
63
|
+
]
|
|
50
64
|
},
|
|
51
65
|
explorers: [
|
|
52
66
|
{
|
|
@@ -1410,6 +1410,49 @@ const info = {
|
|
|
1410
1410
|
website: 'https://www.cryptodungeon.org',
|
|
1411
1411
|
twitter: 'https://twitter.com/cryptodungeonma'
|
|
1412
1412
|
}
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
description: 'The native token of Migaloo Chain',
|
|
1416
|
+
denom_units: [{
|
|
1417
|
+
denom: 'ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB',
|
|
1418
|
+
exponent: 0,
|
|
1419
|
+
aliases: ['uwhale']
|
|
1420
|
+
}, {
|
|
1421
|
+
denom: 'whale',
|
|
1422
|
+
exponent: 6
|
|
1423
|
+
}],
|
|
1424
|
+
type_asset: 'ics20',
|
|
1425
|
+
base: 'ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB',
|
|
1426
|
+
name: 'Migaloo',
|
|
1427
|
+
display: 'whale',
|
|
1428
|
+
symbol: 'WHALE',
|
|
1429
|
+
traces: [{
|
|
1430
|
+
type: 'ibc',
|
|
1431
|
+
counterparty: {
|
|
1432
|
+
chain_name: 'migaloo',
|
|
1433
|
+
base_denom: 'uwhale',
|
|
1434
|
+
channel_id: 'channel-0'
|
|
1435
|
+
},
|
|
1436
|
+
chain: {
|
|
1437
|
+
channel_id: 'channel-86',
|
|
1438
|
+
path: 'transfer/channel-86/uwhale'
|
|
1439
|
+
}
|
|
1440
|
+
}],
|
|
1441
|
+
logo_URIs: {
|
|
1442
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
|
|
1443
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
|
|
1444
|
+
},
|
|
1445
|
+
images: [{
|
|
1446
|
+
image_sync: {
|
|
1447
|
+
chain_name: 'migaloo',
|
|
1448
|
+
base_denom: 'uwhale'
|
|
1449
|
+
},
|
|
1450
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
|
|
1451
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
|
|
1452
|
+
theme: {
|
|
1453
|
+
primary_color_hex: '#1c1c1c'
|
|
1454
|
+
}
|
|
1455
|
+
}]
|
|
1413
1456
|
}
|
|
1414
1457
|
]
|
|
1415
1458
|
};
|
|
@@ -537,6 +537,35 @@ const info = [
|
|
|
537
537
|
}
|
|
538
538
|
}]
|
|
539
539
|
},
|
|
540
|
+
{
|
|
541
|
+
$schema: '../ibc_data.schema.json',
|
|
542
|
+
chain_1: {
|
|
543
|
+
chain_name: 'kopi',
|
|
544
|
+
client_id: '07-tendermint-2',
|
|
545
|
+
connection_id: 'connection-2'
|
|
546
|
+
},
|
|
547
|
+
chain_2: {
|
|
548
|
+
chain_name: 'terra2',
|
|
549
|
+
client_id: '07-tendermint-426',
|
|
550
|
+
connection_id: 'connection-440'
|
|
551
|
+
},
|
|
552
|
+
channels: [{
|
|
553
|
+
chain_1: {
|
|
554
|
+
channel_id: 'channel-5',
|
|
555
|
+
port_id: 'transfer'
|
|
556
|
+
},
|
|
557
|
+
chain_2: {
|
|
558
|
+
channel_id: 'channel-586',
|
|
559
|
+
port_id: 'transfer'
|
|
560
|
+
},
|
|
561
|
+
ordering: 'unordered',
|
|
562
|
+
version: 'ics20-1',
|
|
563
|
+
tags: {
|
|
564
|
+
status: 'live',
|
|
565
|
+
preferred: true
|
|
566
|
+
}
|
|
567
|
+
}]
|
|
568
|
+
},
|
|
540
569
|
{
|
|
541
570
|
$schema: '../ibc_data.schema.json',
|
|
542
571
|
chain_1: {
|
|
@@ -44,6 +44,14 @@ const info = {
|
|
|
44
44
|
{
|
|
45
45
|
address: 'https://xion-rpc.polkachu.com',
|
|
46
46
|
provider: 'Polkachu'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
address: 'https://xion-mainnet-rpc.autostake.com:443',
|
|
50
|
+
provider: 'AutoStake 🛡️ Slash Protected'
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
address: 'https://xion_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
54
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
47
55
|
}
|
|
48
56
|
],
|
|
49
57
|
rest: [
|
|
@@ -62,6 +70,14 @@ const info = {
|
|
|
62
70
|
{
|
|
63
71
|
address: 'https://xion-api.polkachu.com',
|
|
64
72
|
provider: 'Polkachu'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
address: 'https://xion-mainnet-lcd.autostake.com:443',
|
|
76
|
+
provider: 'AutoStake 🛡️ Slash Protected'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://xion_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
80
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
65
81
|
}
|
|
66
82
|
],
|
|
67
83
|
grpc: [
|
|
@@ -76,6 +92,10 @@ const info = {
|
|
|
76
92
|
{
|
|
77
93
|
address: 'xion-grpc.polkachu.com:22390',
|
|
78
94
|
provider: 'Polkachu'
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
address: 'xion-mainnet-grpc.autostake.com:443',
|
|
98
|
+
provider: 'AutoStake 🛡️ Slash Protected'
|
|
79
99
|
}
|
|
80
100
|
]
|
|
81
101
|
},
|
|
@@ -83,6 +103,11 @@ const info = {
|
|
|
83
103
|
url: 'https://explorer.burnt.com/xion-mainnet-1',
|
|
84
104
|
tx_page: 'https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}',
|
|
85
105
|
account_page: 'https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}'
|
|
106
|
+
}, {
|
|
107
|
+
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
108
|
+
url: 'https://explorer.whenmoonwhenlambo.money/xion',
|
|
109
|
+
tx_page: 'https://explorer.whenmoonwhenlambo.money/xion/tx/${txHash}',
|
|
110
|
+
account_page: 'https://explorer.whenmoonwhenlambo.money/xion/account/${accountAddress}'
|
|
86
111
|
}],
|
|
87
112
|
images: [{
|
|
88
113
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png'
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'aaronetwork',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'Aaron Network is an innovative platform for secure and private messaging, integrated into the blockchain ecosystem. We also offer a unique address reputation scoring system, ensuring that every user can interact with others confidently.',
|
|
8
|
+
extended_description: 'Aaron Network is an innovative platform for secure and private messaging, integrated into the blockchain ecosystem. We also offer a unique address reputation scoring system, ensuring that every user can interact with others confidently. One of our key tools is address scoring. This blockchain-based solution helps users assess the reliability of those they interact with. You’ll be able to better understand who is on the other end of your communication, making interactions on Aaron Network safer and more trustworthy.',
|
|
9
|
+
denom_units: [{
|
|
10
|
+
denom: 'uaaron',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'AARON',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'uaaron',
|
|
17
|
+
name: 'Aaron Network',
|
|
18
|
+
display: 'AARON',
|
|
19
|
+
symbol: 'AARON',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png'
|
|
22
|
+
},
|
|
23
|
+
socials: {
|
|
24
|
+
website: 'https://aaronetwork.xyz',
|
|
25
|
+
twitter: 'https://x.com/aaronetwork'
|
|
26
|
+
},
|
|
27
|
+
images: [{
|
|
28
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png',
|
|
29
|
+
theme: {
|
|
30
|
+
circle: false
|
|
31
|
+
}
|
|
32
|
+
}],
|
|
33
|
+
type_asset: 'sdk.coin'
|
|
34
|
+
}]
|
|
35
|
+
};
|
|
36
|
+
exports.default = info;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'aaronetwork',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
website: 'https://aaronetwork.xyz',
|
|
10
|
+
pretty_name: 'Aaron Network',
|
|
11
|
+
chain_id: 'aaronetwork',
|
|
12
|
+
bech32_prefix: 'aaron',
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'uaaron',
|
|
17
|
+
fixed_min_gas_price: 0,
|
|
18
|
+
low_gas_price: 0,
|
|
19
|
+
average_gas_price: 0,
|
|
20
|
+
high_gas_price: 0.001
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'uaaron'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {},
|
|
29
|
+
apis: {
|
|
30
|
+
rpc: [{
|
|
31
|
+
address: 'https://mainnet-rpc.aaronetwork.xyz',
|
|
32
|
+
provider: 'Aaron Network Foundation'
|
|
33
|
+
}],
|
|
34
|
+
rest: [{
|
|
35
|
+
address: 'https://mainnet-api.aaronetwork.xyz',
|
|
36
|
+
provider: 'Aaron Network Foundation'
|
|
37
|
+
}]
|
|
38
|
+
},
|
|
39
|
+
explorers: [{
|
|
40
|
+
kind: 'Aaron Network',
|
|
41
|
+
url: 'https://explorer.aaronetwork.xyz',
|
|
42
|
+
tx_page: 'https://explorer.aaronetwork.xyz/hash/${txHash}',
|
|
43
|
+
account_page: 'https://explorer.aaronetwork.xyz/address/${accountAddress}'
|
|
44
|
+
}]
|
|
45
|
+
};
|
|
46
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|