chain-registry 2.0.225 → 2.0.227
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/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/asset-list.js +29 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/noble/ibc-data.js +31 -0
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/safrochain/asset-list.js +93 -0
- package/esm/mainnet/safrochain/chain.js +151 -0
- package/esm/mainnet/safrochain/ibc-data.js +62 -0
- package/esm/mainnet/safrochain/index.js +6 -0
- package/esm/testnet/asset-lists.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/limonatatestnet/asset-list.js +26 -0
- package/esm/testnet/limonatatestnet/chain.js +58 -0
- package/esm/testnet/limonatatestnet/index.js +4 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/asset-list.js +29 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/noble/ibc-data.js +31 -0
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/safrochain/asset-list.d.ts +3 -0
- package/mainnet/safrochain/asset-list.js +95 -0
- package/mainnet/safrochain/chain.d.ts +3 -0
- package/mainnet/safrochain/chain.js +153 -0
- package/mainnet/safrochain/ibc-data.d.ts +3 -0
- package/mainnet/safrochain/ibc-data.js +64 -0
- package/mainnet/safrochain/index.d.ts +3 -0
- package/mainnet/safrochain/index.js +12 -0
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/limonatatestnet/asset-list.d.ts +3 -0
- package/testnet/limonatatestnet/asset-list.js +28 -0
- package/testnet/limonatatestnet/chain.d.ts +3 -0
- package/testnet/limonatatestnet/chain.js +60 -0
- package/testnet/limonatatestnet/index.d.ts +2 -0
- package/testnet/limonatatestnet/index.js +10 -0
package/mainnet/ibc-data.js
CHANGED
|
@@ -156,6 +156,7 @@ const _realio = __importStar(require("./realio"));
|
|
|
156
156
|
const _rebus = __importStar(require("./rebus"));
|
|
157
157
|
const _regen = __importStar(require("./regen"));
|
|
158
158
|
const _rizon = __importStar(require("./rizon"));
|
|
159
|
+
const _safrochain = __importStar(require("./safrochain"));
|
|
159
160
|
const _saga = __importStar(require("./saga"));
|
|
160
161
|
const _scorum = __importStar(require("./scorum"));
|
|
161
162
|
const _secretnetwork = __importStar(require("./secretnetwork"));
|
|
@@ -327,6 +328,7 @@ const ibcData = [
|
|
|
327
328
|
..._rebus.ibcData,
|
|
328
329
|
..._regen.ibcData,
|
|
329
330
|
..._rizon.ibcData,
|
|
331
|
+
..._safrochain.ibcData,
|
|
330
332
|
..._saga.ibcData,
|
|
331
333
|
..._scorum.ibcData,
|
|
332
334
|
..._secretnetwork.ibcData,
|
|
@@ -1357,6 +1357,37 @@ const info = [
|
|
|
1357
1357
|
}
|
|
1358
1358
|
}]
|
|
1359
1359
|
},
|
|
1360
|
+
{
|
|
1361
|
+
$schema: '../ibc_data.schema.json',
|
|
1362
|
+
chain1: {
|
|
1363
|
+
chainName: 'noble',
|
|
1364
|
+
chainId: 'noble-1',
|
|
1365
|
+
clientId: '07-tendermint-224',
|
|
1366
|
+
connectionId: 'connection-210'
|
|
1367
|
+
},
|
|
1368
|
+
chain2: {
|
|
1369
|
+
chainName: 'safrochain',
|
|
1370
|
+
chainId: 'safrochain-1',
|
|
1371
|
+
clientId: '07-tendermint-0',
|
|
1372
|
+
connectionId: 'connection-0'
|
|
1373
|
+
},
|
|
1374
|
+
channels: [{
|
|
1375
|
+
chain1: {
|
|
1376
|
+
channelId: 'channel-581',
|
|
1377
|
+
portId: 'transfer'
|
|
1378
|
+
},
|
|
1379
|
+
chain2: {
|
|
1380
|
+
channelId: 'channel-0',
|
|
1381
|
+
portId: 'transfer'
|
|
1382
|
+
},
|
|
1383
|
+
ordering: 'unordered',
|
|
1384
|
+
version: 'ics20-1',
|
|
1385
|
+
tags: {
|
|
1386
|
+
status: 'ACTIVE',
|
|
1387
|
+
preferred: true
|
|
1388
|
+
}
|
|
1389
|
+
}]
|
|
1390
|
+
},
|
|
1360
1391
|
{
|
|
1361
1392
|
$schema: '../ibc_data.schema.json',
|
|
1362
1393
|
chain1: {
|
|
@@ -4570,6 +4570,37 @@ const info = [
|
|
|
4570
4570
|
}
|
|
4571
4571
|
}]
|
|
4572
4572
|
},
|
|
4573
|
+
{
|
|
4574
|
+
$schema: '../ibc_data.schema.json',
|
|
4575
|
+
chain1: {
|
|
4576
|
+
chainName: 'osmosis',
|
|
4577
|
+
chainId: 'osmosis-1',
|
|
4578
|
+
clientId: '07-tendermint-3719',
|
|
4579
|
+
connectionId: 'connection-11075'
|
|
4580
|
+
},
|
|
4581
|
+
chain2: {
|
|
4582
|
+
chainName: 'safrochain',
|
|
4583
|
+
chainId: 'safrochain-1',
|
|
4584
|
+
clientId: '07-tendermint-1',
|
|
4585
|
+
connectionId: 'connection-1'
|
|
4586
|
+
},
|
|
4587
|
+
channels: [{
|
|
4588
|
+
chain1: {
|
|
4589
|
+
channelId: 'channel-110497',
|
|
4590
|
+
portId: 'transfer'
|
|
4591
|
+
},
|
|
4592
|
+
chain2: {
|
|
4593
|
+
channelId: 'channel-1',
|
|
4594
|
+
portId: 'transfer'
|
|
4595
|
+
},
|
|
4596
|
+
ordering: 'unordered',
|
|
4597
|
+
version: 'ics20-1',
|
|
4598
|
+
tags: {
|
|
4599
|
+
status: 'ACTIVE',
|
|
4600
|
+
preferred: true
|
|
4601
|
+
}
|
|
4602
|
+
}]
|
|
4603
|
+
},
|
|
4573
4604
|
{
|
|
4574
4605
|
$schema: '../ibc_data.schema.json',
|
|
4575
4606
|
chain1: {
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'safrochain',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native staking, governance, and fee token of Safrochain, a mobile-first mobile-money-powered blockchain connecting mobile wallets to on-chain finance and interoperable digital rails.',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'usaf',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['microsaf']
|
|
13
|
+
}, {
|
|
14
|
+
denom: 'saf',
|
|
15
|
+
exponent: 6
|
|
16
|
+
}],
|
|
17
|
+
base: 'usaf',
|
|
18
|
+
name: 'Safrochain',
|
|
19
|
+
display: 'saf',
|
|
20
|
+
symbol: 'SAF',
|
|
21
|
+
logoURIs: {
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
|
|
23
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
|
|
24
|
+
},
|
|
25
|
+
images: [{
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
|
|
27
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
|
|
28
|
+
}],
|
|
29
|
+
typeAsset: 'sdk.coin'
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
description: 'Circle USDC bridged from Noble over IBC channel-0.',
|
|
33
|
+
denomUnits: [{
|
|
34
|
+
denom: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5',
|
|
35
|
+
exponent: 0,
|
|
36
|
+
aliases: ['uusdc']
|
|
37
|
+
}, {
|
|
38
|
+
denom: 'USDC',
|
|
39
|
+
exponent: 6
|
|
40
|
+
}],
|
|
41
|
+
base: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5',
|
|
42
|
+
name: 'USD Coin (Noble)',
|
|
43
|
+
display: 'USDC',
|
|
44
|
+
symbol: 'USDC',
|
|
45
|
+
traces: [{
|
|
46
|
+
type: 'ibc',
|
|
47
|
+
counterparty: {
|
|
48
|
+
chainName: 'noble',
|
|
49
|
+
baseDenom: 'uusdc',
|
|
50
|
+
channelId: 'channel-581'
|
|
51
|
+
},
|
|
52
|
+
chain: {
|
|
53
|
+
channelId: 'channel-0',
|
|
54
|
+
path: 'transfer/channel-0/uusdc'
|
|
55
|
+
}
|
|
56
|
+
}],
|
|
57
|
+
logoURIs: {
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
59
|
+
},
|
|
60
|
+
typeAsset: 'ics20'
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
description: 'Osmosis OSMO bridged over IBC channel-1.',
|
|
64
|
+
denomUnits: [{
|
|
65
|
+
denom: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
|
|
66
|
+
exponent: 0,
|
|
67
|
+
aliases: ['uosmo']
|
|
68
|
+
}, {
|
|
69
|
+
denom: 'OSMO',
|
|
70
|
+
exponent: 6
|
|
71
|
+
}],
|
|
72
|
+
base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
|
|
73
|
+
name: 'Osmosis',
|
|
74
|
+
display: 'OSMO',
|
|
75
|
+
symbol: 'OSMO',
|
|
76
|
+
traces: [{
|
|
77
|
+
type: 'ibc',
|
|
78
|
+
counterparty: {
|
|
79
|
+
chainName: 'osmosis',
|
|
80
|
+
baseDenom: 'uosmo',
|
|
81
|
+
channelId: 'channel-110497'
|
|
82
|
+
},
|
|
83
|
+
chain: {
|
|
84
|
+
channelId: 'channel-1',
|
|
85
|
+
path: 'transfer/channel-1/uosmo'
|
|
86
|
+
}
|
|
87
|
+
}],
|
|
88
|
+
logoURIs: {
|
|
89
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
|
|
90
|
+
},
|
|
91
|
+
typeAsset: 'ics20'
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
};
|
|
95
|
+
exports.default = info;
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'safrochain',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
status: 'live',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
website: 'https://safrochain.com',
|
|
10
|
+
prettyName: 'Safrochain',
|
|
11
|
+
chainId: 'safrochain-1',
|
|
12
|
+
bech32Prefix: 'addr_safro',
|
|
13
|
+
bech32Config: {
|
|
14
|
+
bech32PrefixAccAddr: 'addr_safro',
|
|
15
|
+
bech32PrefixAccPub: 'addr_safropub',
|
|
16
|
+
bech32PrefixValAddr: 'addr_safrovaloper',
|
|
17
|
+
bech32PrefixValPub: 'addr_safrovaloperpub',
|
|
18
|
+
bech32PrefixConsAddr: 'addr_safrovalcons',
|
|
19
|
+
bech32PrefixConsPub: 'addr_safrovalconspub'
|
|
20
|
+
},
|
|
21
|
+
daemonName: 'safrochaind',
|
|
22
|
+
nodeHome: '$HOME/.safrochain',
|
|
23
|
+
keyAlgos: ['secp256k1'],
|
|
24
|
+
slip44: 118,
|
|
25
|
+
fees: {
|
|
26
|
+
feeTokens: [{
|
|
27
|
+
denom: 'usaf',
|
|
28
|
+
fixedMinGasPrice: 0.05,
|
|
29
|
+
lowGasPrice: 0.05,
|
|
30
|
+
averageGasPrice: 0.0625,
|
|
31
|
+
highGasPrice: 0.075
|
|
32
|
+
}]
|
|
33
|
+
},
|
|
34
|
+
staking: {
|
|
35
|
+
stakingTokens: [{
|
|
36
|
+
denom: 'usaf'
|
|
37
|
+
}]
|
|
38
|
+
},
|
|
39
|
+
codebase: {
|
|
40
|
+
gitRepo: 'https://github.com/Safrochain-Org/safrochain-node',
|
|
41
|
+
recommendedVersion: 'v0.2.2',
|
|
42
|
+
compatibleVersions: ['v0.2.2'],
|
|
43
|
+
tag: 'v0.2.2',
|
|
44
|
+
language: {
|
|
45
|
+
type: 'go',
|
|
46
|
+
version: '1.25.8'
|
|
47
|
+
},
|
|
48
|
+
sdk: {
|
|
49
|
+
type: 'cosmos',
|
|
50
|
+
version: '0.50.14'
|
|
51
|
+
},
|
|
52
|
+
consensus: {
|
|
53
|
+
type: 'cometbft',
|
|
54
|
+
version: '0.38.21'
|
|
55
|
+
},
|
|
56
|
+
ibc: {
|
|
57
|
+
type: 'go',
|
|
58
|
+
version: '8.7.0',
|
|
59
|
+
icsEnabled: ['ics20-1', 'ics27-1']
|
|
60
|
+
},
|
|
61
|
+
genesis: {
|
|
62
|
+
name: 'genesis',
|
|
63
|
+
genesisUrl: 'https://raw.githubusercontent.com/Safrochain-Org/mainnet-genesis/main/genesis.json'
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
logoURIs: {
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
|
|
69
|
+
},
|
|
70
|
+
images: [{
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
|
|
72
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
|
|
73
|
+
}],
|
|
74
|
+
description: 'Safrochain is building a mobile-first, mobile-money-powered blockchain that connects blockchain infrastructure to mobile money networks—turning mobile wallets into gateways to stablecoins, programmable finance, cross-border settlement, and lower-cost interoperable transfers across operators and borders.',
|
|
75
|
+
apis: {
|
|
76
|
+
rpc: [
|
|
77
|
+
{
|
|
78
|
+
address: 'https://rpc.safrochain.network',
|
|
79
|
+
provider: 'Safrochain Foundation'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'https://rpc1.safrochain.network',
|
|
83
|
+
provider: 'Safrochain Foundation'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://rpc2.safrochain.network',
|
|
87
|
+
provider: 'Safrochain Foundation',
|
|
88
|
+
archive: true
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
rest: [
|
|
92
|
+
{
|
|
93
|
+
address: 'https://api.safrochain.network',
|
|
94
|
+
provider: 'Safrochain Foundation'
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
address: 'https://api1.safrochain.network',
|
|
98
|
+
provider: 'Safrochain Foundation'
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
address: 'https://api2.safrochain.network',
|
|
102
|
+
provider: 'Safrochain Foundation',
|
|
103
|
+
archive: true
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
grpc: [
|
|
107
|
+
{
|
|
108
|
+
address: 'https://grpc.safrochain.network:443',
|
|
109
|
+
provider: 'Safrochain Foundation'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
address: 'https://grpc1.safrochain.network:443',
|
|
113
|
+
provider: 'Safrochain Foundation'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://grpc2.safrochain.network:443',
|
|
117
|
+
provider: 'Safrochain Foundation',
|
|
118
|
+
archive: true
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
grpcWeb: [{
|
|
122
|
+
address: 'https://grpc-web.safrochain.network',
|
|
123
|
+
provider: 'Safrochain Foundation'
|
|
124
|
+
}],
|
|
125
|
+
wss: [{
|
|
126
|
+
address: 'wss://rpc.safrochain.network/websocket',
|
|
127
|
+
provider: 'Safrochain Foundation'
|
|
128
|
+
}, {
|
|
129
|
+
address: 'wss://rpc1.safrochain.network/websocket',
|
|
130
|
+
provider: 'Safrochain Foundation'
|
|
131
|
+
}]
|
|
132
|
+
},
|
|
133
|
+
snapshots: [{
|
|
134
|
+
provider: 'Safrochain Foundation',
|
|
135
|
+
url: 'https://snapshots.safrochain.network',
|
|
136
|
+
type: 'archive'
|
|
137
|
+
}],
|
|
138
|
+
explorers: [{
|
|
139
|
+
kind: 'safroexplorer',
|
|
140
|
+
url: 'https://explorer.safrochain.com/',
|
|
141
|
+
txPage: 'https://explorer.safrochain.com/tx/${txHash}',
|
|
142
|
+
accountPage: 'https://explorer.safrochain.com/address/${accountAddress}',
|
|
143
|
+
validatorPage: 'https://explorer.safrochain.com/validator/${validatorAddress}'
|
|
144
|
+
}],
|
|
145
|
+
keywords: [
|
|
146
|
+
'safrochain',
|
|
147
|
+
'saf',
|
|
148
|
+
'cosmos',
|
|
149
|
+
'ibc',
|
|
150
|
+
'payments'
|
|
151
|
+
]
|
|
152
|
+
};
|
|
153
|
+
exports.default = info;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'noble',
|
|
7
|
+
chainId: 'noble-1',
|
|
8
|
+
clientId: '07-tendermint-224',
|
|
9
|
+
connectionId: 'connection-210'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'safrochain',
|
|
13
|
+
chainId: 'safrochain-1',
|
|
14
|
+
clientId: '07-tendermint-0',
|
|
15
|
+
connectionId: 'connection-0'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-581',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-0',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
status: 'ACTIVE',
|
|
30
|
+
preferred: true
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}, {
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'osmosis',
|
|
37
|
+
chainId: 'osmosis-1',
|
|
38
|
+
clientId: '07-tendermint-3719',
|
|
39
|
+
connectionId: 'connection-11075'
|
|
40
|
+
},
|
|
41
|
+
chain2: {
|
|
42
|
+
chainName: 'safrochain',
|
|
43
|
+
chainId: 'safrochain-1',
|
|
44
|
+
clientId: '07-tendermint-1',
|
|
45
|
+
connectionId: 'connection-1'
|
|
46
|
+
},
|
|
47
|
+
channels: [{
|
|
48
|
+
chain1: {
|
|
49
|
+
channelId: 'channel-110497',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
chain2: {
|
|
53
|
+
channelId: 'channel-1',
|
|
54
|
+
portId: 'transfer'
|
|
55
|
+
},
|
|
56
|
+
ordering: 'unordered',
|
|
57
|
+
version: 'ics20-1',
|
|
58
|
+
tags: {
|
|
59
|
+
status: 'ACTIVE',
|
|
60
|
+
preferred: true
|
|
61
|
+
}
|
|
62
|
+
}]
|
|
63
|
+
}];
|
|
64
|
+
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.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
10
|
+
exports.assetList = asset_list_1.default;
|
|
11
|
+
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.227",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.227"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "668d8ef5b3503b68422514941ee7f3e65c78cc7c"
|
|
43
43
|
}
|
package/testnet/asset-lists.js
CHANGED
|
@@ -90,6 +90,7 @@ const _kujiratestnet = __importStar(require("./kujiratestnet"));
|
|
|
90
90
|
const _kyvetestnet = __importStar(require("./kyvetestnet"));
|
|
91
91
|
const _lavatestnet = __importStar(require("./lavatestnet"));
|
|
92
92
|
const _likecointestnet = __importStar(require("./likecointestnet"));
|
|
93
|
+
const _limonatatestnet = __importStar(require("./limonatatestnet"));
|
|
93
94
|
const _lombardledgertestnet = __importStar(require("./lombardledgertestnet"));
|
|
94
95
|
const _lumenxtestnet = __importStar(require("./lumenxtestnet"));
|
|
95
96
|
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
@@ -237,6 +238,7 @@ const assetList = [
|
|
|
237
238
|
_kyvetestnet.assetList,
|
|
238
239
|
_lavatestnet.assetList,
|
|
239
240
|
_likecointestnet.assetList,
|
|
241
|
+
_limonatatestnet.assetList,
|
|
240
242
|
_lombardledgertestnet.assetList,
|
|
241
243
|
_lumenxtestnet.assetList,
|
|
242
244
|
_lumeratestnet.assetList,
|
package/testnet/chains.js
CHANGED
|
@@ -90,6 +90,7 @@ const _kujiratestnet = __importStar(require("./kujiratestnet"));
|
|
|
90
90
|
const _kyvetestnet = __importStar(require("./kyvetestnet"));
|
|
91
91
|
const _lavatestnet = __importStar(require("./lavatestnet"));
|
|
92
92
|
const _likecointestnet = __importStar(require("./likecointestnet"));
|
|
93
|
+
const _limonatatestnet = __importStar(require("./limonatatestnet"));
|
|
93
94
|
const _lombardledgertestnet = __importStar(require("./lombardledgertestnet"));
|
|
94
95
|
const _lumenxtestnet = __importStar(require("./lumenxtestnet"));
|
|
95
96
|
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
@@ -237,6 +238,7 @@ const chains = [
|
|
|
237
238
|
_kyvetestnet.chain,
|
|
238
239
|
_lavatestnet.chain,
|
|
239
240
|
_likecointestnet.chain,
|
|
241
|
+
_limonatatestnet.chain,
|
|
240
242
|
_lombardledgertestnet.chain,
|
|
241
243
|
_lumenxtestnet.chain,
|
|
242
244
|
_lumeratestnet.chain,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chainName: 'limonatatestnet',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'LIMO is the native gas and staking token of Limonata, an EVM Layer-1 on the Cosmos SDK.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'aLIMO',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'LIMO',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'aLIMO',
|
|
16
|
+
name: 'Limonata',
|
|
17
|
+
display: 'LIMO',
|
|
18
|
+
symbol: 'LIMO',
|
|
19
|
+
typeAsset: 'sdk.coin',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
|
|
25
|
+
}]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
exports.default = info;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chainName: 'limonatatestnet',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
chainId: 'limonata_10777-1',
|
|
8
|
+
prettyName: 'Limonata Testnet',
|
|
9
|
+
website: 'https://limonata.xyz',
|
|
10
|
+
networkType: 'testnet',
|
|
11
|
+
status: 'live',
|
|
12
|
+
logoURIs: {
|
|
13
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
|
|
14
|
+
},
|
|
15
|
+
bech32Prefix: 'cosmos',
|
|
16
|
+
daemonName: 'limonatad',
|
|
17
|
+
nodeHome: '$HOME/.limonatad',
|
|
18
|
+
keyAlgos: ['ethsecp256k1'],
|
|
19
|
+
slip44: 60,
|
|
20
|
+
fees: {
|
|
21
|
+
feeTokens: [{
|
|
22
|
+
denom: 'aLIMO',
|
|
23
|
+
fixedMinGasPrice: 0,
|
|
24
|
+
lowGasPrice: 0.01,
|
|
25
|
+
averageGasPrice: 0.025,
|
|
26
|
+
highGasPrice: 0.04
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
staking: {
|
|
30
|
+
stakingTokens: [{
|
|
31
|
+
denom: 'aLIMO'
|
|
32
|
+
}]
|
|
33
|
+
},
|
|
34
|
+
codebase: {
|
|
35
|
+
gitRepo: 'https://github.com/Limonata-Blockchain/limonata',
|
|
36
|
+
genesis: {
|
|
37
|
+
genesisUrl: 'https://limonata.xyz/genesis.json'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
apis: {
|
|
41
|
+
rpc: [{
|
|
42
|
+
address: 'https://cosmos-rpc.limonata.xyz',
|
|
43
|
+
provider: 'Limonata'
|
|
44
|
+
}],
|
|
45
|
+
rest: [{
|
|
46
|
+
address: 'https://rest.limonata.xyz',
|
|
47
|
+
provider: 'Limonata'
|
|
48
|
+
}]
|
|
49
|
+
},
|
|
50
|
+
explorers: [{
|
|
51
|
+
kind: 'Limonata Explorer',
|
|
52
|
+
url: 'https://explorer.limonata.xyz',
|
|
53
|
+
txPage: 'https://explorer.limonata.xyz/tx/${txHash}',
|
|
54
|
+
accountPage: 'https://explorer.limonata.xyz/address/${accountAddress}'
|
|
55
|
+
}],
|
|
56
|
+
images: [{
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
|
|
58
|
+
}]
|
|
59
|
+
};
|
|
60
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|