chain-registry 1.46.4 → 1.46.5
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/andromeda/chain.js +12 -0
- package/esm/mainnet/assets.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/comdex/chain.js +12 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/onex/ibc.js +1 -1
- package/esm/mainnet/osmosis/ibc.js +1 -1
- package/esm/mainnet/seda/assets.js +33 -0
- package/esm/mainnet/seda/chain.js +123 -0
- package/esm/mainnet/seda/index.js +4 -0
- package/mainnet/andromeda/chain.js +12 -0
- package/mainnet/assets.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/comdex/chain.js +12 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +3 -2
- package/mainnet/onex/ibc.js +1 -1
- package/mainnet/osmosis/ibc.js +1 -1
- package/mainnet/seda/assets.d.ts +3 -0
- package/mainnet/seda/assets.js +35 -0
- package/mainnet/seda/chain.d.ts +3 -0
- package/mainnet/seda/chain.js +125 -0
- package/mainnet/seda/index.d.ts +2 -0
- package/mainnet/seda/index.js +10 -0
- package/package.json +4 -4
|
@@ -78,6 +78,10 @@ const info = {
|
|
|
78
78
|
{
|
|
79
79
|
address: 'andromeda-rpc.noders.services',
|
|
80
80
|
provider: '[NODERS]TEAM'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'rpc-andromeda.blockval.io',
|
|
84
|
+
provider: 'Blockval'
|
|
81
85
|
}
|
|
82
86
|
],
|
|
83
87
|
rest: [
|
|
@@ -128,6 +132,10 @@ const info = {
|
|
|
128
132
|
{
|
|
129
133
|
address: 'andromeda-api.noders.services',
|
|
130
134
|
provider: '[NODERS]TEAM'
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
address: 'api-andromeda.blockval.io',
|
|
138
|
+
provider: 'Blockval'
|
|
131
139
|
}
|
|
132
140
|
],
|
|
133
141
|
grpc: [
|
|
@@ -174,6 +182,10 @@ const info = {
|
|
|
174
182
|
{
|
|
175
183
|
address: 'andromeda-grpc.noders.services:34090',
|
|
176
184
|
provider: '[NODERS]TEAM'
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
address: 'grpc-andromeda.blockval.io:443',
|
|
188
|
+
provider: 'Blockval'
|
|
177
189
|
}
|
|
178
190
|
]
|
|
179
191
|
},
|
package/esm/mainnet/assets.js
CHANGED
|
@@ -129,6 +129,7 @@ import * as _rizon from './rizon';
|
|
|
129
129
|
import * as _saga from './saga';
|
|
130
130
|
import * as _scorum from './scorum';
|
|
131
131
|
import * as _secretnetwork from './secretnetwork';
|
|
132
|
+
import * as _seda from './seda';
|
|
132
133
|
import * as _sei from './sei';
|
|
133
134
|
import * as _sentinel from './sentinel';
|
|
134
135
|
import * as _sge from './sge';
|
|
@@ -290,6 +291,7 @@ const assets = [
|
|
|
290
291
|
_saga.assets,
|
|
291
292
|
_scorum.assets,
|
|
292
293
|
_secretnetwork.assets,
|
|
294
|
+
_seda.assets,
|
|
293
295
|
_sei.assets,
|
|
294
296
|
_sentinel.assets,
|
|
295
297
|
_sge.assets,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -130,6 +130,7 @@ import * as _rizon from './rizon';
|
|
|
130
130
|
import * as _saga from './saga';
|
|
131
131
|
import * as _scorum from './scorum';
|
|
132
132
|
import * as _secretnetwork from './secretnetwork';
|
|
133
|
+
import * as _seda from './seda';
|
|
133
134
|
import * as _sei from './sei';
|
|
134
135
|
import * as _sentinel from './sentinel';
|
|
135
136
|
import * as _sge from './sge';
|
|
@@ -293,6 +294,7 @@ const chains = [
|
|
|
293
294
|
_saga.chain,
|
|
294
295
|
_scorum.chain,
|
|
295
296
|
_secretnetwork.chain,
|
|
297
|
+
_seda.chain,
|
|
296
298
|
_sei.chain,
|
|
297
299
|
_sentinel.chain,
|
|
298
300
|
_sge.chain,
|
|
@@ -87,6 +87,10 @@ const info = {
|
|
|
87
87
|
{
|
|
88
88
|
address: 'https://comdex-rpc.validatornode.com',
|
|
89
89
|
provider: 'ValidatorNode'
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
address: 'https://rpc-comdex.blockval.io',
|
|
93
|
+
provider: 'Blockval'
|
|
90
94
|
}
|
|
91
95
|
],
|
|
92
96
|
rest: [
|
|
@@ -141,6 +145,10 @@ const info = {
|
|
|
141
145
|
{
|
|
142
146
|
address: 'https://comdex-api.validatornode.com',
|
|
143
147
|
provider: 'ValidatorNode'
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
address: 'https://api-comdex.blockval.io',
|
|
151
|
+
provider: 'Blockval'
|
|
144
152
|
}
|
|
145
153
|
],
|
|
146
154
|
grpc: [
|
|
@@ -187,6 +195,10 @@ const info = {
|
|
|
187
195
|
{
|
|
188
196
|
address: 'comdex-grpc.stakerhouse.com:443',
|
|
189
197
|
provider: 'StakerHouse'
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
address: 'https://grpc-comdex.blockval.io:443',
|
|
201
|
+
provider: 'Blockval'
|
|
190
202
|
}
|
|
191
203
|
]
|
|
192
204
|
},
|
package/esm/mainnet/named.js
CHANGED
|
@@ -130,6 +130,7 @@ export * as rizon from './rizon';
|
|
|
130
130
|
export * as saga from './saga';
|
|
131
131
|
export * as scorum from './scorum';
|
|
132
132
|
export * as secretnetwork from './secretnetwork';
|
|
133
|
+
export * as seda from './seda';
|
|
133
134
|
export * as sei from './sei';
|
|
134
135
|
export * as sentinel from './sentinel';
|
|
135
136
|
export * as sge from './sge';
|
package/esm/mainnet/onex/ibc.js
CHANGED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'seda',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of SEDA Chain.',
|
|
6
|
+
extended_description: 'SEDA is a standard for modular data transport and querying. Any data type, for all networks.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'aseda',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'seda',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
base: 'aseda',
|
|
15
|
+
name: 'Seda',
|
|
16
|
+
display: 'seda',
|
|
17
|
+
symbol: 'SEDA',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'seda-2',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
26
|
+
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://www.seda.xyz/',
|
|
29
|
+
twitter: 'https://twitter.com/sedaprotocol'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
export default info;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'seda',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'mainnet',
|
|
6
|
+
website: 'https://www.seda.xyz/',
|
|
7
|
+
pretty_name: 'SEDA',
|
|
8
|
+
chain_id: 'seda-1',
|
|
9
|
+
bech32_prefix: 'seda',
|
|
10
|
+
daemon_name: 'sedad',
|
|
11
|
+
node_home: '$HOME/.sedad',
|
|
12
|
+
key_algos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'aseda',
|
|
17
|
+
low_gas_price: 10000000000,
|
|
18
|
+
average_gas_price: 10000000000,
|
|
19
|
+
high_gas_price: 14000000000
|
|
20
|
+
}]
|
|
21
|
+
},
|
|
22
|
+
staking: {
|
|
23
|
+
staking_tokens: [{
|
|
24
|
+
denom: 'aseda'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
codebase: {
|
|
28
|
+
cosmos_sdk_version: 'v0.50.5'
|
|
29
|
+
},
|
|
30
|
+
logo_URIs: {
|
|
31
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
32
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
33
|
+
},
|
|
34
|
+
description: 'SEDA is a standard for modular data transport and querying. Any data type, for all networks.',
|
|
35
|
+
apis: {
|
|
36
|
+
rpc: [
|
|
37
|
+
{
|
|
38
|
+
address: 'https://rpc.mainnet.seda.xyz/',
|
|
39
|
+
provider: 'SEDA'
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
address: 'https://seda-rpc.polkachu.com/',
|
|
43
|
+
provider: 'Polkachu'
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
address: 'https://seda.rpc.kjnodes.com',
|
|
47
|
+
provider: 'kjnodes'
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
address: 'https://seda-rpc.synergynodes.com/',
|
|
51
|
+
provider: 'Synergy Nodes'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
address: 'https://seda-rpc.lavenderfive.com/',
|
|
55
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'https://seda-rpc.kleomedes.network/',
|
|
59
|
+
provider: 'Kleomedes'
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
rest: [
|
|
63
|
+
{
|
|
64
|
+
address: 'https://lcd.mainnet.seda.xyz/',
|
|
65
|
+
provider: 'SEDA'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
address: 'https://seda-api.polkachu.com/',
|
|
69
|
+
provider: 'Polkachu'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'https://seda.api.kjnodes.com',
|
|
73
|
+
provider: 'kjnodes'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'https://seda-api.synergynodes.com/',
|
|
77
|
+
provider: 'Synergy Nodes'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: 'https://seda-api.lavenderfive.com/',
|
|
81
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
address: 'https://seda-api.kleomedes.network/',
|
|
85
|
+
provider: 'Kleomedes'
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
grpc: [
|
|
89
|
+
{
|
|
90
|
+
address: 'seda-grpc.polkachu.com:25890',
|
|
91
|
+
provider: 'Polkachu'
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
address: 'https://seda-grpc.synergynodes.com/',
|
|
95
|
+
provider: 'Synergy Nodes'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'seda.grpc.kjnodes.com:443',
|
|
99
|
+
provider: 'kjnodes'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://seda-grpc.lavenderfive.com',
|
|
103
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
explorers: [{
|
|
108
|
+
kind: 'sedaexplorer',
|
|
109
|
+
url: 'https://explorer.seda.xyz/',
|
|
110
|
+
tx_page: 'https://explorer.seda.xyz/txs/${txHash}',
|
|
111
|
+
account_page: 'https://explorer.seda.xyz/account/${accountAddress}'
|
|
112
|
+
}, {
|
|
113
|
+
kind: 'explorers.guru',
|
|
114
|
+
url: 'https://seda.explorers.guru',
|
|
115
|
+
tx_page: 'https://seda.explorers.guru/transaction/${txHash}',
|
|
116
|
+
account_page: 'https://seda.explorers.guru/account/${accountAddress}'
|
|
117
|
+
}],
|
|
118
|
+
images: [{
|
|
119
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
120
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
121
|
+
}]
|
|
122
|
+
};
|
|
123
|
+
export default info;
|
|
@@ -80,6 +80,10 @@ const info = {
|
|
|
80
80
|
{
|
|
81
81
|
address: 'andromeda-rpc.noders.services',
|
|
82
82
|
provider: '[NODERS]TEAM'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'rpc-andromeda.blockval.io',
|
|
86
|
+
provider: 'Blockval'
|
|
83
87
|
}
|
|
84
88
|
],
|
|
85
89
|
rest: [
|
|
@@ -130,6 +134,10 @@ const info = {
|
|
|
130
134
|
{
|
|
131
135
|
address: 'andromeda-api.noders.services',
|
|
132
136
|
provider: '[NODERS]TEAM'
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
address: 'api-andromeda.blockval.io',
|
|
140
|
+
provider: 'Blockval'
|
|
133
141
|
}
|
|
134
142
|
],
|
|
135
143
|
grpc: [
|
|
@@ -176,6 +184,10 @@ const info = {
|
|
|
176
184
|
{
|
|
177
185
|
address: 'andromeda-grpc.noders.services:34090',
|
|
178
186
|
provider: '[NODERS]TEAM'
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
address: 'grpc-andromeda.blockval.io:443',
|
|
190
|
+
provider: 'Blockval'
|
|
179
191
|
}
|
|
180
192
|
]
|
|
181
193
|
},
|
package/mainnet/assets.js
CHANGED
|
@@ -154,6 +154,7 @@ const _rizon = __importStar(require("./rizon"));
|
|
|
154
154
|
const _saga = __importStar(require("./saga"));
|
|
155
155
|
const _scorum = __importStar(require("./scorum"));
|
|
156
156
|
const _secretnetwork = __importStar(require("./secretnetwork"));
|
|
157
|
+
const _seda = __importStar(require("./seda"));
|
|
157
158
|
const _sei = __importStar(require("./sei"));
|
|
158
159
|
const _sentinel = __importStar(require("./sentinel"));
|
|
159
160
|
const _sge = __importStar(require("./sge"));
|
|
@@ -315,6 +316,7 @@ const assets = [
|
|
|
315
316
|
_saga.assets,
|
|
316
317
|
_scorum.assets,
|
|
317
318
|
_secretnetwork.assets,
|
|
319
|
+
_seda.assets,
|
|
318
320
|
_sei.assets,
|
|
319
321
|
_sentinel.assets,
|
|
320
322
|
_sge.assets,
|
package/mainnet/chains.js
CHANGED
|
@@ -155,6 +155,7 @@ const _rizon = __importStar(require("./rizon"));
|
|
|
155
155
|
const _saga = __importStar(require("./saga"));
|
|
156
156
|
const _scorum = __importStar(require("./scorum"));
|
|
157
157
|
const _secretnetwork = __importStar(require("./secretnetwork"));
|
|
158
|
+
const _seda = __importStar(require("./seda"));
|
|
158
159
|
const _sei = __importStar(require("./sei"));
|
|
159
160
|
const _sentinel = __importStar(require("./sentinel"));
|
|
160
161
|
const _sge = __importStar(require("./sge"));
|
|
@@ -318,6 +319,7 @@ const chains = [
|
|
|
318
319
|
_saga.chain,
|
|
319
320
|
_scorum.chain,
|
|
320
321
|
_secretnetwork.chain,
|
|
322
|
+
_seda.chain,
|
|
321
323
|
_sei.chain,
|
|
322
324
|
_sentinel.chain,
|
|
323
325
|
_sge.chain,
|
package/mainnet/comdex/chain.js
CHANGED
|
@@ -89,6 +89,10 @@ const info = {
|
|
|
89
89
|
{
|
|
90
90
|
address: 'https://comdex-rpc.validatornode.com',
|
|
91
91
|
provider: 'ValidatorNode'
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
address: 'https://rpc-comdex.blockval.io',
|
|
95
|
+
provider: 'Blockval'
|
|
92
96
|
}
|
|
93
97
|
],
|
|
94
98
|
rest: [
|
|
@@ -143,6 +147,10 @@ const info = {
|
|
|
143
147
|
{
|
|
144
148
|
address: 'https://comdex-api.validatornode.com',
|
|
145
149
|
provider: 'ValidatorNode'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
address: 'https://api-comdex.blockval.io',
|
|
153
|
+
provider: 'Blockval'
|
|
146
154
|
}
|
|
147
155
|
],
|
|
148
156
|
grpc: [
|
|
@@ -189,6 +197,10 @@ const info = {
|
|
|
189
197
|
{
|
|
190
198
|
address: 'comdex-grpc.stakerhouse.com:443',
|
|
191
199
|
provider: 'StakerHouse'
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
address: 'https://grpc-comdex.blockval.io:443',
|
|
203
|
+
provider: 'Blockval'
|
|
192
204
|
}
|
|
193
205
|
]
|
|
194
206
|
},
|
package/mainnet/named.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export * as rizon from './rizon';
|
|
|
130
130
|
export * as saga from './saga';
|
|
131
131
|
export * as scorum from './scorum';
|
|
132
132
|
export * as secretnetwork from './secretnetwork';
|
|
133
|
+
export * as seda from './seda';
|
|
133
134
|
export * as sei from './sei';
|
|
134
135
|
export * as sentinel from './sentinel';
|
|
135
136
|
export * as sge from './sge';
|
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.echelon = exports.dyson = exports.dymension = 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.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
|
|
27
27
|
exports.nibiru = exports.neutron = exports.neutaro = exports.mythos = 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.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 = 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 = void 0;
|
|
28
|
+
exports.teritori = exports.tenet = 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.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.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 = 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 = void 0;
|
|
30
30
|
exports._8ball = __importStar(require("./8ball"));
|
|
31
31
|
exports.acrechain = __importStar(require("./acrechain"));
|
|
32
32
|
exports.agoric = __importStar(require("./agoric"));
|
|
@@ -159,6 +159,7 @@ exports.rizon = __importStar(require("./rizon"));
|
|
|
159
159
|
exports.saga = __importStar(require("./saga"));
|
|
160
160
|
exports.scorum = __importStar(require("./scorum"));
|
|
161
161
|
exports.secretnetwork = __importStar(require("./secretnetwork"));
|
|
162
|
+
exports.seda = __importStar(require("./seda"));
|
|
162
163
|
exports.sei = __importStar(require("./sei"));
|
|
163
164
|
exports.sentinel = __importStar(require("./sentinel"));
|
|
164
165
|
exports.sge = __importStar(require("./sge"));
|
package/mainnet/onex/ibc.js
CHANGED
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'seda',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of SEDA Chain.',
|
|
8
|
+
extended_description: 'SEDA is a standard for modular data transport and querying. Any data type, for all networks.',
|
|
9
|
+
denom_units: [{
|
|
10
|
+
denom: 'aseda',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'seda',
|
|
14
|
+
exponent: 18
|
|
15
|
+
}],
|
|
16
|
+
base: 'aseda',
|
|
17
|
+
name: 'Seda',
|
|
18
|
+
display: 'seda',
|
|
19
|
+
symbol: 'SEDA',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
23
|
+
},
|
|
24
|
+
coingecko_id: 'seda-2',
|
|
25
|
+
images: [{
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
27
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
28
|
+
}],
|
|
29
|
+
socials: {
|
|
30
|
+
website: 'https://www.seda.xyz/',
|
|
31
|
+
twitter: 'https://twitter.com/sedaprotocol'
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
exports.default = info;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'seda',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
website: 'https://www.seda.xyz/',
|
|
9
|
+
pretty_name: 'SEDA',
|
|
10
|
+
chain_id: 'seda-1',
|
|
11
|
+
bech32_prefix: 'seda',
|
|
12
|
+
daemon_name: 'sedad',
|
|
13
|
+
node_home: '$HOME/.sedad',
|
|
14
|
+
key_algos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'aseda',
|
|
19
|
+
low_gas_price: 10000000000,
|
|
20
|
+
average_gas_price: 10000000000,
|
|
21
|
+
high_gas_price: 14000000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'aseda'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
cosmos_sdk_version: 'v0.50.5'
|
|
31
|
+
},
|
|
32
|
+
logo_URIs: {
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
34
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
35
|
+
},
|
|
36
|
+
description: 'SEDA is a standard for modular data transport and querying. Any data type, for all networks.',
|
|
37
|
+
apis: {
|
|
38
|
+
rpc: [
|
|
39
|
+
{
|
|
40
|
+
address: 'https://rpc.mainnet.seda.xyz/',
|
|
41
|
+
provider: 'SEDA'
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
address: 'https://seda-rpc.polkachu.com/',
|
|
45
|
+
provider: 'Polkachu'
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
address: 'https://seda.rpc.kjnodes.com',
|
|
49
|
+
provider: 'kjnodes'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
address: 'https://seda-rpc.synergynodes.com/',
|
|
53
|
+
provider: 'Synergy Nodes'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
address: 'https://seda-rpc.lavenderfive.com/',
|
|
57
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'https://seda-rpc.kleomedes.network/',
|
|
61
|
+
provider: 'Kleomedes'
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
rest: [
|
|
65
|
+
{
|
|
66
|
+
address: 'https://lcd.mainnet.seda.xyz/',
|
|
67
|
+
provider: 'SEDA'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
address: 'https://seda-api.polkachu.com/',
|
|
71
|
+
provider: 'Polkachu'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://seda.api.kjnodes.com',
|
|
75
|
+
provider: 'kjnodes'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://seda-api.synergynodes.com/',
|
|
79
|
+
provider: 'Synergy Nodes'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'https://seda-api.lavenderfive.com/',
|
|
83
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://seda-api.kleomedes.network/',
|
|
87
|
+
provider: 'Kleomedes'
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
grpc: [
|
|
91
|
+
{
|
|
92
|
+
address: 'seda-grpc.polkachu.com:25890',
|
|
93
|
+
provider: 'Polkachu'
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
address: 'https://seda-grpc.synergynodes.com/',
|
|
97
|
+
provider: 'Synergy Nodes'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
address: 'seda.grpc.kjnodes.com:443',
|
|
101
|
+
provider: 'kjnodes'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'https://seda-grpc.lavenderfive.com',
|
|
105
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
explorers: [{
|
|
110
|
+
kind: 'sedaexplorer',
|
|
111
|
+
url: 'https://explorer.seda.xyz/',
|
|
112
|
+
tx_page: 'https://explorer.seda.xyz/txs/${txHash}',
|
|
113
|
+
account_page: 'https://explorer.seda.xyz/account/${accountAddress}'
|
|
114
|
+
}, {
|
|
115
|
+
kind: 'explorers.guru',
|
|
116
|
+
url: 'https://seda.explorers.guru',
|
|
117
|
+
tx_page: 'https://seda.explorers.guru/transaction/${txHash}',
|
|
118
|
+
account_page: 'https://seda.explorers.guru/account/${accountAddress}'
|
|
119
|
+
}],
|
|
120
|
+
images: [{
|
|
121
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png',
|
|
122
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg'
|
|
123
|
+
}]
|
|
124
|
+
};
|
|
125
|
+
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.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.46.
|
|
3
|
+
"version": "1.46.5",
|
|
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.29.
|
|
32
|
+
"@chain-registry/utils": "^1.29.10",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.28.
|
|
36
|
+
"@chain-registry/types": "^0.28.10"
|
|
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": "c4cfd0db8a26e6c27be1d5058cc51fd8b06a395c"
|
|
47
47
|
}
|