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/mainnet/canto/ibc.js
CHANGED
|
@@ -60,6 +60,35 @@ const info = [
|
|
|
60
60
|
}
|
|
61
61
|
}]
|
|
62
62
|
},
|
|
63
|
+
{
|
|
64
|
+
$schema: '../ibc_data.schema.json',
|
|
65
|
+
chain_1: {
|
|
66
|
+
chain_name: 'canto',
|
|
67
|
+
client_id: '07-tendermint-1',
|
|
68
|
+
connection_id: 'connection-3'
|
|
69
|
+
},
|
|
70
|
+
chain_2: {
|
|
71
|
+
chain_name: 'cosmoshub',
|
|
72
|
+
client_id: '07-tendermint-873',
|
|
73
|
+
connection_id: 'connection-604'
|
|
74
|
+
},
|
|
75
|
+
channels: [{
|
|
76
|
+
chain_1: {
|
|
77
|
+
channel_id: 'channel-2',
|
|
78
|
+
port_id: 'transfer'
|
|
79
|
+
},
|
|
80
|
+
chain_2: {
|
|
81
|
+
channel_id: 'channel-358',
|
|
82
|
+
port_id: 'transfer'
|
|
83
|
+
},
|
|
84
|
+
ordering: 'unordered',
|
|
85
|
+
version: 'ics20-1',
|
|
86
|
+
tags: {
|
|
87
|
+
status: 'live',
|
|
88
|
+
preferred: true
|
|
89
|
+
}
|
|
90
|
+
}]
|
|
91
|
+
},
|
|
63
92
|
{
|
|
64
93
|
$schema: '../ibc_data.schema.json',
|
|
65
94
|
chain_1: {
|
package/mainnet/celestia/ibc.js
CHANGED
|
@@ -175,6 +175,35 @@ const info = [
|
|
|
175
175
|
}
|
|
176
176
|
}]
|
|
177
177
|
},
|
|
178
|
+
{
|
|
179
|
+
$schema: '../ibc_data.schema.json',
|
|
180
|
+
chain_1: {
|
|
181
|
+
chain_name: 'celestia',
|
|
182
|
+
client_id: '07-tendermint-94',
|
|
183
|
+
connection_id: 'connection-64'
|
|
184
|
+
},
|
|
185
|
+
chain_2: {
|
|
186
|
+
chain_name: 'milkyway',
|
|
187
|
+
client_id: '07-tendermint-2',
|
|
188
|
+
connection_id: 'connection-1'
|
|
189
|
+
},
|
|
190
|
+
channels: [{
|
|
191
|
+
chain_1: {
|
|
192
|
+
channel_id: 'channel-49',
|
|
193
|
+
port_id: 'transfer'
|
|
194
|
+
},
|
|
195
|
+
chain_2: {
|
|
196
|
+
channel_id: 'channel-1',
|
|
197
|
+
port_id: 'transfer'
|
|
198
|
+
},
|
|
199
|
+
ordering: 'unordered',
|
|
200
|
+
version: 'ics20-1',
|
|
201
|
+
tags: {
|
|
202
|
+
status: 'live',
|
|
203
|
+
preferred: true
|
|
204
|
+
}
|
|
205
|
+
}]
|
|
206
|
+
},
|
|
178
207
|
{
|
|
179
208
|
$schema: '../ibc_data.schema.json',
|
|
180
209
|
chain_1: {
|
package/mainnet/chains.js
CHANGED
|
@@ -128,6 +128,7 @@ const _mayachain = __importStar(require("./mayachain"));
|
|
|
128
128
|
const _medasdigital = __importStar(require("./medasdigital"));
|
|
129
129
|
const _meme = __importStar(require("./meme"));
|
|
130
130
|
const _migaloo = __importStar(require("./migaloo"));
|
|
131
|
+
const _milkyway = __importStar(require("./milkyway"));
|
|
131
132
|
const _mises = __importStar(require("./mises"));
|
|
132
133
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
133
134
|
const _mun = __importStar(require("./mun"));
|
|
@@ -313,6 +314,7 @@ const chains = [
|
|
|
313
314
|
_medasdigital.chain,
|
|
314
315
|
_meme.chain,
|
|
315
316
|
_migaloo.chain,
|
|
317
|
+
_milkyway.chain,
|
|
316
318
|
_mises.chain,
|
|
317
319
|
_mtgbp.chain,
|
|
318
320
|
_mun.chain,
|
package/mainnet/cosmoshub/ibc.js
CHANGED
|
@@ -287,6 +287,35 @@ const info = [
|
|
|
287
287
|
}
|
|
288
288
|
}]
|
|
289
289
|
},
|
|
290
|
+
{
|
|
291
|
+
$schema: '../ibc_data.schema.json',
|
|
292
|
+
chain_1: {
|
|
293
|
+
chain_name: 'canto',
|
|
294
|
+
client_id: '07-tendermint-1',
|
|
295
|
+
connection_id: 'connection-3'
|
|
296
|
+
},
|
|
297
|
+
chain_2: {
|
|
298
|
+
chain_name: 'cosmoshub',
|
|
299
|
+
client_id: '07-tendermint-873',
|
|
300
|
+
connection_id: 'connection-604'
|
|
301
|
+
},
|
|
302
|
+
channels: [{
|
|
303
|
+
chain_1: {
|
|
304
|
+
channel_id: 'channel-2',
|
|
305
|
+
port_id: 'transfer'
|
|
306
|
+
},
|
|
307
|
+
chain_2: {
|
|
308
|
+
channel_id: 'channel-358',
|
|
309
|
+
port_id: 'transfer'
|
|
310
|
+
},
|
|
311
|
+
ordering: 'unordered',
|
|
312
|
+
version: 'ics20-1',
|
|
313
|
+
tags: {
|
|
314
|
+
status: 'live',
|
|
315
|
+
preferred: true
|
|
316
|
+
}
|
|
317
|
+
}]
|
|
318
|
+
},
|
|
290
319
|
{
|
|
291
320
|
$schema: '../ibc_data.schema.json',
|
|
292
321
|
chain_1: {
|
package/mainnet/ibc.js
CHANGED
|
@@ -105,6 +105,7 @@ const _mars = __importStar(require("./mars"));
|
|
|
105
105
|
const _medasdigital = __importStar(require("./medasdigital"));
|
|
106
106
|
const _meme = __importStar(require("./meme"));
|
|
107
107
|
const _migaloo = __importStar(require("./migaloo"));
|
|
108
|
+
const _milkyway = __importStar(require("./milkyway"));
|
|
108
109
|
const _neutaro = __importStar(require("./neutaro"));
|
|
109
110
|
const _neutron = __importStar(require("./neutron"));
|
|
110
111
|
const _nibiru = __importStar(require("./nibiru"));
|
|
@@ -250,6 +251,7 @@ const ibc = [
|
|
|
250
251
|
..._medasdigital.ibc,
|
|
251
252
|
..._meme.ibc,
|
|
252
253
|
..._migaloo.ibc,
|
|
254
|
+
..._milkyway.ibc,
|
|
253
255
|
..._neutaro.ibc,
|
|
254
256
|
..._neutron.ibc,
|
|
255
257
|
..._nibiru.ibc,
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'milkyway',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native token of MilkyWay',
|
|
9
|
+
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.',
|
|
10
|
+
denom_units: [{
|
|
11
|
+
denom: 'umilk',
|
|
12
|
+
exponent: 0
|
|
13
|
+
}, {
|
|
14
|
+
denom: 'milk',
|
|
15
|
+
exponent: 6
|
|
16
|
+
}],
|
|
17
|
+
type_asset: 'sdk.coin',
|
|
18
|
+
base: 'umilk',
|
|
19
|
+
name: 'Milk',
|
|
20
|
+
display: 'milk',
|
|
21
|
+
symbol: 'MILK',
|
|
22
|
+
logo_URIs: {
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg'
|
|
25
|
+
},
|
|
26
|
+
images: [{
|
|
27
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
28
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg',
|
|
29
|
+
theme: {
|
|
30
|
+
primary_color_hex: '#760dbb'
|
|
31
|
+
}
|
|
32
|
+
}],
|
|
33
|
+
keywords: ['liquid staking', 'restaking'],
|
|
34
|
+
socials: {
|
|
35
|
+
website: 'https://milkyway.zone',
|
|
36
|
+
twitter: 'https://x.com/milky_way_zone'
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
description: 'The native token of the Celestia blockchain.',
|
|
41
|
+
denom_units: [{
|
|
42
|
+
denom: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
43
|
+
exponent: 0,
|
|
44
|
+
aliases: ['utia']
|
|
45
|
+
}, {
|
|
46
|
+
denom: 'tia',
|
|
47
|
+
exponent: 6
|
|
48
|
+
}],
|
|
49
|
+
type_asset: 'ics20',
|
|
50
|
+
base: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
51
|
+
name: 'Celestia',
|
|
52
|
+
display: 'tia',
|
|
53
|
+
symbol: 'TIA',
|
|
54
|
+
traces: [{
|
|
55
|
+
type: 'ibc',
|
|
56
|
+
counterparty: {
|
|
57
|
+
chain_name: 'celestia',
|
|
58
|
+
base_denom: 'utia',
|
|
59
|
+
channel_id: 'channel-2'
|
|
60
|
+
},
|
|
61
|
+
chain: {
|
|
62
|
+
channel_id: 'channel-6994',
|
|
63
|
+
path: 'transfer/channel-6994/utia'
|
|
64
|
+
}
|
|
65
|
+
}, {
|
|
66
|
+
type: 'ibc',
|
|
67
|
+
counterparty: {
|
|
68
|
+
chain_name: 'osmosis',
|
|
69
|
+
base_denom: 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877',
|
|
70
|
+
channel_id: 'channel-0'
|
|
71
|
+
},
|
|
72
|
+
chain: {
|
|
73
|
+
channel_id: 'channel-0',
|
|
74
|
+
path: 'transfer/channel-0/transfer/channel-6994/utia'
|
|
75
|
+
}
|
|
76
|
+
}],
|
|
77
|
+
logo_URIs: {
|
|
78
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
79
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
|
|
80
|
+
},
|
|
81
|
+
images: [{
|
|
82
|
+
image_sync: {
|
|
83
|
+
chain_name: 'celestia',
|
|
84
|
+
base_denom: 'utia'
|
|
85
|
+
},
|
|
86
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
87
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
|
|
88
|
+
theme: {
|
|
89
|
+
primary_color_hex: '#7c2cfb'
|
|
90
|
+
}
|
|
91
|
+
}]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
description: 'MilkyWay\'s liquid staked TIA',
|
|
95
|
+
denom_units: [{
|
|
96
|
+
denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
97
|
+
exponent: 0,
|
|
98
|
+
aliases: ['umilktia']
|
|
99
|
+
}, {
|
|
100
|
+
denom: 'milkTIA',
|
|
101
|
+
exponent: 6
|
|
102
|
+
}],
|
|
103
|
+
type_asset: 'ics20',
|
|
104
|
+
base: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
105
|
+
name: 'milkTIA',
|
|
106
|
+
display: 'milkTIA',
|
|
107
|
+
symbol: 'milkTIA',
|
|
108
|
+
traces: [{
|
|
109
|
+
type: 'liquid-stake',
|
|
110
|
+
counterparty: {
|
|
111
|
+
chain_name: 'celestia',
|
|
112
|
+
base_denom: 'utia'
|
|
113
|
+
},
|
|
114
|
+
provider: 'MilkyWay'
|
|
115
|
+
}, {
|
|
116
|
+
type: 'ibc',
|
|
117
|
+
counterparty: {
|
|
118
|
+
chain_name: 'osmosis',
|
|
119
|
+
base_denom: 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA',
|
|
120
|
+
channel_id: 'channel-0'
|
|
121
|
+
},
|
|
122
|
+
chain: {
|
|
123
|
+
channel_id: 'channel-0',
|
|
124
|
+
path: 'transfer/channel-0/factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA'
|
|
125
|
+
}
|
|
126
|
+
}],
|
|
127
|
+
logo_URIs: {
|
|
128
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.png',
|
|
129
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.svg'
|
|
130
|
+
},
|
|
131
|
+
images: [{
|
|
132
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.png',
|
|
133
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milktia.svg',
|
|
134
|
+
theme: {
|
|
135
|
+
primary_color_hex: '#d18dfc'
|
|
136
|
+
}
|
|
137
|
+
}],
|
|
138
|
+
coingecko_id: 'milkyway-staked-tia'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
description: 'Stride\'s liquid staked TIA',
|
|
142
|
+
denom_units: [{
|
|
143
|
+
denom: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
144
|
+
exponent: 0,
|
|
145
|
+
aliases: ['stutia']
|
|
146
|
+
}, {
|
|
147
|
+
denom: 'stTIA',
|
|
148
|
+
exponent: 6
|
|
149
|
+
}],
|
|
150
|
+
type_asset: 'ics20',
|
|
151
|
+
base: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
152
|
+
name: 'Stride Staked TIA',
|
|
153
|
+
display: 'stTIA',
|
|
154
|
+
symbol: 'stTIA',
|
|
155
|
+
traces: [
|
|
156
|
+
{
|
|
157
|
+
type: 'liquid-stake',
|
|
158
|
+
counterparty: {
|
|
159
|
+
chain_name: 'celestia',
|
|
160
|
+
base_denom: 'utia'
|
|
161
|
+
},
|
|
162
|
+
provider: 'Stride'
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'ibc',
|
|
166
|
+
counterparty: {
|
|
167
|
+
chain_name: 'stride',
|
|
168
|
+
base_denom: 'stutia',
|
|
169
|
+
channel_id: 'channel-5'
|
|
170
|
+
},
|
|
171
|
+
chain: {
|
|
172
|
+
channel_id: 'channel-326',
|
|
173
|
+
path: 'transfer/channel-326/stutia'
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: 'ibc',
|
|
178
|
+
counterparty: {
|
|
179
|
+
chain_name: 'osmosis',
|
|
180
|
+
base_denom: 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9',
|
|
181
|
+
channel_id: 'channel-0'
|
|
182
|
+
},
|
|
183
|
+
chain: {
|
|
184
|
+
channel_id: 'channel-0',
|
|
185
|
+
path: 'transfer/channel-0/transfer/channel-326/stutia'
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
logo_URIs: {
|
|
190
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png',
|
|
191
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg'
|
|
192
|
+
},
|
|
193
|
+
images: [{
|
|
194
|
+
image_sync: {
|
|
195
|
+
chain_name: 'stride',
|
|
196
|
+
base_denom: 'stutia'
|
|
197
|
+
},
|
|
198
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png',
|
|
199
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg',
|
|
200
|
+
theme: {
|
|
201
|
+
primary_color_hex: '#e40474'
|
|
202
|
+
}
|
|
203
|
+
}]
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
description: 'The native token of the Celestia blockchain.',
|
|
207
|
+
denom_units: [{
|
|
208
|
+
denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
209
|
+
exponent: 0,
|
|
210
|
+
aliases: ['utia']
|
|
211
|
+
}, {
|
|
212
|
+
denom: 'tia',
|
|
213
|
+
exponent: 6
|
|
214
|
+
}],
|
|
215
|
+
type_asset: 'ics20',
|
|
216
|
+
base: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
217
|
+
name: 'Celestia',
|
|
218
|
+
display: 'tia',
|
|
219
|
+
symbol: 'TIA',
|
|
220
|
+
traces: [{
|
|
221
|
+
type: 'ibc',
|
|
222
|
+
counterparty: {
|
|
223
|
+
chain_name: 'celestia',
|
|
224
|
+
base_denom: 'utia',
|
|
225
|
+
channel_id: 'channel-1'
|
|
226
|
+
},
|
|
227
|
+
chain: {
|
|
228
|
+
channel_id: 'channel-1',
|
|
229
|
+
path: 'transfer/channel-1/utia'
|
|
230
|
+
}
|
|
231
|
+
}],
|
|
232
|
+
logo_URIs: {
|
|
233
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
234
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
|
|
235
|
+
},
|
|
236
|
+
images: [{
|
|
237
|
+
image_sync: {
|
|
238
|
+
chain_name: 'celestia',
|
|
239
|
+
base_denom: 'utia'
|
|
240
|
+
},
|
|
241
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
242
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
|
|
243
|
+
theme: {
|
|
244
|
+
primary_color_hex: '#7c2cfb'
|
|
245
|
+
}
|
|
246
|
+
}]
|
|
247
|
+
}
|
|
248
|
+
]
|
|
249
|
+
};
|
|
250
|
+
exports.default = info;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'milkyway',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
website: 'https://milkyway.zone/',
|
|
9
|
+
pretty_name: 'MilkyWay',
|
|
10
|
+
chain_type: 'cosmos',
|
|
11
|
+
chain_id: 'milkyway',
|
|
12
|
+
bech32_prefix: 'milk',
|
|
13
|
+
daemon_name: 'milkywayd',
|
|
14
|
+
node_home: '$HOME/.milkywayd',
|
|
15
|
+
key_algos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [
|
|
19
|
+
{
|
|
20
|
+
denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
21
|
+
fixed_min_gas_price: 0.02,
|
|
22
|
+
low_gas_price: 0.025,
|
|
23
|
+
average_gas_price: 0.03,
|
|
24
|
+
high_gas_price: 0.035
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
denom: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
28
|
+
fixed_min_gas_price: 0.02,
|
|
29
|
+
low_gas_price: 0.025,
|
|
30
|
+
average_gas_price: 0.03,
|
|
31
|
+
high_gas_price: 0.035
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
denom: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
35
|
+
fixed_min_gas_price: 0.02,
|
|
36
|
+
low_gas_price: 0.025,
|
|
37
|
+
average_gas_price: 0.03,
|
|
38
|
+
high_gas_price: 0.035
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
42
|
+
fixed_min_gas_price: 0.02,
|
|
43
|
+
low_gas_price: 0.025,
|
|
44
|
+
average_gas_price: 0.03,
|
|
45
|
+
high_gas_price: 0.035
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
staking: {
|
|
50
|
+
staking_tokens: [{
|
|
51
|
+
denom: 'umilk'
|
|
52
|
+
}],
|
|
53
|
+
lock_duration: {
|
|
54
|
+
time: '1814400s'
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
codebase: {},
|
|
58
|
+
images: [{
|
|
59
|
+
image_sync: {
|
|
60
|
+
chain_name: 'milkyway',
|
|
61
|
+
base_denom: 'umilk'
|
|
62
|
+
},
|
|
63
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
64
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg',
|
|
65
|
+
theme: {
|
|
66
|
+
primary_color_hex: '#9182FD'
|
|
67
|
+
}
|
|
68
|
+
}],
|
|
69
|
+
logo_URIs: {
|
|
70
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.png',
|
|
71
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkyway.svg'
|
|
72
|
+
},
|
|
73
|
+
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.',
|
|
74
|
+
apis: {
|
|
75
|
+
rpc: [{
|
|
76
|
+
address: 'https://rpc.mainnet.milkyway.zone/',
|
|
77
|
+
provider: 'MilkyWay Labs'
|
|
78
|
+
}],
|
|
79
|
+
rest: [{
|
|
80
|
+
address: 'https://lcd.mainnet.milkyway.zone/',
|
|
81
|
+
provider: 'MilkyWay Labs'
|
|
82
|
+
}],
|
|
83
|
+
grpc: [{
|
|
84
|
+
address: 'grpc.mainnet.milkyway.zone',
|
|
85
|
+
provider: 'MilkyWay Labs'
|
|
86
|
+
}]
|
|
87
|
+
},
|
|
88
|
+
explorers: [],
|
|
89
|
+
keywords: ['liquid staking', 'restaking']
|
|
90
|
+
};
|
|
91
|
+
exports.default = info;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'celestia',
|
|
7
|
+
client_id: '07-tendermint-94',
|
|
8
|
+
connection_id: 'connection-64'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'milkyway',
|
|
12
|
+
client_id: '07-tendermint-2',
|
|
13
|
+
connection_id: 'connection-1'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-49',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-1',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain_1: {
|
|
34
|
+
chain_name: 'milkyway',
|
|
35
|
+
client_id: '07-tendermint-1',
|
|
36
|
+
connection_id: 'connection-0'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'osmosis',
|
|
40
|
+
client_id: '07-tendermint-3364',
|
|
41
|
+
connection_id: 'connection-2821'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-0',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-89298',
|
|
50
|
+
port_id: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true,
|
|
57
|
+
dex: 'osmosis'
|
|
58
|
+
}
|
|
59
|
+
}]
|
|
60
|
+
}];
|
|
61
|
+
exports.default = info;
|
|
@@ -0,0 +1,12 @@
|
|
|
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.ibc = exports.chain = exports.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_1 = __importDefault(require("./ibc"));
|
|
10
|
+
exports.assets = assets_1.default;
|
|
11
|
+
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibc = ibc_1.default;
|
package/mainnet/named.d.ts
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';
|
package/mainnet/named.js
CHANGED
|
@@ -25,8 +25,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.doravota = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda = exports.althea = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.ethereum = void 0;
|
|
27
27
|
exports.mantrachain = exports.mande = exports.lumnetwork = exports.loyal = exports.lorenzo = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = void 0;
|
|
28
|
-
exports.
|
|
29
|
-
exports.zetachain = exports.xpla = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = void 0;
|
|
28
|
+
exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = void 0;
|
|
29
|
+
exports.zetachain = exports.xpla = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = void 0;
|
|
30
30
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
31
31
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
32
32
|
exports.solana = __importStar(require("./solana"));
|
|
@@ -132,6 +132,7 @@ exports.mayachain = __importStar(require("./mayachain"));
|
|
|
132
132
|
exports.medasdigital = __importStar(require("./medasdigital"));
|
|
133
133
|
exports.meme = __importStar(require("./meme"));
|
|
134
134
|
exports.migaloo = __importStar(require("./migaloo"));
|
|
135
|
+
exports.milkyway = __importStar(require("./milkyway"));
|
|
135
136
|
exports.mises = __importStar(require("./mises"));
|
|
136
137
|
exports.mtgbp = __importStar(require("./mtgbp"));
|
|
137
138
|
exports.mun = __importStar(require("./mun"));
|
|
@@ -14262,6 +14262,46 @@ const info = {
|
|
|
14262
14262
|
}
|
|
14263
14263
|
}]
|
|
14264
14264
|
},
|
|
14265
|
+
{
|
|
14266
|
+
description: 'An alloy of XRP asset variants on Osmosis.',
|
|
14267
|
+
extended_description: 'Multiple Ripple variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of XRP.',
|
|
14268
|
+
denom_units: [{
|
|
14269
|
+
denom: 'factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP',
|
|
14270
|
+
exponent: 0
|
|
14271
|
+
}, {
|
|
14272
|
+
denom: 'allXRP',
|
|
14273
|
+
exponent: 6
|
|
14274
|
+
}],
|
|
14275
|
+
type_asset: 'sdk.coin',
|
|
14276
|
+
address: 'osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0',
|
|
14277
|
+
base: 'factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP',
|
|
14278
|
+
name: 'Ripple',
|
|
14279
|
+
display: 'allXRP',
|
|
14280
|
+
symbol: 'XRP',
|
|
14281
|
+
traces: [{
|
|
14282
|
+
type: 'synthetic',
|
|
14283
|
+
counterparty: {
|
|
14284
|
+
chain_name: 'xrpl',
|
|
14285
|
+
base_denom: 'drop'
|
|
14286
|
+
},
|
|
14287
|
+
provider: 'Osmosis'
|
|
14288
|
+
}],
|
|
14289
|
+
logo_URIs: {
|
|
14290
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
14291
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png'
|
|
14292
|
+
},
|
|
14293
|
+
images: [{
|
|
14294
|
+
image_sync: {
|
|
14295
|
+
chain_name: 'xrpl',
|
|
14296
|
+
base_denom: 'drop'
|
|
14297
|
+
},
|
|
14298
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
14299
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
14300
|
+
theme: {
|
|
14301
|
+
primary_color_hex: '#040404'
|
|
14302
|
+
}
|
|
14303
|
+
}]
|
|
14304
|
+
},
|
|
14265
14305
|
{
|
|
14266
14306
|
description: 'The Original Meme Coin of SEI Network',
|
|
14267
14307
|
denom_units: [{
|