chain-registry 1.69.51 → 1.69.53
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/devnet/kyvedevnet/chain.js +5 -4
- package/esm/devnet/kyvedevnet/chain.js +5 -4
- package/esm/mainnet/assets.js +4 -0
- package/esm/mainnet/axelar/ibc.js +29 -0
- package/esm/mainnet/canto/ibc.js +29 -0
- package/esm/mainnet/celestia/ibc.js +29 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/ibc.js +4 -0
- package/esm/mainnet/injective/ibc.js +29 -0
- package/esm/mainnet/kyve/chain.js +14 -2
- 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 +2 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/assets.js +40 -0
- package/esm/mainnet/osmosis/ibc.js +59 -0
- package/esm/mainnet/pryzm/assets.js +417 -3
- package/esm/mainnet/xion/assets.js +34 -0
- package/esm/mainnet/xion/chain.js +100 -0
- package/esm/mainnet/xion/ibc.js +119 -0
- package/esm/mainnet/xion/index.js +6 -0
- package/esm/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/esm/testnet/kyvetestnet/chain.js +7 -2
- package/esm/testnet/xiontestnet/assets.js +1 -0
- package/esm/testnet/xiontestnet/chain.js +22 -18
- package/mainnet/assets.js +4 -0
- package/mainnet/axelar/ibc.js +29 -0
- package/mainnet/canto/ibc.js +29 -0
- package/mainnet/celestia/ibc.js +29 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/ibc.js +4 -0
- package/mainnet/injective/ibc.js +29 -0
- package/mainnet/kyve/chain.js +14 -2
- 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 +2 -0
- package/mainnet/named.js +4 -2
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/assets.js +40 -0
- package/mainnet/osmosis/ibc.js +59 -0
- package/mainnet/pryzm/assets.js +417 -3
- package/mainnet/xion/assets.d.ts +3 -0
- package/mainnet/xion/assets.js +36 -0
- package/mainnet/xion/chain.d.ts +3 -0
- package/mainnet/xion/chain.js +102 -0
- package/mainnet/xion/ibc.d.ts +3 -0
- package/mainnet/xion/ibc.js +121 -0
- package/mainnet/xion/index.d.ts +3 -0
- package/mainnet/xion/index.js +12 -0
- package/package.json +4 -4
- package/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/testnet/kyvetestnet/chain.js +7 -2
- package/testnet/xiontestnet/assets.js +1 -0
- package/testnet/xiontestnet/chain.js +22 -18
|
@@ -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';
|
|
@@ -180,5 +181,6 @@ export * as unicorn from './unicorn';
|
|
|
180
181
|
export * as unification from './unification';
|
|
181
182
|
export * as ununifi from './ununifi';
|
|
182
183
|
export * as uptick from './uptick';
|
|
184
|
+
export * as xion from './xion';
|
|
183
185
|
export * as xpla from './xpla';
|
|
184
186
|
export * as zetachain from './zetachain';
|
package/esm/mainnet/noble/ibc.js
CHANGED
|
@@ -1190,6 +1190,35 @@ const info = [
|
|
|
1190
1190
|
preferred: true
|
|
1191
1191
|
}
|
|
1192
1192
|
}]
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
$schema: '../ibc_data.schema.json',
|
|
1196
|
+
chain_1: {
|
|
1197
|
+
chain_name: 'noble',
|
|
1198
|
+
client_id: '07-tendermint-128',
|
|
1199
|
+
connection_id: 'connection-124'
|
|
1200
|
+
},
|
|
1201
|
+
chain_2: {
|
|
1202
|
+
chain_name: 'xion',
|
|
1203
|
+
client_id: '07-tendermint-2',
|
|
1204
|
+
connection_id: 'connection-2'
|
|
1205
|
+
},
|
|
1206
|
+
channels: [{
|
|
1207
|
+
chain_1: {
|
|
1208
|
+
channel_id: 'channel-113',
|
|
1209
|
+
port_id: 'transfer'
|
|
1210
|
+
},
|
|
1211
|
+
chain_2: {
|
|
1212
|
+
channel_id: 'channel-2',
|
|
1213
|
+
port_id: 'transfer'
|
|
1214
|
+
},
|
|
1215
|
+
ordering: 'unordered',
|
|
1216
|
+
version: 'ics20-1',
|
|
1217
|
+
tags: {
|
|
1218
|
+
status: 'live',
|
|
1219
|
+
preferred: true
|
|
1220
|
+
}
|
|
1221
|
+
}]
|
|
1193
1222
|
}
|
|
1194
1223
|
];
|
|
1195
1224
|
export default info;
|
|
@@ -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: {
|
|
@@ -4436,6 +4466,35 @@ const info = [
|
|
|
4436
4466
|
}
|
|
4437
4467
|
}]
|
|
4438
4468
|
},
|
|
4469
|
+
{
|
|
4470
|
+
$schema: '../ibc_data.schema.json',
|
|
4471
|
+
chain_1: {
|
|
4472
|
+
chain_name: 'osmosis',
|
|
4473
|
+
client_id: '07-tendermint-3366',
|
|
4474
|
+
connection_id: 'connection-2823'
|
|
4475
|
+
},
|
|
4476
|
+
chain_2: {
|
|
4477
|
+
chain_name: 'xion',
|
|
4478
|
+
client_id: '07-tendermint-1',
|
|
4479
|
+
connection_id: 'connection-1'
|
|
4480
|
+
},
|
|
4481
|
+
channels: [{
|
|
4482
|
+
chain_1: {
|
|
4483
|
+
channel_id: 'channel-89321',
|
|
4484
|
+
port_id: 'transfer'
|
|
4485
|
+
},
|
|
4486
|
+
chain_2: {
|
|
4487
|
+
channel_id: 'channel-1',
|
|
4488
|
+
port_id: 'transfer'
|
|
4489
|
+
},
|
|
4490
|
+
ordering: 'unordered',
|
|
4491
|
+
version: 'ics20-1',
|
|
4492
|
+
tags: {
|
|
4493
|
+
status: 'live',
|
|
4494
|
+
preferred: true
|
|
4495
|
+
}
|
|
4496
|
+
}]
|
|
4497
|
+
},
|
|
4439
4498
|
{
|
|
4440
4499
|
$schema: '../ibc_data.schema.json',
|
|
4441
4500
|
chain_1: {
|