chain-registry 2.0.200 → 2.0.202
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/amitis/asset-list.js +32 -0
- package/esm/mainnet/amitis/chain.js +63 -0
- package/esm/mainnet/amitis/ibc-data.js +31 -0
- package/esm/mainnet/asset-lists.js +2 -2
- package/esm/mainnet/chains.js +2 -2
- package/esm/mainnet/coreum/asset-list.js +0 -1
- package/esm/mainnet/hazinachain/ibc-data.js +32 -0
- package/esm/mainnet/hazinachain/index.js +2 -0
- package/esm/mainnet/ibc-data.js +4 -2
- package/esm/mainnet/osmosis/ibc-data.js +61 -0
- package/esm/mainnet/sentinel/chain.js +8 -0
- package/esm/mainnet/thejaynetwork/chain.js +25 -6
- package/mainnet/amitis/asset-list.js +34 -0
- package/mainnet/amitis/chain.js +65 -0
- package/mainnet/amitis/ibc-data.js +33 -0
- package/mainnet/asset-lists.js +2 -2
- package/mainnet/chains.js +2 -2
- package/mainnet/coreum/asset-list.js +0 -1
- package/mainnet/hazinachain/ibc-data.d.ts +3 -0
- package/mainnet/hazinachain/ibc-data.js +34 -0
- package/mainnet/hazinachain/index.d.ts +1 -0
- package/mainnet/hazinachain/index.js +3 -1
- package/mainnet/ibc-data.js +4 -2
- package/mainnet/osmosis/ibc-data.js +61 -0
- package/mainnet/sentinel/chain.js +8 -0
- package/mainnet/thejaynetwork/chain.js +25 -6
- package/package.json +3 -3
- package/esm/mainnet/pryzm/asset-list.js +0 -5323
- package/esm/mainnet/pryzm/chain.js +0 -239
- package/esm/mainnet/pryzm/ibc-data.js +0 -545
- package/mainnet/pryzm/asset-list.js +0 -5325
- package/mainnet/pryzm/chain.js +0 -241
- package/mainnet/pryzm/ibc-data.js +0 -547
- /package/esm/mainnet/{pryzm → amitis}/index.js +0 -0
- /package/mainnet/{pryzm → amitis}/asset-list.d.ts +0 -0
- /package/mainnet/{pryzm → amitis}/chain.d.ts +0 -0
- /package/mainnet/{pryzm → amitis}/ibc-data.d.ts +0 -0
- /package/mainnet/{pryzm → amitis}/index.d.ts +0 -0
- /package/mainnet/{pryzm → amitis}/index.js +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'amitis',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of the Amitis Network. AMTS powers the cooperative Layer 1 blockchain that returns 80% of transaction fees to users.',
|
|
6
|
+
typeAsset: 'sdk.coin',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'uamts',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'amts',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'uamts',
|
|
15
|
+
name: 'Amitis',
|
|
16
|
+
display: 'amts',
|
|
17
|
+
symbol: 'AMTS',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
|
|
23
|
+
}],
|
|
24
|
+
keywords: [
|
|
25
|
+
'native',
|
|
26
|
+
'staking',
|
|
27
|
+
'fee-rebate',
|
|
28
|
+
'dex'
|
|
29
|
+
]
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
export default info;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'amitis',
|
|
4
|
+
chainType: 'cosmos',
|
|
5
|
+
status: 'live',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
prettyName: 'Amitis Network',
|
|
8
|
+
chainId: 'amitis-network',
|
|
9
|
+
bech32Prefix: 'amitis',
|
|
10
|
+
daemonName: 'amisd',
|
|
11
|
+
nodeHome: '$HOME/.amitis',
|
|
12
|
+
keyAlgos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'uamts',
|
|
17
|
+
fixedMinGasPrice: 0,
|
|
18
|
+
lowGasPrice: 0.01,
|
|
19
|
+
averageGasPrice: 0.025,
|
|
20
|
+
highGasPrice: 0.04
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'uamts'
|
|
26
|
+
}],
|
|
27
|
+
lockDuration: {
|
|
28
|
+
time: '1814400s'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/amitis-network/amitis-network',
|
|
33
|
+
recommendedVersion: 'v1.0.0',
|
|
34
|
+
compatibleVersions: ['v1.0.0'],
|
|
35
|
+
consensus: {
|
|
36
|
+
type: 'cometbft',
|
|
37
|
+
version: '0.38.11'
|
|
38
|
+
},
|
|
39
|
+
genesis: {
|
|
40
|
+
genesisUrl: 'https://rpc.amitis.network/genesis'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
description: 'Amitis Network is a cooperative Layer 1 blockchain built on the Cosmos SDK. Our philosophy is friendship through shared prosperity — the network returns 80% of transaction fees directly to users at the protocol level, making it one of the most user-aligned blockchains in the Cosmos ecosystem. Amitis features 21 fixed validator slots, a native DEX, and native liquid staking built directly into the protocol.',
|
|
44
|
+
apis: {
|
|
45
|
+
rpc: [{
|
|
46
|
+
address: 'https://rpc.amitis.network',
|
|
47
|
+
provider: 'Amitis Network'
|
|
48
|
+
}],
|
|
49
|
+
rest: [{
|
|
50
|
+
address: 'https://rest.amitis.network',
|
|
51
|
+
provider: 'Amitis Network'
|
|
52
|
+
}]
|
|
53
|
+
},
|
|
54
|
+
explorers: [],
|
|
55
|
+
keywords: [
|
|
56
|
+
'cosmos',
|
|
57
|
+
'fee-rebate',
|
|
58
|
+
'dex',
|
|
59
|
+
'cooperative',
|
|
60
|
+
'layer1'
|
|
61
|
+
]
|
|
62
|
+
};
|
|
63
|
+
export default info;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'amitis',
|
|
5
|
+
chainId: 'amitis-network',
|
|
6
|
+
clientId: '07-tendermint-0',
|
|
7
|
+
connectionId: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosis',
|
|
11
|
+
chainId: 'osmosis-1',
|
|
12
|
+
clientId: '07-tendermint-3701',
|
|
13
|
+
connectionId: 'connection-11055'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-1',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-110089',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
export default info;
|
|
@@ -12,6 +12,7 @@ import * as _aioz from './aioz';
|
|
|
12
12
|
import * as _akash from './akash';
|
|
13
13
|
import * as _allora from './allora';
|
|
14
14
|
import * as _althea from './althea';
|
|
15
|
+
import * as _amitis from './amitis';
|
|
15
16
|
import * as _andromeda from './andromeda';
|
|
16
17
|
import * as _archway from './archway';
|
|
17
18
|
import * as _arkeo from './arkeo';
|
|
@@ -167,7 +168,6 @@ import * as _planq from './planq';
|
|
|
167
168
|
import * as _pocket from './pocket';
|
|
168
169
|
import * as _point from './point';
|
|
169
170
|
import * as _provenance from './provenance';
|
|
170
|
-
import * as _pryzm from './pryzm';
|
|
171
171
|
import * as _pundix from './pundix';
|
|
172
172
|
import * as _pylons from './pylons';
|
|
173
173
|
import * as _qfs from './qfs';
|
|
@@ -248,6 +248,7 @@ const assetList = [
|
|
|
248
248
|
_akash.assetList,
|
|
249
249
|
_allora.assetList,
|
|
250
250
|
_althea.assetList,
|
|
251
|
+
_amitis.assetList,
|
|
251
252
|
_andromeda.assetList,
|
|
252
253
|
_archway.assetList,
|
|
253
254
|
_arkeo.assetList,
|
|
@@ -403,7 +404,6 @@ const assetList = [
|
|
|
403
404
|
_pocket.assetList,
|
|
404
405
|
_point.assetList,
|
|
405
406
|
_provenance.assetList,
|
|
406
|
-
_pryzm.assetList,
|
|
407
407
|
_pundix.assetList,
|
|
408
408
|
_pylons.assetList,
|
|
409
409
|
_qfs.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -12,6 +12,7 @@ import * as _aioz from './aioz';
|
|
|
12
12
|
import * as _akash from './akash';
|
|
13
13
|
import * as _allora from './allora';
|
|
14
14
|
import * as _althea from './althea';
|
|
15
|
+
import * as _amitis from './amitis';
|
|
15
16
|
import * as _andromeda from './andromeda';
|
|
16
17
|
import * as _archway from './archway';
|
|
17
18
|
import * as _arkeo from './arkeo';
|
|
@@ -167,7 +168,6 @@ import * as _planq from './planq';
|
|
|
167
168
|
import * as _pocket from './pocket';
|
|
168
169
|
import * as _point from './point';
|
|
169
170
|
import * as _provenance from './provenance';
|
|
170
|
-
import * as _pryzm from './pryzm';
|
|
171
171
|
import * as _pundix from './pundix';
|
|
172
172
|
import * as _pylons from './pylons';
|
|
173
173
|
import * as _qfs from './qfs';
|
|
@@ -248,6 +248,7 @@ const chains = [
|
|
|
248
248
|
_akash.chain,
|
|
249
249
|
_allora.chain,
|
|
250
250
|
_althea.chain,
|
|
251
|
+
_amitis.chain,
|
|
251
252
|
_andromeda.chain,
|
|
252
253
|
_archway.chain,
|
|
253
254
|
_arkeo.chain,
|
|
@@ -403,7 +404,6 @@ const chains = [
|
|
|
403
404
|
_pocket.chain,
|
|
404
405
|
_point.chain,
|
|
405
406
|
_provenance.chain,
|
|
406
|
-
_pryzm.chain,
|
|
407
407
|
_pundix.chain,
|
|
408
408
|
_pylons.chain,
|
|
409
409
|
_qfs.chain,
|
|
@@ -162,7 +162,6 @@ const info = {
|
|
|
162
162
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.png',
|
|
163
163
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.svg'
|
|
164
164
|
},
|
|
165
|
-
coingeckoId: 'pulsara',
|
|
166
165
|
keywords: [
|
|
167
166
|
'dex',
|
|
168
167
|
'staking',
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'hazinachain',
|
|
5
|
+
chainId: 'hazinachain-1',
|
|
6
|
+
clientId: '07-tendermint-3',
|
|
7
|
+
connectionId: 'connection-1'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosis',
|
|
11
|
+
chainId: 'osmosis-1',
|
|
12
|
+
clientId: '07-tendermint-3702',
|
|
13
|
+
connectionId: 'connection-11056'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-1',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-110100',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -8,6 +8,7 @@ import * as _agoric from './agoric';
|
|
|
8
8
|
import * as _aioz from './aioz';
|
|
9
9
|
import * as _akash from './akash';
|
|
10
10
|
import * as _allora from './allora';
|
|
11
|
+
import * as _amitis from './amitis';
|
|
11
12
|
import * as _andromeda from './andromeda';
|
|
12
13
|
import * as _archway from './archway';
|
|
13
14
|
import * as _arkeo from './arkeo';
|
|
@@ -67,6 +68,7 @@ import * as _gitopia from './gitopia';
|
|
|
67
68
|
import * as _gnodi from './gnodi';
|
|
68
69
|
import * as _gravitybridge from './gravitybridge';
|
|
69
70
|
import * as _haqq from './haqq';
|
|
71
|
+
import * as _hazinachain from './hazinachain';
|
|
70
72
|
import * as _hippoprotocol from './hippoprotocol';
|
|
71
73
|
import * as _humans from './humans';
|
|
72
74
|
import * as _impacthub from './impacthub';
|
|
@@ -127,7 +129,6 @@ import * as _persistence from './persistence';
|
|
|
127
129
|
import * as _planq from './planq';
|
|
128
130
|
import * as _point from './point';
|
|
129
131
|
import * as _provenance from './provenance';
|
|
130
|
-
import * as _pryzm from './pryzm';
|
|
131
132
|
import * as _pundix from './pundix';
|
|
132
133
|
import * as _pylons from './pylons';
|
|
133
134
|
import * as _qfs from './qfs';
|
|
@@ -188,6 +189,7 @@ const ibcData = [
|
|
|
188
189
|
..._aioz.ibcData,
|
|
189
190
|
..._akash.ibcData,
|
|
190
191
|
..._allora.ibcData,
|
|
192
|
+
..._amitis.ibcData,
|
|
191
193
|
..._andromeda.ibcData,
|
|
192
194
|
..._archway.ibcData,
|
|
193
195
|
..._arkeo.ibcData,
|
|
@@ -247,6 +249,7 @@ const ibcData = [
|
|
|
247
249
|
..._gnodi.ibcData,
|
|
248
250
|
..._gravitybridge.ibcData,
|
|
249
251
|
..._haqq.ibcData,
|
|
252
|
+
..._hazinachain.ibcData,
|
|
250
253
|
..._hippoprotocol.ibcData,
|
|
251
254
|
..._humans.ibcData,
|
|
252
255
|
..._impacthub.ibcData,
|
|
@@ -307,7 +310,6 @@ const ibcData = [
|
|
|
307
310
|
..._planq.ibcData,
|
|
308
311
|
..._point.ibcData,
|
|
309
312
|
..._provenance.ibcData,
|
|
310
|
-
..._pryzm.ibcData,
|
|
311
313
|
..._pundix.ibcData,
|
|
312
314
|
..._pylons.ibcData,
|
|
313
315
|
..._qfs.ibcData,
|
|
@@ -185,6 +185,36 @@ const info = [
|
|
|
185
185
|
}
|
|
186
186
|
}]
|
|
187
187
|
},
|
|
188
|
+
{
|
|
189
|
+
$schema: '../ibc_data.schema.json',
|
|
190
|
+
chain1: {
|
|
191
|
+
chainName: 'amitis',
|
|
192
|
+
chainId: 'amitis-network',
|
|
193
|
+
clientId: '07-tendermint-0',
|
|
194
|
+
connectionId: 'connection-0'
|
|
195
|
+
},
|
|
196
|
+
chain2: {
|
|
197
|
+
chainName: 'osmosis',
|
|
198
|
+
chainId: 'osmosis-1',
|
|
199
|
+
clientId: '07-tendermint-3701',
|
|
200
|
+
connectionId: 'connection-11055'
|
|
201
|
+
},
|
|
202
|
+
channels: [{
|
|
203
|
+
chain1: {
|
|
204
|
+
channelId: 'channel-1',
|
|
205
|
+
portId: 'transfer'
|
|
206
|
+
},
|
|
207
|
+
chain2: {
|
|
208
|
+
channelId: 'channel-110089',
|
|
209
|
+
portId: 'transfer'
|
|
210
|
+
},
|
|
211
|
+
ordering: 'unordered',
|
|
212
|
+
version: 'ics20-1',
|
|
213
|
+
tags: {
|
|
214
|
+
preferred: true
|
|
215
|
+
}
|
|
216
|
+
}]
|
|
217
|
+
},
|
|
188
218
|
{
|
|
189
219
|
$schema: '../ibc_data.schema.json',
|
|
190
220
|
chain1: {
|
|
@@ -2136,6 +2166,37 @@ const info = [
|
|
|
2136
2166
|
}
|
|
2137
2167
|
}]
|
|
2138
2168
|
},
|
|
2169
|
+
{
|
|
2170
|
+
$schema: '../ibc_data.schema.json',
|
|
2171
|
+
chain1: {
|
|
2172
|
+
chainName: 'hazinachain',
|
|
2173
|
+
chainId: 'hazinachain-1',
|
|
2174
|
+
clientId: '07-tendermint-3',
|
|
2175
|
+
connectionId: 'connection-1'
|
|
2176
|
+
},
|
|
2177
|
+
chain2: {
|
|
2178
|
+
chainName: 'osmosis',
|
|
2179
|
+
chainId: 'osmosis-1',
|
|
2180
|
+
clientId: '07-tendermint-3702',
|
|
2181
|
+
connectionId: 'connection-11056'
|
|
2182
|
+
},
|
|
2183
|
+
channels: [{
|
|
2184
|
+
chain1: {
|
|
2185
|
+
channelId: 'channel-1',
|
|
2186
|
+
portId: 'transfer'
|
|
2187
|
+
},
|
|
2188
|
+
chain2: {
|
|
2189
|
+
channelId: 'channel-110100',
|
|
2190
|
+
portId: 'transfer'
|
|
2191
|
+
},
|
|
2192
|
+
ordering: 'unordered',
|
|
2193
|
+
version: 'ics20-1',
|
|
2194
|
+
tags: {
|
|
2195
|
+
preferred: true,
|
|
2196
|
+
status: 'ACTIVE'
|
|
2197
|
+
}
|
|
2198
|
+
}]
|
|
2199
|
+
},
|
|
2139
2200
|
{
|
|
2140
2201
|
$schema: '../ibc_data.schema.json',
|
|
2141
2202
|
chain1: {
|
|
@@ -40,6 +40,10 @@ const info = {
|
|
|
40
40
|
description: 'The Sentinel ecosystem is a global network of autonomous dVPN applications that enable private and censorship resistant internet access.',
|
|
41
41
|
apis: {
|
|
42
42
|
rpc: [
|
|
43
|
+
{
|
|
44
|
+
address: 'https://rpc.saudi.dvpn-x.com',
|
|
45
|
+
provider: 'DIGGO: RPC Saudi Arabia'
|
|
46
|
+
},
|
|
43
47
|
{
|
|
44
48
|
address: 'https://rpc-sentinel.busurnode.com',
|
|
45
49
|
provider: 'Busurnode'
|
|
@@ -118,6 +122,10 @@ const info = {
|
|
|
118
122
|
}
|
|
119
123
|
],
|
|
120
124
|
rest: [
|
|
125
|
+
{
|
|
126
|
+
address: 'https://api.saudi.dvpn-x.com',
|
|
127
|
+
provider: 'DIGGO: API Saudi Arabia'
|
|
128
|
+
},
|
|
121
129
|
{
|
|
122
130
|
address: 'https://api-sentinel.busurnode.com',
|
|
123
131
|
provider: 'Busurnode'
|
|
@@ -56,20 +56,34 @@ const info = {
|
|
|
56
56
|
},
|
|
57
57
|
description: 'The Jay Network is a Cosmos SDK-based blockchain providing fast, secure, and scalable infrastructure for decentralized applications.',
|
|
58
58
|
apis: {
|
|
59
|
-
rpc: [
|
|
59
|
+
rpc: [
|
|
60
|
+
{
|
|
60
61
|
address: 'https://jayscan.duckdns.org/rpc',
|
|
61
62
|
provider: 'Jay Network'
|
|
62
|
-
},
|
|
63
|
+
},
|
|
64
|
+
{
|
|
63
65
|
address: 'http://34.67.101.201:26657',
|
|
64
66
|
provider: 'Jay Network (direct)'
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
address: 'https://rpc-jay.onenov.xyz',
|
|
70
|
+
provider: 'OneNov'
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
rest: [
|
|
74
|
+
{
|
|
67
75
|
address: 'https://jayscan.duckdns.org/api',
|
|
68
76
|
provider: 'Jay Network'
|
|
69
|
-
},
|
|
77
|
+
},
|
|
78
|
+
{
|
|
70
79
|
address: 'http://34.67.101.201:1317',
|
|
71
80
|
provider: 'Jay Network (direct)'
|
|
72
|
-
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'https://api-jay.onenov.xyz',
|
|
84
|
+
provider: 'OneNov'
|
|
85
|
+
}
|
|
86
|
+
],
|
|
73
87
|
grpc: [{
|
|
74
88
|
address: '34.67.101.201:9090',
|
|
75
89
|
provider: 'Jay Network'
|
|
@@ -83,6 +97,11 @@ const info = {
|
|
|
83
97
|
url: 'https://jayscan.duckdns.org',
|
|
84
98
|
txPage: 'https://jayscan.duckdns.org/?tx=${txHash}',
|
|
85
99
|
accountPage: 'https://jayscan.duckdns.org/?account=${accountAddress}'
|
|
100
|
+
}, {
|
|
101
|
+
kind: 'Jay Network Explorer',
|
|
102
|
+
url: 'https://jay-explorer.onenov.xyz',
|
|
103
|
+
txPage: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
|
|
104
|
+
accountPage: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
|
|
86
105
|
}],
|
|
87
106
|
images: [{
|
|
88
107
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'amitis',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of the Amitis Network. AMTS powers the cooperative Layer 1 blockchain that returns 80% of transaction fees to users.',
|
|
8
|
+
typeAsset: 'sdk.coin',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'uamts',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'amts',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'uamts',
|
|
17
|
+
name: 'Amitis',
|
|
18
|
+
display: 'amts',
|
|
19
|
+
symbol: 'AMTS',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
|
|
25
|
+
}],
|
|
26
|
+
keywords: [
|
|
27
|
+
'native',
|
|
28
|
+
'staking',
|
|
29
|
+
'fee-rebate',
|
|
30
|
+
'dex'
|
|
31
|
+
]
|
|
32
|
+
}]
|
|
33
|
+
};
|
|
34
|
+
exports.default = info;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'amitis',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
status: 'live',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
prettyName: 'Amitis Network',
|
|
10
|
+
chainId: 'amitis-network',
|
|
11
|
+
bech32Prefix: 'amitis',
|
|
12
|
+
daemonName: 'amisd',
|
|
13
|
+
nodeHome: '$HOME/.amitis',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'uamts',
|
|
19
|
+
fixedMinGasPrice: 0,
|
|
20
|
+
lowGasPrice: 0.01,
|
|
21
|
+
averageGasPrice: 0.025,
|
|
22
|
+
highGasPrice: 0.04
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'uamts'
|
|
28
|
+
}],
|
|
29
|
+
lockDuration: {
|
|
30
|
+
time: '1814400s'
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
codebase: {
|
|
34
|
+
gitRepo: 'https://github.com/amitis-network/amitis-network',
|
|
35
|
+
recommendedVersion: 'v1.0.0',
|
|
36
|
+
compatibleVersions: ['v1.0.0'],
|
|
37
|
+
consensus: {
|
|
38
|
+
type: 'cometbft',
|
|
39
|
+
version: '0.38.11'
|
|
40
|
+
},
|
|
41
|
+
genesis: {
|
|
42
|
+
genesisUrl: 'https://rpc.amitis.network/genesis'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
description: 'Amitis Network is a cooperative Layer 1 blockchain built on the Cosmos SDK. Our philosophy is friendship through shared prosperity — the network returns 80% of transaction fees directly to users at the protocol level, making it one of the most user-aligned blockchains in the Cosmos ecosystem. Amitis features 21 fixed validator slots, a native DEX, and native liquid staking built directly into the protocol.',
|
|
46
|
+
apis: {
|
|
47
|
+
rpc: [{
|
|
48
|
+
address: 'https://rpc.amitis.network',
|
|
49
|
+
provider: 'Amitis Network'
|
|
50
|
+
}],
|
|
51
|
+
rest: [{
|
|
52
|
+
address: 'https://rest.amitis.network',
|
|
53
|
+
provider: 'Amitis Network'
|
|
54
|
+
}]
|
|
55
|
+
},
|
|
56
|
+
explorers: [],
|
|
57
|
+
keywords: [
|
|
58
|
+
'cosmos',
|
|
59
|
+
'fee-rebate',
|
|
60
|
+
'dex',
|
|
61
|
+
'cooperative',
|
|
62
|
+
'layer1'
|
|
63
|
+
]
|
|
64
|
+
};
|
|
65
|
+
exports.default = info;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'amitis',
|
|
7
|
+
chainId: 'amitis-network',
|
|
8
|
+
clientId: '07-tendermint-0',
|
|
9
|
+
connectionId: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'osmosis',
|
|
13
|
+
chainId: 'osmosis-1',
|
|
14
|
+
clientId: '07-tendermint-3701',
|
|
15
|
+
connectionId: 'connection-11055'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-1',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-110089',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
}];
|
|
33
|
+
exports.default = info;
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -37,6 +37,7 @@ const _aioz = __importStar(require("./aioz"));
|
|
|
37
37
|
const _akash = __importStar(require("./akash"));
|
|
38
38
|
const _allora = __importStar(require("./allora"));
|
|
39
39
|
const _althea = __importStar(require("./althea"));
|
|
40
|
+
const _amitis = __importStar(require("./amitis"));
|
|
40
41
|
const _andromeda = __importStar(require("./andromeda"));
|
|
41
42
|
const _archway = __importStar(require("./archway"));
|
|
42
43
|
const _arkeo = __importStar(require("./arkeo"));
|
|
@@ -192,7 +193,6 @@ const _planq = __importStar(require("./planq"));
|
|
|
192
193
|
const _pocket = __importStar(require("./pocket"));
|
|
193
194
|
const _point = __importStar(require("./point"));
|
|
194
195
|
const _provenance = __importStar(require("./provenance"));
|
|
195
|
-
const _pryzm = __importStar(require("./pryzm"));
|
|
196
196
|
const _pundix = __importStar(require("./pundix"));
|
|
197
197
|
const _pylons = __importStar(require("./pylons"));
|
|
198
198
|
const _qfs = __importStar(require("./qfs"));
|
|
@@ -273,6 +273,7 @@ const assetList = [
|
|
|
273
273
|
_akash.assetList,
|
|
274
274
|
_allora.assetList,
|
|
275
275
|
_althea.assetList,
|
|
276
|
+
_amitis.assetList,
|
|
276
277
|
_andromeda.assetList,
|
|
277
278
|
_archway.assetList,
|
|
278
279
|
_arkeo.assetList,
|
|
@@ -428,7 +429,6 @@ const assetList = [
|
|
|
428
429
|
_pocket.assetList,
|
|
429
430
|
_point.assetList,
|
|
430
431
|
_provenance.assetList,
|
|
431
|
-
_pryzm.assetList,
|
|
432
432
|
_pundix.assetList,
|
|
433
433
|
_pylons.assetList,
|
|
434
434
|
_qfs.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -37,6 +37,7 @@ const _aioz = __importStar(require("./aioz"));
|
|
|
37
37
|
const _akash = __importStar(require("./akash"));
|
|
38
38
|
const _allora = __importStar(require("./allora"));
|
|
39
39
|
const _althea = __importStar(require("./althea"));
|
|
40
|
+
const _amitis = __importStar(require("./amitis"));
|
|
40
41
|
const _andromeda = __importStar(require("./andromeda"));
|
|
41
42
|
const _archway = __importStar(require("./archway"));
|
|
42
43
|
const _arkeo = __importStar(require("./arkeo"));
|
|
@@ -192,7 +193,6 @@ const _planq = __importStar(require("./planq"));
|
|
|
192
193
|
const _pocket = __importStar(require("./pocket"));
|
|
193
194
|
const _point = __importStar(require("./point"));
|
|
194
195
|
const _provenance = __importStar(require("./provenance"));
|
|
195
|
-
const _pryzm = __importStar(require("./pryzm"));
|
|
196
196
|
const _pundix = __importStar(require("./pundix"));
|
|
197
197
|
const _pylons = __importStar(require("./pylons"));
|
|
198
198
|
const _qfs = __importStar(require("./qfs"));
|
|
@@ -273,6 +273,7 @@ const chains = [
|
|
|
273
273
|
_akash.chain,
|
|
274
274
|
_allora.chain,
|
|
275
275
|
_althea.chain,
|
|
276
|
+
_amitis.chain,
|
|
276
277
|
_andromeda.chain,
|
|
277
278
|
_archway.chain,
|
|
278
279
|
_arkeo.chain,
|
|
@@ -428,7 +429,6 @@ const chains = [
|
|
|
428
429
|
_pocket.chain,
|
|
429
430
|
_point.chain,
|
|
430
431
|
_provenance.chain,
|
|
431
|
-
_pryzm.chain,
|
|
432
432
|
_pundix.chain,
|
|
433
433
|
_pylons.chain,
|
|
434
434
|
_qfs.chain,
|
|
@@ -164,7 +164,6 @@ const info = {
|
|
|
164
164
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.png',
|
|
165
165
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.svg'
|
|
166
166
|
},
|
|
167
|
-
coingeckoId: 'pulsara',
|
|
168
167
|
keywords: [
|
|
169
168
|
'dex',
|
|
170
169
|
'staking',
|