chain-registry 1.63.10 → 1.63.11
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/axelar/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/injective/chain.js +3 -3
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/self/assets.js +30 -0
- package/esm/mainnet/self/chain.js +53 -0
- package/esm/mainnet/self/ibc.js +90 -0
- package/esm/mainnet/self/index.js +6 -0
- package/esm/mainnet/terra2/assets.js +20 -0
- package/esm/testnet/celestiatestnet/chain.js +1 -1
- package/esm/testnet/nobletestnet/assets.js +13 -25
- package/mainnet/assets.js +2 -0
- package/mainnet/axelar/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/injective/chain.js +3 -3
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +3 -2
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/self/assets.d.ts +3 -0
- package/mainnet/self/assets.js +32 -0
- package/mainnet/self/chain.d.ts +3 -0
- package/mainnet/self/chain.js +55 -0
- package/mainnet/self/ibc.d.ts +3 -0
- package/mainnet/self/ibc.js +92 -0
- package/mainnet/self/index.d.ts +3 -0
- package/mainnet/self/index.js +12 -0
- package/mainnet/terra2/assets.js +20 -0
- package/package.json +4 -4
- package/testnet/celestiatestnet/chain.js +1 -1
- package/testnet/nobletestnet/assets.js +13 -25
package/esm/mainnet/assets.js
CHANGED
|
@@ -138,6 +138,7 @@ import * as _scorum from './scorum';
|
|
|
138
138
|
import * as _secretnetwork from './secretnetwork';
|
|
139
139
|
import * as _seda from './seda';
|
|
140
140
|
import * as _sei from './sei';
|
|
141
|
+
import * as _self from './self';
|
|
141
142
|
import * as _sentinel from './sentinel';
|
|
142
143
|
import * as _sge from './sge';
|
|
143
144
|
import * as _shareledger from './shareledger';
|
|
@@ -308,6 +309,7 @@ const assets = [
|
|
|
308
309
|
_secretnetwork.assets,
|
|
309
310
|
_seda.assets,
|
|
310
311
|
_sei.assets,
|
|
312
|
+
_self.assets,
|
|
311
313
|
_sentinel.assets,
|
|
312
314
|
_sge.assets,
|
|
313
315
|
_shareledger.assets,
|
|
@@ -979,6 +979,35 @@ const info = [
|
|
|
979
979
|
}
|
|
980
980
|
}]
|
|
981
981
|
},
|
|
982
|
+
{
|
|
983
|
+
$schema: '../ibc_data.schema.json',
|
|
984
|
+
chain_1: {
|
|
985
|
+
chain_name: 'axelar',
|
|
986
|
+
client_id: '07-tendermint-226',
|
|
987
|
+
connection_id: 'connection-211'
|
|
988
|
+
},
|
|
989
|
+
chain_2: {
|
|
990
|
+
chain_name: 'self',
|
|
991
|
+
client_id: '07-tendermint-2',
|
|
992
|
+
connection_id: 'connection-2'
|
|
993
|
+
},
|
|
994
|
+
channels: [{
|
|
995
|
+
chain_1: {
|
|
996
|
+
channel_id: 'channel-157',
|
|
997
|
+
port_id: 'transfer'
|
|
998
|
+
},
|
|
999
|
+
chain_2: {
|
|
1000
|
+
channel_id: 'channel-1',
|
|
1001
|
+
port_id: 'transfer'
|
|
1002
|
+
},
|
|
1003
|
+
ordering: 'unordered',
|
|
1004
|
+
version: 'ics20-1',
|
|
1005
|
+
tags: {
|
|
1006
|
+
status: 'live',
|
|
1007
|
+
preferred: true
|
|
1008
|
+
}
|
|
1009
|
+
}]
|
|
1010
|
+
},
|
|
982
1011
|
{
|
|
983
1012
|
$schema: '../ibc_data.schema.json',
|
|
984
1013
|
chain_1: {
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -139,6 +139,7 @@ import * as _scorum from './scorum';
|
|
|
139
139
|
import * as _secretnetwork from './secretnetwork';
|
|
140
140
|
import * as _seda from './seda';
|
|
141
141
|
import * as _sei from './sei';
|
|
142
|
+
import * as _self from './self';
|
|
142
143
|
import * as _sentinel from './sentinel';
|
|
143
144
|
import * as _sge from './sge';
|
|
144
145
|
import * as _shareledger from './shareledger';
|
|
@@ -311,6 +312,7 @@ const chains = [
|
|
|
311
312
|
_secretnetwork.chain,
|
|
312
313
|
_seda.chain,
|
|
313
314
|
_sei.chain,
|
|
315
|
+
_self.chain,
|
|
314
316
|
_sentinel.chain,
|
|
315
317
|
_sge.chain,
|
|
316
318
|
_shareledger.chain,
|
|
@@ -1312,6 +1312,35 @@ const info = [
|
|
|
1312
1312
|
}
|
|
1313
1313
|
}]
|
|
1314
1314
|
},
|
|
1315
|
+
{
|
|
1316
|
+
$schema: '../ibc_data.schema.json',
|
|
1317
|
+
chain_1: {
|
|
1318
|
+
chain_name: 'cosmoshub',
|
|
1319
|
+
client_id: '07-tendermint-1310',
|
|
1320
|
+
connection_id: 'connection-1043'
|
|
1321
|
+
},
|
|
1322
|
+
chain_2: {
|
|
1323
|
+
chain_name: 'self',
|
|
1324
|
+
client_id: '07-tendermint-0',
|
|
1325
|
+
connection_id: 'connection-0'
|
|
1326
|
+
},
|
|
1327
|
+
channels: [{
|
|
1328
|
+
chain_1: {
|
|
1329
|
+
channel_id: 'channel-892',
|
|
1330
|
+
port_id: 'transfer'
|
|
1331
|
+
},
|
|
1332
|
+
chain_2: {
|
|
1333
|
+
channel_id: 'channel-0',
|
|
1334
|
+
port_id: 'transfer'
|
|
1335
|
+
},
|
|
1336
|
+
ordering: 'unordered',
|
|
1337
|
+
version: 'ics20-1',
|
|
1338
|
+
tags: {
|
|
1339
|
+
status: 'live',
|
|
1340
|
+
preferred: true
|
|
1341
|
+
}
|
|
1342
|
+
}]
|
|
1343
|
+
},
|
|
1315
1344
|
{
|
|
1316
1345
|
$schema: '../ibc_data.schema.json',
|
|
1317
1346
|
chain_1: {
|
package/esm/mainnet/ibc.js
CHANGED
|
@@ -111,6 +111,7 @@ import * as _scorum from './scorum';
|
|
|
111
111
|
import * as _secretnetwork from './secretnetwork';
|
|
112
112
|
import * as _seda from './seda';
|
|
113
113
|
import * as _sei from './sei';
|
|
114
|
+
import * as _self from './self';
|
|
114
115
|
import * as _sentinel from './sentinel';
|
|
115
116
|
import * as _sge from './sge';
|
|
116
117
|
import * as _shareledger from './shareledger';
|
|
@@ -246,6 +247,7 @@ const ibc = [
|
|
|
246
247
|
..._secretnetwork.ibc,
|
|
247
248
|
..._seda.ibc,
|
|
248
249
|
..._sei.ibc,
|
|
250
|
+
..._self.ibc,
|
|
249
251
|
..._sentinel.ibc,
|
|
250
252
|
..._sge.ibc,
|
|
251
253
|
..._shareledger.ibc,
|
|
@@ -34,7 +34,7 @@ const info = {
|
|
|
34
34
|
apis: {
|
|
35
35
|
rpc: [
|
|
36
36
|
{
|
|
37
|
-
address: 'https://
|
|
37
|
+
address: 'https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz',
|
|
38
38
|
provider: 'NewMetric'
|
|
39
39
|
},
|
|
40
40
|
{
|
|
@@ -92,7 +92,7 @@ const info = {
|
|
|
92
92
|
],
|
|
93
93
|
rest: [
|
|
94
94
|
{
|
|
95
|
-
address: 'https://
|
|
95
|
+
address: 'https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz',
|
|
96
96
|
provider: 'NewMetric'
|
|
97
97
|
},
|
|
98
98
|
{
|
|
@@ -150,7 +150,7 @@ const info = {
|
|
|
150
150
|
],
|
|
151
151
|
grpc: [
|
|
152
152
|
{
|
|
153
|
-
address: '
|
|
153
|
+
address: '6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-grpc.newmetric.xyz:80',
|
|
154
154
|
provider: 'NewMetric'
|
|
155
155
|
},
|
|
156
156
|
{
|
package/esm/mainnet/named.js
CHANGED
|
@@ -139,6 +139,7 @@ export * as scorum from './scorum';
|
|
|
139
139
|
export * as secretnetwork from './secretnetwork';
|
|
140
140
|
export * as seda from './seda';
|
|
141
141
|
export * as sei from './sei';
|
|
142
|
+
export * as self from './self';
|
|
142
143
|
export * as sentinel from './sentinel';
|
|
143
144
|
export * as sge from './sge';
|
|
144
145
|
export * as shareledger from './shareledger';
|
|
@@ -3247,6 +3247,35 @@ const info = [
|
|
|
3247
3247
|
}
|
|
3248
3248
|
}]
|
|
3249
3249
|
},
|
|
3250
|
+
{
|
|
3251
|
+
$schema: '../ibc_data.schema.json',
|
|
3252
|
+
chain_1: {
|
|
3253
|
+
chain_name: 'osmosis',
|
|
3254
|
+
client_id: '07-tendermint-3213',
|
|
3255
|
+
connection_id: 'connection-2684'
|
|
3256
|
+
},
|
|
3257
|
+
chain_2: {
|
|
3258
|
+
chain_name: 'self',
|
|
3259
|
+
client_id: '07-tendermint-1',
|
|
3260
|
+
connection_id: 'connection-1'
|
|
3261
|
+
},
|
|
3262
|
+
channels: [{
|
|
3263
|
+
chain_1: {
|
|
3264
|
+
channel_id: 'channel-78292',
|
|
3265
|
+
port_id: 'transfer'
|
|
3266
|
+
},
|
|
3267
|
+
chain_2: {
|
|
3268
|
+
channel_id: 'channel-1',
|
|
3269
|
+
port_id: 'transfer'
|
|
3270
|
+
},
|
|
3271
|
+
ordering: 'unordered',
|
|
3272
|
+
version: 'ics20-1',
|
|
3273
|
+
tags: {
|
|
3274
|
+
status: 'live',
|
|
3275
|
+
preferred: true
|
|
3276
|
+
}
|
|
3277
|
+
}]
|
|
3278
|
+
},
|
|
3250
3279
|
{
|
|
3251
3280
|
$schema: '../ibc_data.schema.json',
|
|
3252
3281
|
chain_1: {
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'self',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking token of Self Chain.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'uslf',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'slf',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'uslf',
|
|
14
|
+
name: 'Self',
|
|
15
|
+
display: 'slf',
|
|
16
|
+
symbol: 'SLF',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
19
|
+
},
|
|
20
|
+
coingecko_id: 'self-chain',
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
23
|
+
}],
|
|
24
|
+
socials: {
|
|
25
|
+
website: 'https://selfchain.xyz',
|
|
26
|
+
twitter: 'https://x.com/selfchainxyz'
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
};
|
|
30
|
+
export default info;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'self',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://selfchain.xyz',
|
|
6
|
+
network_type: 'mainnet',
|
|
7
|
+
pretty_name: 'Self Chain',
|
|
8
|
+
chain_id: 'self-1',
|
|
9
|
+
bech32_prefix: 'self',
|
|
10
|
+
daemon_name: 'selfchaind',
|
|
11
|
+
node_home: '$HOME/.selfchain',
|
|
12
|
+
key_algos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'uslf',
|
|
17
|
+
fixed_min_gas_price: 0.005,
|
|
18
|
+
low_gas_price: 0.005,
|
|
19
|
+
average_gas_price: 0.025,
|
|
20
|
+
high_gas_price: 0.03
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'uslf'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
logo_URIs: {
|
|
29
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
30
|
+
},
|
|
31
|
+
description: 'Self Chain Is The First Modular Intent-Centric Access Layer L1 Blockchain And Keyless Wallet Infrastructure Service That Uses MPC-TSS/AA For Multi-Chain Web3 Access.',
|
|
32
|
+
apis: {
|
|
33
|
+
rpc: [{
|
|
34
|
+
address: 'https://rpc.selfchain.io:26657',
|
|
35
|
+
provider: 'Self Chain'
|
|
36
|
+
}],
|
|
37
|
+
rest: [{
|
|
38
|
+
address: 'https://api.selfchain.io',
|
|
39
|
+
provider: 'Self Chain'
|
|
40
|
+
}],
|
|
41
|
+
grpc: []
|
|
42
|
+
},
|
|
43
|
+
explorers: [{
|
|
44
|
+
kind: 'Self Chain',
|
|
45
|
+
url: 'https://explorer.selfchain.xyz/selfchain',
|
|
46
|
+
tx_page: 'https://explorer.selfchain.xyz/selfchain/tx/${txHash}',
|
|
47
|
+
account_page: 'https://explorer.selfchain.xyz/selfchain/account/${accountAddress}'
|
|
48
|
+
}],
|
|
49
|
+
images: [{
|
|
50
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
51
|
+
}]
|
|
52
|
+
};
|
|
53
|
+
export default info;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'axelar',
|
|
6
|
+
client_id: '07-tendermint-226',
|
|
7
|
+
connection_id: 'connection-211'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'self',
|
|
11
|
+
client_id: '07-tendermint-2',
|
|
12
|
+
connection_id: 'connection-2'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-157',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-1',
|
|
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: 'cosmoshub',
|
|
35
|
+
client_id: '07-tendermint-1310',
|
|
36
|
+
connection_id: 'connection-1043'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'self',
|
|
40
|
+
client_id: '07-tendermint-0',
|
|
41
|
+
connection_id: 'connection-0'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-892',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-0',
|
|
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: 'osmosis',
|
|
64
|
+
client_id: '07-tendermint-3213',
|
|
65
|
+
connection_id: 'connection-2684'
|
|
66
|
+
},
|
|
67
|
+
chain_2: {
|
|
68
|
+
chain_name: 'self',
|
|
69
|
+
client_id: '07-tendermint-1',
|
|
70
|
+
connection_id: 'connection-1'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain_1: {
|
|
74
|
+
channel_id: 'channel-78292',
|
|
75
|
+
port_id: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain_2: {
|
|
78
|
+
channel_id: 'channel-1',
|
|
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
|
+
export default info;
|
|
@@ -949,6 +949,26 @@ const info = {
|
|
|
949
949
|
images: [{
|
|
950
950
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg'
|
|
951
951
|
}]
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
description: 'ashLUNA',
|
|
955
|
+
denom_units: [{
|
|
956
|
+
denom: 'factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash',
|
|
957
|
+
exponent: 0
|
|
958
|
+
}, {
|
|
959
|
+
denom: 'ashLUNA',
|
|
960
|
+
exponent: 6
|
|
961
|
+
}],
|
|
962
|
+
base: 'factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash',
|
|
963
|
+
name: 'ashLUNA',
|
|
964
|
+
display: 'ashLUNA',
|
|
965
|
+
symbol: 'ashLUNA',
|
|
966
|
+
logo_URIs: {
|
|
967
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.ash.png'
|
|
968
|
+
},
|
|
969
|
+
images: [{
|
|
970
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.ash.png'
|
|
971
|
+
}]
|
|
952
972
|
}
|
|
953
973
|
]
|
|
954
974
|
};
|
|
@@ -62,38 +62,26 @@ const info = {
|
|
|
62
62
|
}]
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
|
-
description: '
|
|
65
|
+
description: 'Ondo US Dollar Yield',
|
|
66
66
|
denom_units: [{
|
|
67
|
-
denom: '
|
|
67
|
+
denom: 'ausdy',
|
|
68
68
|
exponent: 0,
|
|
69
|
-
aliases: ['
|
|
69
|
+
aliases: ['attousdy']
|
|
70
70
|
}, {
|
|
71
|
-
denom: '
|
|
72
|
-
exponent:
|
|
73
|
-
}],
|
|
74
|
-
base: 'uusdlr',
|
|
75
|
-
display: 'usdlr',
|
|
76
|
-
name: 'USDLR by Stable',
|
|
77
|
-
symbol: 'USDLR',
|
|
78
|
-
traces: [{
|
|
79
|
-
type: 'test-mintage',
|
|
80
|
-
counterparty: {
|
|
81
|
-
chain_name: 'noble',
|
|
82
|
-
base_denom: 'uusdlr'
|
|
83
|
-
},
|
|
84
|
-
provider: 'Stable'
|
|
71
|
+
denom: 'usdy',
|
|
72
|
+
exponent: 18
|
|
85
73
|
}],
|
|
74
|
+
base: 'ausdy',
|
|
75
|
+
display: 'usdy',
|
|
76
|
+
name: 'Ondo US Dollar Yield',
|
|
77
|
+
symbol: 'USDY',
|
|
86
78
|
logo_URIs: {
|
|
87
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/
|
|
88
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/
|
|
79
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.png',
|
|
80
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.svg'
|
|
89
81
|
},
|
|
90
82
|
images: [{
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
base_denom: 'uusdlr'
|
|
94
|
-
},
|
|
95
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png',
|
|
96
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg'
|
|
83
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.png',
|
|
84
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.svg'
|
|
97
85
|
}]
|
|
98
86
|
}
|
|
99
87
|
]
|
package/mainnet/assets.js
CHANGED
|
@@ -163,6 +163,7 @@ const _scorum = __importStar(require("./scorum"));
|
|
|
163
163
|
const _secretnetwork = __importStar(require("./secretnetwork"));
|
|
164
164
|
const _seda = __importStar(require("./seda"));
|
|
165
165
|
const _sei = __importStar(require("./sei"));
|
|
166
|
+
const _self = __importStar(require("./self"));
|
|
166
167
|
const _sentinel = __importStar(require("./sentinel"));
|
|
167
168
|
const _sge = __importStar(require("./sge"));
|
|
168
169
|
const _shareledger = __importStar(require("./shareledger"));
|
|
@@ -333,6 +334,7 @@ const assets = [
|
|
|
333
334
|
_secretnetwork.assets,
|
|
334
335
|
_seda.assets,
|
|
335
336
|
_sei.assets,
|
|
337
|
+
_self.assets,
|
|
336
338
|
_sentinel.assets,
|
|
337
339
|
_sge.assets,
|
|
338
340
|
_shareledger.assets,
|
package/mainnet/axelar/ibc.js
CHANGED
|
@@ -981,6 +981,35 @@ const info = [
|
|
|
981
981
|
}
|
|
982
982
|
}]
|
|
983
983
|
},
|
|
984
|
+
{
|
|
985
|
+
$schema: '../ibc_data.schema.json',
|
|
986
|
+
chain_1: {
|
|
987
|
+
chain_name: 'axelar',
|
|
988
|
+
client_id: '07-tendermint-226',
|
|
989
|
+
connection_id: 'connection-211'
|
|
990
|
+
},
|
|
991
|
+
chain_2: {
|
|
992
|
+
chain_name: 'self',
|
|
993
|
+
client_id: '07-tendermint-2',
|
|
994
|
+
connection_id: 'connection-2'
|
|
995
|
+
},
|
|
996
|
+
channels: [{
|
|
997
|
+
chain_1: {
|
|
998
|
+
channel_id: 'channel-157',
|
|
999
|
+
port_id: 'transfer'
|
|
1000
|
+
},
|
|
1001
|
+
chain_2: {
|
|
1002
|
+
channel_id: 'channel-1',
|
|
1003
|
+
port_id: 'transfer'
|
|
1004
|
+
},
|
|
1005
|
+
ordering: 'unordered',
|
|
1006
|
+
version: 'ics20-1',
|
|
1007
|
+
tags: {
|
|
1008
|
+
status: 'live',
|
|
1009
|
+
preferred: true
|
|
1010
|
+
}
|
|
1011
|
+
}]
|
|
1012
|
+
},
|
|
984
1013
|
{
|
|
985
1014
|
$schema: '../ibc_data.schema.json',
|
|
986
1015
|
chain_1: {
|
package/mainnet/chains.js
CHANGED
|
@@ -164,6 +164,7 @@ const _scorum = __importStar(require("./scorum"));
|
|
|
164
164
|
const _secretnetwork = __importStar(require("./secretnetwork"));
|
|
165
165
|
const _seda = __importStar(require("./seda"));
|
|
166
166
|
const _sei = __importStar(require("./sei"));
|
|
167
|
+
const _self = __importStar(require("./self"));
|
|
167
168
|
const _sentinel = __importStar(require("./sentinel"));
|
|
168
169
|
const _sge = __importStar(require("./sge"));
|
|
169
170
|
const _shareledger = __importStar(require("./shareledger"));
|
|
@@ -336,6 +337,7 @@ const chains = [
|
|
|
336
337
|
_secretnetwork.chain,
|
|
337
338
|
_seda.chain,
|
|
338
339
|
_sei.chain,
|
|
340
|
+
_self.chain,
|
|
339
341
|
_sentinel.chain,
|
|
340
342
|
_sge.chain,
|
|
341
343
|
_shareledger.chain,
|
package/mainnet/cosmoshub/ibc.js
CHANGED
|
@@ -1314,6 +1314,35 @@ const info = [
|
|
|
1314
1314
|
}
|
|
1315
1315
|
}]
|
|
1316
1316
|
},
|
|
1317
|
+
{
|
|
1318
|
+
$schema: '../ibc_data.schema.json',
|
|
1319
|
+
chain_1: {
|
|
1320
|
+
chain_name: 'cosmoshub',
|
|
1321
|
+
client_id: '07-tendermint-1310',
|
|
1322
|
+
connection_id: 'connection-1043'
|
|
1323
|
+
},
|
|
1324
|
+
chain_2: {
|
|
1325
|
+
chain_name: 'self',
|
|
1326
|
+
client_id: '07-tendermint-0',
|
|
1327
|
+
connection_id: 'connection-0'
|
|
1328
|
+
},
|
|
1329
|
+
channels: [{
|
|
1330
|
+
chain_1: {
|
|
1331
|
+
channel_id: 'channel-892',
|
|
1332
|
+
port_id: 'transfer'
|
|
1333
|
+
},
|
|
1334
|
+
chain_2: {
|
|
1335
|
+
channel_id: 'channel-0',
|
|
1336
|
+
port_id: 'transfer'
|
|
1337
|
+
},
|
|
1338
|
+
ordering: 'unordered',
|
|
1339
|
+
version: 'ics20-1',
|
|
1340
|
+
tags: {
|
|
1341
|
+
status: 'live',
|
|
1342
|
+
preferred: true
|
|
1343
|
+
}
|
|
1344
|
+
}]
|
|
1345
|
+
},
|
|
1317
1346
|
{
|
|
1318
1347
|
$schema: '../ibc_data.schema.json',
|
|
1319
1348
|
chain_1: {
|
package/mainnet/ibc.js
CHANGED
|
@@ -136,6 +136,7 @@ const _scorum = __importStar(require("./scorum"));
|
|
|
136
136
|
const _secretnetwork = __importStar(require("./secretnetwork"));
|
|
137
137
|
const _seda = __importStar(require("./seda"));
|
|
138
138
|
const _sei = __importStar(require("./sei"));
|
|
139
|
+
const _self = __importStar(require("./self"));
|
|
139
140
|
const _sentinel = __importStar(require("./sentinel"));
|
|
140
141
|
const _sge = __importStar(require("./sge"));
|
|
141
142
|
const _shareledger = __importStar(require("./shareledger"));
|
|
@@ -271,6 +272,7 @@ const ibc = [
|
|
|
271
272
|
..._secretnetwork.ibc,
|
|
272
273
|
..._seda.ibc,
|
|
273
274
|
..._sei.ibc,
|
|
275
|
+
..._self.ibc,
|
|
274
276
|
..._sentinel.ibc,
|
|
275
277
|
..._sge.ibc,
|
|
276
278
|
..._shareledger.ibc,
|
|
@@ -36,7 +36,7 @@ const info = {
|
|
|
36
36
|
apis: {
|
|
37
37
|
rpc: [
|
|
38
38
|
{
|
|
39
|
-
address: 'https://
|
|
39
|
+
address: 'https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz',
|
|
40
40
|
provider: 'NewMetric'
|
|
41
41
|
},
|
|
42
42
|
{
|
|
@@ -94,7 +94,7 @@ const info = {
|
|
|
94
94
|
],
|
|
95
95
|
rest: [
|
|
96
96
|
{
|
|
97
|
-
address: 'https://
|
|
97
|
+
address: 'https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz',
|
|
98
98
|
provider: 'NewMetric'
|
|
99
99
|
},
|
|
100
100
|
{
|
|
@@ -152,7 +152,7 @@ const info = {
|
|
|
152
152
|
],
|
|
153
153
|
grpc: [
|
|
154
154
|
{
|
|
155
|
-
address: '
|
|
155
|
+
address: '6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-grpc.newmetric.xyz:80',
|
|
156
156
|
provider: 'NewMetric'
|
|
157
157
|
},
|
|
158
158
|
{
|
package/mainnet/named.d.ts
CHANGED
|
@@ -139,6 +139,7 @@ export * as scorum from './scorum';
|
|
|
139
139
|
export * as secretnetwork from './secretnetwork';
|
|
140
140
|
export * as seda from './seda';
|
|
141
141
|
export * as sei from './sei';
|
|
142
|
+
export * as self from './self';
|
|
142
143
|
export * as sentinel from './sentinel';
|
|
143
144
|
export * as sge from './sge';
|
|
144
145
|
export * as shareledger from './shareledger';
|
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.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bostrom = exports.bluzelle = exports.bluechip = exports.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura1 = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.althea = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
|
|
27
27
|
exports.mun = exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = 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.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = void 0;
|
|
28
|
-
exports.
|
|
29
|
-
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = void 0;
|
|
28
|
+
exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = 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 = void 0;
|
|
29
|
+
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = void 0;
|
|
30
30
|
exports._8ball = __importStar(require("./8ball"));
|
|
31
31
|
exports.acrechain = __importStar(require("./acrechain"));
|
|
32
32
|
exports.agoric = __importStar(require("./agoric"));
|
|
@@ -168,6 +168,7 @@ exports.scorum = __importStar(require("./scorum"));
|
|
|
168
168
|
exports.secretnetwork = __importStar(require("./secretnetwork"));
|
|
169
169
|
exports.seda = __importStar(require("./seda"));
|
|
170
170
|
exports.sei = __importStar(require("./sei"));
|
|
171
|
+
exports.self = __importStar(require("./self"));
|
|
171
172
|
exports.sentinel = __importStar(require("./sentinel"));
|
|
172
173
|
exports.sge = __importStar(require("./sge"));
|
|
173
174
|
exports.shareledger = __importStar(require("./shareledger"));
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -3249,6 +3249,35 @@ const info = [
|
|
|
3249
3249
|
}
|
|
3250
3250
|
}]
|
|
3251
3251
|
},
|
|
3252
|
+
{
|
|
3253
|
+
$schema: '../ibc_data.schema.json',
|
|
3254
|
+
chain_1: {
|
|
3255
|
+
chain_name: 'osmosis',
|
|
3256
|
+
client_id: '07-tendermint-3213',
|
|
3257
|
+
connection_id: 'connection-2684'
|
|
3258
|
+
},
|
|
3259
|
+
chain_2: {
|
|
3260
|
+
chain_name: 'self',
|
|
3261
|
+
client_id: '07-tendermint-1',
|
|
3262
|
+
connection_id: 'connection-1'
|
|
3263
|
+
},
|
|
3264
|
+
channels: [{
|
|
3265
|
+
chain_1: {
|
|
3266
|
+
channel_id: 'channel-78292',
|
|
3267
|
+
port_id: 'transfer'
|
|
3268
|
+
},
|
|
3269
|
+
chain_2: {
|
|
3270
|
+
channel_id: 'channel-1',
|
|
3271
|
+
port_id: 'transfer'
|
|
3272
|
+
},
|
|
3273
|
+
ordering: 'unordered',
|
|
3274
|
+
version: 'ics20-1',
|
|
3275
|
+
tags: {
|
|
3276
|
+
status: 'live',
|
|
3277
|
+
preferred: true
|
|
3278
|
+
}
|
|
3279
|
+
}]
|
|
3280
|
+
},
|
|
3252
3281
|
{
|
|
3253
3282
|
$schema: '../ibc_data.schema.json',
|
|
3254
3283
|
chain_1: {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'self',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking token of Self Chain.',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'uslf',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'slf',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'uslf',
|
|
16
|
+
name: 'Self',
|
|
17
|
+
display: 'slf',
|
|
18
|
+
symbol: 'SLF',
|
|
19
|
+
logo_URIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'self-chain',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
25
|
+
}],
|
|
26
|
+
socials: {
|
|
27
|
+
website: 'https://selfchain.xyz',
|
|
28
|
+
twitter: 'https://x.com/selfchainxyz'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
exports.default = info;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'self',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://selfchain.xyz',
|
|
8
|
+
network_type: 'mainnet',
|
|
9
|
+
pretty_name: 'Self Chain',
|
|
10
|
+
chain_id: 'self-1',
|
|
11
|
+
bech32_prefix: 'self',
|
|
12
|
+
daemon_name: 'selfchaind',
|
|
13
|
+
node_home: '$HOME/.selfchain',
|
|
14
|
+
key_algos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'uslf',
|
|
19
|
+
fixed_min_gas_price: 0.005,
|
|
20
|
+
low_gas_price: 0.005,
|
|
21
|
+
average_gas_price: 0.025,
|
|
22
|
+
high_gas_price: 0.03
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
staking_tokens: [{
|
|
27
|
+
denom: 'uslf'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
logo_URIs: {
|
|
31
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
32
|
+
},
|
|
33
|
+
description: 'Self Chain Is The First Modular Intent-Centric Access Layer L1 Blockchain And Keyless Wallet Infrastructure Service That Uses MPC-TSS/AA For Multi-Chain Web3 Access.',
|
|
34
|
+
apis: {
|
|
35
|
+
rpc: [{
|
|
36
|
+
address: 'https://rpc.selfchain.io:26657',
|
|
37
|
+
provider: 'Self Chain'
|
|
38
|
+
}],
|
|
39
|
+
rest: [{
|
|
40
|
+
address: 'https://api.selfchain.io',
|
|
41
|
+
provider: 'Self Chain'
|
|
42
|
+
}],
|
|
43
|
+
grpc: []
|
|
44
|
+
},
|
|
45
|
+
explorers: [{
|
|
46
|
+
kind: 'Self Chain',
|
|
47
|
+
url: 'https://explorer.selfchain.xyz/selfchain',
|
|
48
|
+
tx_page: 'https://explorer.selfchain.xyz/selfchain/tx/${txHash}',
|
|
49
|
+
account_page: 'https://explorer.selfchain.xyz/selfchain/account/${accountAddress}'
|
|
50
|
+
}],
|
|
51
|
+
images: [{
|
|
52
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/self/images/self.png'
|
|
53
|
+
}]
|
|
54
|
+
};
|
|
55
|
+
exports.default = info;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain_1: {
|
|
7
|
+
chain_name: 'axelar',
|
|
8
|
+
client_id: '07-tendermint-226',
|
|
9
|
+
connection_id: 'connection-211'
|
|
10
|
+
},
|
|
11
|
+
chain_2: {
|
|
12
|
+
chain_name: 'self',
|
|
13
|
+
client_id: '07-tendermint-2',
|
|
14
|
+
connection_id: 'connection-2'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain_1: {
|
|
18
|
+
channel_id: 'channel-157',
|
|
19
|
+
port_id: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain_2: {
|
|
22
|
+
channel_id: 'channel-1',
|
|
23
|
+
port_id: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'live',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain_1: {
|
|
36
|
+
chain_name: 'cosmoshub',
|
|
37
|
+
client_id: '07-tendermint-1310',
|
|
38
|
+
connection_id: 'connection-1043'
|
|
39
|
+
},
|
|
40
|
+
chain_2: {
|
|
41
|
+
chain_name: 'self',
|
|
42
|
+
client_id: '07-tendermint-0',
|
|
43
|
+
connection_id: 'connection-0'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain_1: {
|
|
47
|
+
channel_id: 'channel-892',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain_2: {
|
|
51
|
+
channel_id: 'channel-0',
|
|
52
|
+
port_id: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
status: 'live',
|
|
58
|
+
preferred: true
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../ibc_data.schema.json',
|
|
64
|
+
chain_1: {
|
|
65
|
+
chain_name: 'osmosis',
|
|
66
|
+
client_id: '07-tendermint-3213',
|
|
67
|
+
connection_id: 'connection-2684'
|
|
68
|
+
},
|
|
69
|
+
chain_2: {
|
|
70
|
+
chain_name: 'self',
|
|
71
|
+
client_id: '07-tendermint-1',
|
|
72
|
+
connection_id: 'connection-1'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain_1: {
|
|
76
|
+
channel_id: 'channel-78292',
|
|
77
|
+
port_id: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain_2: {
|
|
80
|
+
channel_id: 'channel-1',
|
|
81
|
+
port_id: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {
|
|
86
|
+
status: 'live',
|
|
87
|
+
preferred: true
|
|
88
|
+
}
|
|
89
|
+
}]
|
|
90
|
+
}
|
|
91
|
+
];
|
|
92
|
+
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/terra2/assets.js
CHANGED
|
@@ -951,6 +951,26 @@ const info = {
|
|
|
951
951
|
images: [{
|
|
952
952
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg'
|
|
953
953
|
}]
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
description: 'ashLUNA',
|
|
957
|
+
denom_units: [{
|
|
958
|
+
denom: 'factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash',
|
|
959
|
+
exponent: 0
|
|
960
|
+
}, {
|
|
961
|
+
denom: 'ashLUNA',
|
|
962
|
+
exponent: 6
|
|
963
|
+
}],
|
|
964
|
+
base: 'factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash',
|
|
965
|
+
name: 'ashLUNA',
|
|
966
|
+
display: 'ashLUNA',
|
|
967
|
+
symbol: 'ashLUNA',
|
|
968
|
+
logo_URIs: {
|
|
969
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.ash.png'
|
|
970
|
+
},
|
|
971
|
+
images: [{
|
|
972
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.ash.png'
|
|
973
|
+
}]
|
|
954
974
|
}
|
|
955
975
|
]
|
|
956
976
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.63.
|
|
3
|
+
"version": "1.63.11",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.46.
|
|
32
|
+
"@chain-registry/utils": "^1.46.8",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.45.
|
|
36
|
+
"@chain-registry/types": "^0.45.8"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "363d5c12983ab5212e949fd2390a0b80c82d5dcc"
|
|
47
47
|
}
|
|
@@ -64,38 +64,26 @@ const info = {
|
|
|
64
64
|
}]
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
description: '
|
|
67
|
+
description: 'Ondo US Dollar Yield',
|
|
68
68
|
denom_units: [{
|
|
69
|
-
denom: '
|
|
69
|
+
denom: 'ausdy',
|
|
70
70
|
exponent: 0,
|
|
71
|
-
aliases: ['
|
|
71
|
+
aliases: ['attousdy']
|
|
72
72
|
}, {
|
|
73
|
-
denom: '
|
|
74
|
-
exponent:
|
|
75
|
-
}],
|
|
76
|
-
base: 'uusdlr',
|
|
77
|
-
display: 'usdlr',
|
|
78
|
-
name: 'USDLR by Stable',
|
|
79
|
-
symbol: 'USDLR',
|
|
80
|
-
traces: [{
|
|
81
|
-
type: 'test-mintage',
|
|
82
|
-
counterparty: {
|
|
83
|
-
chain_name: 'noble',
|
|
84
|
-
base_denom: 'uusdlr'
|
|
85
|
-
},
|
|
86
|
-
provider: 'Stable'
|
|
73
|
+
denom: 'usdy',
|
|
74
|
+
exponent: 18
|
|
87
75
|
}],
|
|
76
|
+
base: 'ausdy',
|
|
77
|
+
display: 'usdy',
|
|
78
|
+
name: 'Ondo US Dollar Yield',
|
|
79
|
+
symbol: 'USDY',
|
|
88
80
|
logo_URIs: {
|
|
89
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/
|
|
90
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/
|
|
81
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.png',
|
|
82
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.svg'
|
|
91
83
|
},
|
|
92
84
|
images: [{
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
base_denom: 'uusdlr'
|
|
96
|
-
},
|
|
97
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png',
|
|
98
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg'
|
|
85
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.png',
|
|
86
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.svg'
|
|
99
87
|
}]
|
|
100
88
|
}
|
|
101
89
|
]
|