chain-registry 1.69.51 → 1.69.52
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/assets.js +2 -0
- package/esm/mainnet/canto/ibc.js +29 -0
- package/esm/mainnet/celestia/ibc.js +29 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/milkyway/assets.js +248 -0
- package/esm/mainnet/milkyway/chain.js +89 -0
- package/esm/mainnet/milkyway/ibc.js +59 -0
- package/esm/mainnet/milkyway/index.js +6 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/osmosis/assets.js +40 -0
- package/esm/mainnet/osmosis/ibc.js +30 -0
- package/esm/mainnet/pryzm/assets.js +417 -3
- package/esm/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/mainnet/assets.js +2 -0
- package/mainnet/canto/ibc.js +29 -0
- package/mainnet/celestia/ibc.js +29 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/ibc.js +2 -0
- package/mainnet/milkyway/assets.d.ts +3 -0
- package/mainnet/milkyway/assets.js +250 -0
- package/mainnet/milkyway/chain.d.ts +3 -0
- package/mainnet/milkyway/chain.js +91 -0
- package/mainnet/milkyway/ibc.d.ts +3 -0
- package/mainnet/milkyway/ibc.js +61 -0
- package/mainnet/milkyway/index.d.ts +3 -0
- package/mainnet/milkyway/index.js +12 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +3 -2
- package/mainnet/osmosis/assets.js +40 -0
- package/mainnet/osmosis/ibc.js +30 -0
- package/mainnet/pryzm/assets.js +417 -3
- package/package.json +4 -4
- package/testnet/cosmosicsprovidertestnet/chain.js +14 -14
package/esm/mainnet/assets.js
CHANGED
|
@@ -103,6 +103,7 @@ import * as _mayachain from './mayachain';
|
|
|
103
103
|
import * as _medasdigital from './medasdigital';
|
|
104
104
|
import * as _meme from './meme';
|
|
105
105
|
import * as _migaloo from './migaloo';
|
|
106
|
+
import * as _milkyway from './milkyway';
|
|
106
107
|
import * as _mises from './mises';
|
|
107
108
|
import * as _mtgbp from './mtgbp';
|
|
108
109
|
import * as _mun from './mun';
|
|
@@ -288,6 +289,7 @@ const assets = [
|
|
|
288
289
|
_medasdigital.assets,
|
|
289
290
|
_meme.assets,
|
|
290
291
|
_migaloo.assets,
|
|
292
|
+
_milkyway.assets,
|
|
291
293
|
_mises.assets,
|
|
292
294
|
_mtgbp.assets,
|
|
293
295
|
_mun.assets,
|
package/esm/mainnet/canto/ibc.js
CHANGED
|
@@ -58,6 +58,35 @@ const info = [
|
|
|
58
58
|
}
|
|
59
59
|
}]
|
|
60
60
|
},
|
|
61
|
+
{
|
|
62
|
+
$schema: '../ibc_data.schema.json',
|
|
63
|
+
chain_1: {
|
|
64
|
+
chain_name: 'canto',
|
|
65
|
+
client_id: '07-tendermint-1',
|
|
66
|
+
connection_id: 'connection-3'
|
|
67
|
+
},
|
|
68
|
+
chain_2: {
|
|
69
|
+
chain_name: 'cosmoshub',
|
|
70
|
+
client_id: '07-tendermint-873',
|
|
71
|
+
connection_id: 'connection-604'
|
|
72
|
+
},
|
|
73
|
+
channels: [{
|
|
74
|
+
chain_1: {
|
|
75
|
+
channel_id: 'channel-2',
|
|
76
|
+
port_id: 'transfer'
|
|
77
|
+
},
|
|
78
|
+
chain_2: {
|
|
79
|
+
channel_id: 'channel-358',
|
|
80
|
+
port_id: 'transfer'
|
|
81
|
+
},
|
|
82
|
+
ordering: 'unordered',
|
|
83
|
+
version: 'ics20-1',
|
|
84
|
+
tags: {
|
|
85
|
+
status: 'live',
|
|
86
|
+
preferred: true
|
|
87
|
+
}
|
|
88
|
+
}]
|
|
89
|
+
},
|
|
61
90
|
{
|
|
62
91
|
$schema: '../ibc_data.schema.json',
|
|
63
92
|
chain_1: {
|
|
@@ -173,6 +173,35 @@ const info = [
|
|
|
173
173
|
}
|
|
174
174
|
}]
|
|
175
175
|
},
|
|
176
|
+
{
|
|
177
|
+
$schema: '../ibc_data.schema.json',
|
|
178
|
+
chain_1: {
|
|
179
|
+
chain_name: 'celestia',
|
|
180
|
+
client_id: '07-tendermint-94',
|
|
181
|
+
connection_id: 'connection-64'
|
|
182
|
+
},
|
|
183
|
+
chain_2: {
|
|
184
|
+
chain_name: 'milkyway',
|
|
185
|
+
client_id: '07-tendermint-2',
|
|
186
|
+
connection_id: 'connection-1'
|
|
187
|
+
},
|
|
188
|
+
channels: [{
|
|
189
|
+
chain_1: {
|
|
190
|
+
channel_id: 'channel-49',
|
|
191
|
+
port_id: 'transfer'
|
|
192
|
+
},
|
|
193
|
+
chain_2: {
|
|
194
|
+
channel_id: 'channel-1',
|
|
195
|
+
port_id: 'transfer'
|
|
196
|
+
},
|
|
197
|
+
ordering: 'unordered',
|
|
198
|
+
version: 'ics20-1',
|
|
199
|
+
tags: {
|
|
200
|
+
status: 'live',
|
|
201
|
+
preferred: true
|
|
202
|
+
}
|
|
203
|
+
}]
|
|
204
|
+
},
|
|
176
205
|
{
|
|
177
206
|
$schema: '../ibc_data.schema.json',
|
|
178
207
|
chain_1: {
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -103,6 +103,7 @@ import * as _mayachain from './mayachain';
|
|
|
103
103
|
import * as _medasdigital from './medasdigital';
|
|
104
104
|
import * as _meme from './meme';
|
|
105
105
|
import * as _migaloo from './migaloo';
|
|
106
|
+
import * as _milkyway from './milkyway';
|
|
106
107
|
import * as _mises from './mises';
|
|
107
108
|
import * as _mtgbp from './mtgbp';
|
|
108
109
|
import * as _mun from './mun';
|
|
@@ -288,6 +289,7 @@ const chains = [
|
|
|
288
289
|
_medasdigital.chain,
|
|
289
290
|
_meme.chain,
|
|
290
291
|
_migaloo.chain,
|
|
292
|
+
_milkyway.chain,
|
|
291
293
|
_mises.chain,
|
|
292
294
|
_mtgbp.chain,
|
|
293
295
|
_mun.chain,
|
|
@@ -285,6 +285,35 @@ const info = [
|
|
|
285
285
|
}
|
|
286
286
|
}]
|
|
287
287
|
},
|
|
288
|
+
{
|
|
289
|
+
$schema: '../ibc_data.schema.json',
|
|
290
|
+
chain_1: {
|
|
291
|
+
chain_name: 'canto',
|
|
292
|
+
client_id: '07-tendermint-1',
|
|
293
|
+
connection_id: 'connection-3'
|
|
294
|
+
},
|
|
295
|
+
chain_2: {
|
|
296
|
+
chain_name: 'cosmoshub',
|
|
297
|
+
client_id: '07-tendermint-873',
|
|
298
|
+
connection_id: 'connection-604'
|
|
299
|
+
},
|
|
300
|
+
channels: [{
|
|
301
|
+
chain_1: {
|
|
302
|
+
channel_id: 'channel-2',
|
|
303
|
+
port_id: 'transfer'
|
|
304
|
+
},
|
|
305
|
+
chain_2: {
|
|
306
|
+
channel_id: 'channel-358',
|
|
307
|
+
port_id: 'transfer'
|
|
308
|
+
},
|
|
309
|
+
ordering: 'unordered',
|
|
310
|
+
version: 'ics20-1',
|
|
311
|
+
tags: {
|
|
312
|
+
status: 'live',
|
|
313
|
+
preferred: true
|
|
314
|
+
}
|
|
315
|
+
}]
|
|
316
|
+
},
|
|
288
317
|
{
|
|
289
318
|
$schema: '../ibc_data.schema.json',
|
|
290
319
|
chain_1: {
|
package/esm/mainnet/ibc.js
CHANGED
|
@@ -80,6 +80,7 @@ import * as _mars from './mars';
|
|
|
80
80
|
import * as _medasdigital from './medasdigital';
|
|
81
81
|
import * as _meme from './meme';
|
|
82
82
|
import * as _migaloo from './migaloo';
|
|
83
|
+
import * as _milkyway from './milkyway';
|
|
83
84
|
import * as _neutaro from './neutaro';
|
|
84
85
|
import * as _neutron from './neutron';
|
|
85
86
|
import * as _nibiru from './nibiru';
|
|
@@ -225,6 +226,7 @@ const ibc = [
|
|
|
225
226
|
..._medasdigital.ibc,
|
|
226
227
|
..._meme.ibc,
|
|
227
228
|
..._migaloo.ibc,
|
|
229
|
+
..._milkyway.ibc,
|
|
228
230
|
..._neutaro.ibc,
|
|
229
231
|
..._neutron.ibc,
|
|
230
232
|
..._nibiru.ibc,
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'milkyway',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native token of MilkyWay',
|
|
7
|
+
extended_description: 'MilkyWay (MILK) is the first modular staking portal, designed to redefine security and scalability within the modular ecosystem. As a pioneer of modular staking, MilkyWay integrates liquid staking and restaking solutions to address fragmented trust and enhance crypto-economic security across networks.\n\nLaunched in December 2023 as the first liquid staking solution for the Celestia ecosystem, MilkyWay empowered users to unlock staked TIA positions and engage with various DeFi protocols. This initial phase introduced milkTIA which has seen widespread adoption to become the leading LST for TIA. Building on this success, MilkyWay is now entering Phase 2: a multi-asset, multi-chain modular restaking protocol.\n\nMilkyWay’s architecture is purpose-built for modularity . Unlike traditional solutions, its modular design allows Actively Validated Services (AVSs) to fully customize, or “Plug-in” their security solutions through programmable rules, including asset delegation and slashing mechanisms. By restaking native and liquid staked assets, users can provide security to AVSs or any off-chain program and system that require its own unique validation process for verification. This approach ensures seamless integration while minimizing operational complexity.\n\nThrough programmable rules, AVSs can define asset allocation and stake distribution, offering both operator-centric and AVS-centric models for greater control. Slashing rules further enhance security through customizable mechanisms like stake slash, jail slash, and burn slash, enabling AVSs to align these features with their risk profiles. These extensible features ensure MilkyWay evolves alongside the needs of its AVS partners, redefining staking and restaking with a focus on trust, innovation, and modularity.',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'umilk',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'milk',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
type_asset: 'sdk.coin',
|
|
16
|
+
base: 'umilk',
|
|
17
|
+
name: 'Milk',
|
|
18
|
+
display: 'milk',
|
|
19
|
+
symbol: 'MILK',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg',
|
|
27
|
+
theme: {
|
|
28
|
+
primary_color_hex: '#760dbb'
|
|
29
|
+
}
|
|
30
|
+
}],
|
|
31
|
+
keywords: ['liquid staking', 'restaking'],
|
|
32
|
+
socials: {
|
|
33
|
+
website: 'https://milkyway.zone',
|
|
34
|
+
twitter: 'https://x.com/milky_way_zone'
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
description: 'The native token of the Celestia blockchain.',
|
|
39
|
+
denom_units: [{
|
|
40
|
+
denom: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
41
|
+
exponent: 0,
|
|
42
|
+
aliases: ['utia']
|
|
43
|
+
}, {
|
|
44
|
+
denom: 'tia',
|
|
45
|
+
exponent: 6
|
|
46
|
+
}],
|
|
47
|
+
type_asset: 'ics20',
|
|
48
|
+
base: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
49
|
+
name: 'Celestia',
|
|
50
|
+
display: 'tia',
|
|
51
|
+
symbol: 'TIA',
|
|
52
|
+
traces: [{
|
|
53
|
+
type: 'ibc',
|
|
54
|
+
counterparty: {
|
|
55
|
+
chain_name: 'celestia',
|
|
56
|
+
base_denom: 'utia',
|
|
57
|
+
channel_id: 'channel-2'
|
|
58
|
+
},
|
|
59
|
+
chain: {
|
|
60
|
+
channel_id: 'channel-6994',
|
|
61
|
+
path: 'transfer/channel-6994/utia'
|
|
62
|
+
}
|
|
63
|
+
}, {
|
|
64
|
+
type: 'ibc',
|
|
65
|
+
counterparty: {
|
|
66
|
+
chain_name: 'osmosis',
|
|
67
|
+
base_denom: 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877',
|
|
68
|
+
channel_id: 'channel-0'
|
|
69
|
+
},
|
|
70
|
+
chain: {
|
|
71
|
+
channel_id: 'channel-0',
|
|
72
|
+
path: 'transfer/channel-0/transfer/channel-6994/utia'
|
|
73
|
+
}
|
|
74
|
+
}],
|
|
75
|
+
logo_URIs: {
|
|
76
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
77
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
|
|
78
|
+
},
|
|
79
|
+
images: [{
|
|
80
|
+
image_sync: {
|
|
81
|
+
chain_name: 'celestia',
|
|
82
|
+
base_denom: 'utia'
|
|
83
|
+
},
|
|
84
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
85
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
|
|
86
|
+
theme: {
|
|
87
|
+
primary_color_hex: '#7c2cfb'
|
|
88
|
+
}
|
|
89
|
+
}]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
description: 'MilkyWay\'s liquid staked TIA',
|
|
93
|
+
denom_units: [{
|
|
94
|
+
denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
95
|
+
exponent: 0,
|
|
96
|
+
aliases: ['umilktia']
|
|
97
|
+
}, {
|
|
98
|
+
denom: 'milkTIA',
|
|
99
|
+
exponent: 6
|
|
100
|
+
}],
|
|
101
|
+
type_asset: 'ics20',
|
|
102
|
+
base: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
103
|
+
name: 'milkTIA',
|
|
104
|
+
display: 'milkTIA',
|
|
105
|
+
symbol: 'milkTIA',
|
|
106
|
+
traces: [{
|
|
107
|
+
type: 'liquid-stake',
|
|
108
|
+
counterparty: {
|
|
109
|
+
chain_name: 'celestia',
|
|
110
|
+
base_denom: 'utia'
|
|
111
|
+
},
|
|
112
|
+
provider: 'MilkyWay'
|
|
113
|
+
}, {
|
|
114
|
+
type: 'ibc',
|
|
115
|
+
counterparty: {
|
|
116
|
+
chain_name: 'osmosis',
|
|
117
|
+
base_denom: 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA',
|
|
118
|
+
channel_id: 'channel-0'
|
|
119
|
+
},
|
|
120
|
+
chain: {
|
|
121
|
+
channel_id: 'channel-0',
|
|
122
|
+
path: 'transfer/channel-0/factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA'
|
|
123
|
+
}
|
|
124
|
+
}],
|
|
125
|
+
logo_URIs: {
|
|
126
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.png',
|
|
127
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.svg'
|
|
128
|
+
},
|
|
129
|
+
images: [{
|
|
130
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.png',
|
|
131
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.svg',
|
|
132
|
+
theme: {
|
|
133
|
+
primary_color_hex: '#d18dfc'
|
|
134
|
+
}
|
|
135
|
+
}],
|
|
136
|
+
coingecko_id: 'milkyway-staked-tia'
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
description: 'Stride\'s liquid staked TIA',
|
|
140
|
+
denom_units: [{
|
|
141
|
+
denom: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
142
|
+
exponent: 0,
|
|
143
|
+
aliases: ['stutia']
|
|
144
|
+
}, {
|
|
145
|
+
denom: 'stTIA',
|
|
146
|
+
exponent: 6
|
|
147
|
+
}],
|
|
148
|
+
type_asset: 'ics20',
|
|
149
|
+
base: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
150
|
+
name: 'Stride Staked TIA',
|
|
151
|
+
display: 'stTIA',
|
|
152
|
+
symbol: 'stTIA',
|
|
153
|
+
traces: [
|
|
154
|
+
{
|
|
155
|
+
type: 'liquid-stake',
|
|
156
|
+
counterparty: {
|
|
157
|
+
chain_name: 'celestia',
|
|
158
|
+
base_denom: 'utia'
|
|
159
|
+
},
|
|
160
|
+
provider: 'Stride'
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'ibc',
|
|
164
|
+
counterparty: {
|
|
165
|
+
chain_name: 'stride',
|
|
166
|
+
base_denom: 'stutia',
|
|
167
|
+
channel_id: 'channel-5'
|
|
168
|
+
},
|
|
169
|
+
chain: {
|
|
170
|
+
channel_id: 'channel-326',
|
|
171
|
+
path: 'transfer/channel-326/stutia'
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
type: 'ibc',
|
|
176
|
+
counterparty: {
|
|
177
|
+
chain_name: 'osmosis',
|
|
178
|
+
base_denom: 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9',
|
|
179
|
+
channel_id: 'channel-0'
|
|
180
|
+
},
|
|
181
|
+
chain: {
|
|
182
|
+
channel_id: 'channel-0',
|
|
183
|
+
path: 'transfer/channel-0/transfer/channel-326/stutia'
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
],
|
|
187
|
+
logo_URIs: {
|
|
188
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png',
|
|
189
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg'
|
|
190
|
+
},
|
|
191
|
+
images: [{
|
|
192
|
+
image_sync: {
|
|
193
|
+
chain_name: 'stride',
|
|
194
|
+
base_denom: 'stutia'
|
|
195
|
+
},
|
|
196
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png',
|
|
197
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg',
|
|
198
|
+
theme: {
|
|
199
|
+
primary_color_hex: '#e40474'
|
|
200
|
+
}
|
|
201
|
+
}]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
description: 'The native token of the Celestia blockchain.',
|
|
205
|
+
denom_units: [{
|
|
206
|
+
denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
207
|
+
exponent: 0,
|
|
208
|
+
aliases: ['utia']
|
|
209
|
+
}, {
|
|
210
|
+
denom: 'tia',
|
|
211
|
+
exponent: 6
|
|
212
|
+
}],
|
|
213
|
+
type_asset: 'ics20',
|
|
214
|
+
base: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
215
|
+
name: 'Celestia',
|
|
216
|
+
display: 'tia',
|
|
217
|
+
symbol: 'TIA',
|
|
218
|
+
traces: [{
|
|
219
|
+
type: 'ibc',
|
|
220
|
+
counterparty: {
|
|
221
|
+
chain_name: 'celestia',
|
|
222
|
+
base_denom: 'utia',
|
|
223
|
+
channel_id: 'channel-1'
|
|
224
|
+
},
|
|
225
|
+
chain: {
|
|
226
|
+
channel_id: 'channel-1',
|
|
227
|
+
path: 'transfer/channel-1/utia'
|
|
228
|
+
}
|
|
229
|
+
}],
|
|
230
|
+
logo_URIs: {
|
|
231
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
232
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
|
|
233
|
+
},
|
|
234
|
+
images: [{
|
|
235
|
+
image_sync: {
|
|
236
|
+
chain_name: 'celestia',
|
|
237
|
+
base_denom: 'utia'
|
|
238
|
+
},
|
|
239
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
240
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
|
|
241
|
+
theme: {
|
|
242
|
+
primary_color_hex: '#7c2cfb'
|
|
243
|
+
}
|
|
244
|
+
}]
|
|
245
|
+
}
|
|
246
|
+
]
|
|
247
|
+
};
|
|
248
|
+
export default info;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'milkyway',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'mainnet',
|
|
6
|
+
website: 'https://milkyway.zone/',
|
|
7
|
+
pretty_name: 'MilkyWay',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'milkyway',
|
|
10
|
+
bech32_prefix: 'milk',
|
|
11
|
+
daemon_name: 'milkywayd',
|
|
12
|
+
node_home: '$HOME/.milkywayd',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [
|
|
17
|
+
{
|
|
18
|
+
denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
19
|
+
fixed_min_gas_price: 0.02,
|
|
20
|
+
low_gas_price: 0.025,
|
|
21
|
+
average_gas_price: 0.03,
|
|
22
|
+
high_gas_price: 0.035
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
denom: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
26
|
+
fixed_min_gas_price: 0.02,
|
|
27
|
+
low_gas_price: 0.025,
|
|
28
|
+
average_gas_price: 0.03,
|
|
29
|
+
high_gas_price: 0.035
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
denom: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
33
|
+
fixed_min_gas_price: 0.02,
|
|
34
|
+
low_gas_price: 0.025,
|
|
35
|
+
average_gas_price: 0.03,
|
|
36
|
+
high_gas_price: 0.035
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
40
|
+
fixed_min_gas_price: 0.02,
|
|
41
|
+
low_gas_price: 0.025,
|
|
42
|
+
average_gas_price: 0.03,
|
|
43
|
+
high_gas_price: 0.035
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
staking: {
|
|
48
|
+
staking_tokens: [{
|
|
49
|
+
denom: 'umilk'
|
|
50
|
+
}],
|
|
51
|
+
lock_duration: {
|
|
52
|
+
time: '1814400s'
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
codebase: {},
|
|
56
|
+
images: [{
|
|
57
|
+
image_sync: {
|
|
58
|
+
chain_name: 'milkyway',
|
|
59
|
+
base_denom: 'umilk'
|
|
60
|
+
},
|
|
61
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
62
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg',
|
|
63
|
+
theme: {
|
|
64
|
+
primary_color_hex: '#9182FD'
|
|
65
|
+
}
|
|
66
|
+
}],
|
|
67
|
+
logo_URIs: {
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
69
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg'
|
|
70
|
+
},
|
|
71
|
+
description: 'MilkyWay (MILK) is the first modular staking portal, designed to redefine security and scalability within the modular ecosystem. As a pioneer of modular staking, MilkyWay integrates liquid staking and restaking solutions to address fragmented trust and enhance crypto-economic security across networks.\n\nLaunched in December 2023 as the first liquid staking solution for the Celestia ecosystem, MilkyWay empowered users to unlock staked TIA positions and engage with various DeFi protocols. This initial phase introduced milkTIA which has seen widespread adoption to become the leading LST for TIA. Building on this success, MilkyWay is now entering Phase 2: a multi-asset, multi-chain modular restaking protocol.\n\nMilkyWay’s architecture is purpose-built for modularity . Unlike traditional solutions, its modular design allows Actively Validated Services (AVSs) to fully customize, or “Plug-in” their security solutions through programmable rules, including asset delegation and slashing mechanisms. By restaking native and liquid staked assets, users can provide security to AVSs or any off-chain program and system that require its own unique validation process for verification. This approach ensures seamless integration while minimizing operational complexity.\n\nThrough programmable rules, AVSs can define asset allocation and stake distribution, offering both operator-centric and AVS-centric models for greater control. Slashing rules further enhance security through customizable mechanisms like stake slash, jail slash, and burn slash, enabling AVSs to align these features with their risk profiles. These extensible features ensure MilkyWay evolves alongside the needs of its AVS partners, redefining staking and restaking with a focus on trust, innovation, and modularity.',
|
|
72
|
+
apis: {
|
|
73
|
+
rpc: [{
|
|
74
|
+
address: 'https://rpc.mainnet.milkyway.zone/',
|
|
75
|
+
provider: 'MilkyWay Labs'
|
|
76
|
+
}],
|
|
77
|
+
rest: [{
|
|
78
|
+
address: 'https://lcd.mainnet.milkyway.zone/',
|
|
79
|
+
provider: 'MilkyWay Labs'
|
|
80
|
+
}],
|
|
81
|
+
grpc: [{
|
|
82
|
+
address: 'grpc.mainnet.milkyway.zone',
|
|
83
|
+
provider: 'MilkyWay Labs'
|
|
84
|
+
}]
|
|
85
|
+
},
|
|
86
|
+
explorers: [],
|
|
87
|
+
keywords: ['liquid staking', 'restaking']
|
|
88
|
+
};
|
|
89
|
+
export default info;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'celestia',
|
|
5
|
+
client_id: '07-tendermint-94',
|
|
6
|
+
connection_id: 'connection-64'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'milkyway',
|
|
10
|
+
client_id: '07-tendermint-2',
|
|
11
|
+
connection_id: 'connection-1'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-49',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-1',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}, {
|
|
30
|
+
$schema: '../ibc_data.schema.json',
|
|
31
|
+
chain_1: {
|
|
32
|
+
chain_name: 'milkyway',
|
|
33
|
+
client_id: '07-tendermint-1',
|
|
34
|
+
connection_id: 'connection-0'
|
|
35
|
+
},
|
|
36
|
+
chain_2: {
|
|
37
|
+
chain_name: 'osmosis',
|
|
38
|
+
client_id: '07-tendermint-3364',
|
|
39
|
+
connection_id: 'connection-2821'
|
|
40
|
+
},
|
|
41
|
+
channels: [{
|
|
42
|
+
chain_1: {
|
|
43
|
+
channel_id: 'channel-0',
|
|
44
|
+
port_id: 'transfer'
|
|
45
|
+
},
|
|
46
|
+
chain_2: {
|
|
47
|
+
channel_id: 'channel-89298',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
ordering: 'unordered',
|
|
51
|
+
version: 'ics20-1',
|
|
52
|
+
tags: {
|
|
53
|
+
status: 'live',
|
|
54
|
+
preferred: true,
|
|
55
|
+
dex: 'osmosis'
|
|
56
|
+
}
|
|
57
|
+
}]
|
|
58
|
+
}];
|
|
59
|
+
export default info;
|
package/esm/mainnet/named.js
CHANGED
|
@@ -103,6 +103,7 @@ export * as mayachain from './mayachain';
|
|
|
103
103
|
export * as medasdigital from './medasdigital';
|
|
104
104
|
export * as meme from './meme';
|
|
105
105
|
export * as migaloo from './migaloo';
|
|
106
|
+
export * as milkyway from './milkyway';
|
|
106
107
|
export * as mises from './mises';
|
|
107
108
|
export * as mtgbp from './mtgbp';
|
|
108
109
|
export * as mun from './mun';
|
|
@@ -14260,6 +14260,46 @@ const info = {
|
|
|
14260
14260
|
}
|
|
14261
14261
|
}]
|
|
14262
14262
|
},
|
|
14263
|
+
{
|
|
14264
|
+
description: 'An alloy of XRP asset variants on Osmosis.',
|
|
14265
|
+
extended_description: 'Multiple Ripple variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of XRP.',
|
|
14266
|
+
denom_units: [{
|
|
14267
|
+
denom: 'factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP',
|
|
14268
|
+
exponent: 0
|
|
14269
|
+
}, {
|
|
14270
|
+
denom: 'allXRP',
|
|
14271
|
+
exponent: 6
|
|
14272
|
+
}],
|
|
14273
|
+
type_asset: 'sdk.coin',
|
|
14274
|
+
address: 'osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0',
|
|
14275
|
+
base: 'factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP',
|
|
14276
|
+
name: 'Ripple',
|
|
14277
|
+
display: 'allXRP',
|
|
14278
|
+
symbol: 'XRP',
|
|
14279
|
+
traces: [{
|
|
14280
|
+
type: 'synthetic',
|
|
14281
|
+
counterparty: {
|
|
14282
|
+
chain_name: 'xrpl',
|
|
14283
|
+
base_denom: 'drop'
|
|
14284
|
+
},
|
|
14285
|
+
provider: 'Osmosis'
|
|
14286
|
+
}],
|
|
14287
|
+
logo_URIs: {
|
|
14288
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
14289
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png'
|
|
14290
|
+
},
|
|
14291
|
+
images: [{
|
|
14292
|
+
image_sync: {
|
|
14293
|
+
chain_name: 'xrpl',
|
|
14294
|
+
base_denom: 'drop'
|
|
14295
|
+
},
|
|
14296
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
14297
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
14298
|
+
theme: {
|
|
14299
|
+
primary_color_hex: '#040404'
|
|
14300
|
+
}
|
|
14301
|
+
}]
|
|
14302
|
+
},
|
|
14263
14303
|
{
|
|
14264
14304
|
description: 'The Original Meme Coin of SEI Network',
|
|
14265
14305
|
denom_units: [{
|
|
@@ -2548,6 +2548,36 @@ const info = [
|
|
|
2548
2548
|
}
|
|
2549
2549
|
}]
|
|
2550
2550
|
},
|
|
2551
|
+
{
|
|
2552
|
+
$schema: '../ibc_data.schema.json',
|
|
2553
|
+
chain_1: {
|
|
2554
|
+
chain_name: 'milkyway',
|
|
2555
|
+
client_id: '07-tendermint-1',
|
|
2556
|
+
connection_id: 'connection-0'
|
|
2557
|
+
},
|
|
2558
|
+
chain_2: {
|
|
2559
|
+
chain_name: 'osmosis',
|
|
2560
|
+
client_id: '07-tendermint-3364',
|
|
2561
|
+
connection_id: 'connection-2821'
|
|
2562
|
+
},
|
|
2563
|
+
channels: [{
|
|
2564
|
+
chain_1: {
|
|
2565
|
+
channel_id: 'channel-0',
|
|
2566
|
+
port_id: 'transfer'
|
|
2567
|
+
},
|
|
2568
|
+
chain_2: {
|
|
2569
|
+
channel_id: 'channel-89298',
|
|
2570
|
+
port_id: 'transfer'
|
|
2571
|
+
},
|
|
2572
|
+
ordering: 'unordered',
|
|
2573
|
+
version: 'ics20-1',
|
|
2574
|
+
tags: {
|
|
2575
|
+
status: 'live',
|
|
2576
|
+
preferred: true,
|
|
2577
|
+
dex: 'osmosis'
|
|
2578
|
+
}
|
|
2579
|
+
}]
|
|
2580
|
+
},
|
|
2551
2581
|
{
|
|
2552
2582
|
$schema: '../ibc_data.schema.json',
|
|
2553
2583
|
chain_1: {
|