chain-registry 2.0.49 → 2.0.50
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/kudora/asset-list.js +21 -0
- package/esm/mainnet/kudora/chain.js +76 -0
- package/esm/mainnet/kudora/index.js +4 -0
- package/esm/mainnet/osmosis/asset-list.js +2 -2
- package/esm/mainnet/osmosis/chain.js +8 -0
- package/esm/mainnet/qubetics/chain.js +61 -6
- package/esm/mainnet/sunrise/chain.js +12 -0
- package/esm/mainnet/uptick/chain.js +12 -61
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/kudora/asset-list.d.ts +3 -0
- package/mainnet/kudora/asset-list.js +23 -0
- package/mainnet/kudora/chain.d.ts +3 -0
- package/mainnet/kudora/chain.js +78 -0
- package/mainnet/kudora/index.d.ts +2 -0
- package/mainnet/kudora/index.js +10 -0
- package/mainnet/osmosis/asset-list.js +2 -2
- package/mainnet/osmosis/chain.js +8 -0
- package/mainnet/qubetics/chain.js +61 -6
- package/mainnet/sunrise/chain.js +12 -0
- package/mainnet/uptick/chain.js +12 -61
- package/package.json +3 -3
|
@@ -99,6 +99,7 @@ import * as _kichain from './kichain';
|
|
|
99
99
|
import * as _kimanetwork from './kimanetwork';
|
|
100
100
|
import * as _konstellation from './konstellation';
|
|
101
101
|
import * as _kopi from './kopi';
|
|
102
|
+
import * as _kudora from './kudora';
|
|
102
103
|
import * as _kujira from './kujira';
|
|
103
104
|
import * as _kyve from './kyve';
|
|
104
105
|
import * as _lambda from './lambda';
|
|
@@ -312,6 +313,7 @@ const assetList = [
|
|
|
312
313
|
_kimanetwork.assetList,
|
|
313
314
|
_konstellation.assetList,
|
|
314
315
|
_kopi.assetList,
|
|
316
|
+
_kudora.assetList,
|
|
315
317
|
_kujira.assetList,
|
|
316
318
|
_kyve.assetList,
|
|
317
319
|
_lambda.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -99,6 +99,7 @@ import * as _kichain from './kichain';
|
|
|
99
99
|
import * as _kimanetwork from './kimanetwork';
|
|
100
100
|
import * as _konstellation from './konstellation';
|
|
101
101
|
import * as _kopi from './kopi';
|
|
102
|
+
import * as _kudora from './kudora';
|
|
102
103
|
import * as _kujira from './kujira';
|
|
103
104
|
import * as _kyve from './kyve';
|
|
104
105
|
import * as _lambda from './lambda';
|
|
@@ -312,6 +313,7 @@ const chains = [
|
|
|
312
313
|
_kimanetwork.chain,
|
|
313
314
|
_konstellation.chain,
|
|
314
315
|
_kopi.chain,
|
|
316
|
+
_kudora.chain,
|
|
315
317
|
_kujira.chain,
|
|
316
318
|
_kyve.chain,
|
|
317
319
|
_lambda.chain,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'kudora',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Kudora Native Token',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'kud',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'Kudo',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'kud',
|
|
14
|
+
name: 'Kudo',
|
|
15
|
+
display: 'Kudo',
|
|
16
|
+
symbol: 'KUD',
|
|
17
|
+
keywords: ['kudora'],
|
|
18
|
+
typeAsset: 'sdk.coin'
|
|
19
|
+
}]
|
|
20
|
+
};
|
|
21
|
+
export default info;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'kudora',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://kudora.org/',
|
|
7
|
+
prettyName: 'Kudora',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'kudora_12000-1',
|
|
10
|
+
bech32Prefix: 'kudo',
|
|
11
|
+
daemonName: 'kudorad',
|
|
12
|
+
nodeHome: '$HOME/.kudora',
|
|
13
|
+
keyAlgos: ['ethsecp256k1'],
|
|
14
|
+
extraCodecs: ['ethermint'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'kud',
|
|
19
|
+
averageGasPrice: 5e-10
|
|
20
|
+
}]
|
|
21
|
+
},
|
|
22
|
+
staking: {
|
|
23
|
+
stakingTokens: [{
|
|
24
|
+
denom: 'kud'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
codebase: {
|
|
28
|
+
gitRepo: 'https://github.com/Kudora-Labs/kudora',
|
|
29
|
+
recommendedVersion: 'v1.0.0',
|
|
30
|
+
compatibleVersions: ['v1.0.0'],
|
|
31
|
+
consensus: {
|
|
32
|
+
type: 'cometbft',
|
|
33
|
+
version: '0.38.17'
|
|
34
|
+
},
|
|
35
|
+
binaries: {
|
|
36
|
+
"linux/amd64": 'https://github.com/Kudora-Labs/kudora/releases/download/v1.0.0/kudorad_Linux_x86_64.tar.gz'
|
|
37
|
+
},
|
|
38
|
+
genesis: {
|
|
39
|
+
genesisUrl: 'https://raw.githubusercontent.com/Kudora-Labs/kud-network-mainnet/main/genesis.json'
|
|
40
|
+
},
|
|
41
|
+
sdk: {
|
|
42
|
+
type: 'cosmos',
|
|
43
|
+
version: '0.50.13',
|
|
44
|
+
repo: 'https://github.com/strangelove-ventures/cosmos-sdk'
|
|
45
|
+
},
|
|
46
|
+
ibc: {
|
|
47
|
+
type: 'go',
|
|
48
|
+
version: '8.7.0',
|
|
49
|
+
repo: 'https://github.com/cosmos/ibc-go',
|
|
50
|
+
icsEnabled: ['ics20-1']
|
|
51
|
+
},
|
|
52
|
+
language: {
|
|
53
|
+
type: 'go',
|
|
54
|
+
version: '1.23.7'
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
apis: {
|
|
58
|
+
evmHttpJsonrpc: [{
|
|
59
|
+
address: 'https://evm.kudora.org/',
|
|
60
|
+
provider: 'Kudora Org'
|
|
61
|
+
}],
|
|
62
|
+
grpc: [{
|
|
63
|
+
address: 'grpc.kudora.org:443',
|
|
64
|
+
provider: 'Kudora Org'
|
|
65
|
+
}],
|
|
66
|
+
rest: [{
|
|
67
|
+
address: 'https://api.kudora.org/',
|
|
68
|
+
provider: 'Kudora Org'
|
|
69
|
+
}],
|
|
70
|
+
rpc: [{
|
|
71
|
+
address: 'https://rpc.kudora.org/',
|
|
72
|
+
provider: 'Kudora Org'
|
|
73
|
+
}]
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
export default info;
|
|
@@ -22443,13 +22443,13 @@ const info = {
|
|
|
22443
22443
|
denom: 'factory/osmo1are7fpe5l6jzm9sjn7u4qkq6q77wwrrsxzlyw8lcegmmaxdukvuq4h46dx/LABS',
|
|
22444
22444
|
exponent: 0
|
|
22445
22445
|
}, {
|
|
22446
|
-
denom: '
|
|
22446
|
+
denom: 'LABS',
|
|
22447
22447
|
exponent: 6
|
|
22448
22448
|
}],
|
|
22449
22449
|
typeAsset: 'sdk.coin',
|
|
22450
22450
|
base: 'factory/osmo1are7fpe5l6jzm9sjn7u4qkq6q77wwrrsxzlyw8lcegmmaxdukvuq4h46dx/LABS',
|
|
22451
22451
|
name: 'Labrador',
|
|
22452
|
-
display: '
|
|
22452
|
+
display: 'LABS',
|
|
22453
22453
|
symbol: 'LABS',
|
|
22454
22454
|
logoURIs: {
|
|
22455
22455
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LABS.png'
|
|
@@ -705,6 +705,10 @@ const info = {
|
|
|
705
705
|
{
|
|
706
706
|
address: 'https://osmosis-mainnet-tendermint.reliableninjas.com',
|
|
707
707
|
provider: 'Reliable Ninjas'
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
address: 'https://osmosis-rpc.highstakes.ch',
|
|
711
|
+
provider: 'High Stakes 🇨🇭'
|
|
708
712
|
}
|
|
709
713
|
],
|
|
710
714
|
rest: [
|
|
@@ -819,6 +823,10 @@ const info = {
|
|
|
819
823
|
{
|
|
820
824
|
address: 'https://osmosis-mainnet-cosmos.reliableninjas.com',
|
|
821
825
|
provider: 'Reliable Ninjas'
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
address: 'https://osmosis-api.highstakes.ch',
|
|
829
|
+
provider: 'High Stakes 🇨🇭'
|
|
822
830
|
}
|
|
823
831
|
],
|
|
824
832
|
grpc: [
|
|
@@ -55,28 +55,83 @@ const info = {
|
|
|
55
55
|
},
|
|
56
56
|
description: 'Developers use qubetics as the Ethereum Chain to deploy applications of the future. Get all the functionalities of Ethereum with the power of IBC and Interchain composability.',
|
|
57
57
|
apis: {
|
|
58
|
-
rpc: [
|
|
58
|
+
rpc: [
|
|
59
|
+
{
|
|
59
60
|
address: 'https://tendermint.qubetics.com',
|
|
60
61
|
provider: 'Qubetics'
|
|
61
|
-
}
|
|
62
|
-
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
address: 'https://node.veritics.ch',
|
|
65
|
+
provider: 'Veritics'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
address: 'https://rpc.qubenode.space',
|
|
69
|
+
provider: 'Qubenode'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'https://qubeticstralbo.eu/',
|
|
73
|
+
provider: 'TicsForge-Node'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'https://tics.stakings.id/',
|
|
77
|
+
provider: 'BlockDock'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: 'https://node.dragon-node.com',
|
|
81
|
+
provider: 'Dragon-Node'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
address: 'https://jblfg.org',
|
|
85
|
+
provider: 'Belfour Node'
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
rest: [
|
|
89
|
+
{
|
|
63
90
|
address: 'https://swagger.qubetics.com',
|
|
64
91
|
provider: 'Qubetics'
|
|
65
|
-
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
address: 'https://swagger.node.veritics.ch',
|
|
95
|
+
provider: 'Veritics'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'https://rest.qubenode.space',
|
|
99
|
+
provider: 'Qubenode'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://rest.qubeticstralbo.eu',
|
|
103
|
+
provider: 'TicsForge-Node'
|
|
104
|
+
}
|
|
105
|
+
],
|
|
66
106
|
grpc: [{
|
|
67
107
|
address: 'https://grpc.qubetics.com',
|
|
68
108
|
provider: 'Qubetics'
|
|
69
109
|
}],
|
|
70
|
-
evmHttpJsonrpc: [
|
|
110
|
+
evmHttpJsonrpc: [
|
|
111
|
+
{
|
|
71
112
|
address: 'https://rpc.qubetics.com',
|
|
72
113
|
provider: 'Qubetics'
|
|
73
|
-
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://evm.qubenode.space',
|
|
117
|
+
provider: 'Qubenode'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
address: 'https://evm.qubeticstralbo.eu',
|
|
121
|
+
provider: 'TicsForge-Node'
|
|
122
|
+
}
|
|
123
|
+
]
|
|
74
124
|
},
|
|
75
125
|
explorers: [{
|
|
76
126
|
kind: 'qubetics',
|
|
77
127
|
url: 'https://ticsscan.com',
|
|
78
128
|
txPage: 'https://ticsscan.com/tx/${txHash}',
|
|
79
129
|
accountPage: 'https://ticsscan.com/address/${accountAddress}'
|
|
130
|
+
}, {
|
|
131
|
+
kind: '🚀 Qubetics 🌕 Native 🔥',
|
|
132
|
+
url: 'https://native.ticsscan.com/qubetics',
|
|
133
|
+
txPage: 'https://native.ticsscan.com/qubetics/tx/${txHash}',
|
|
134
|
+
accountPage: 'https://native.ticsscan.com/qubetics/account/${accountAddress}'
|
|
80
135
|
}],
|
|
81
136
|
images: [{
|
|
82
137
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png'
|
|
@@ -82,6 +82,10 @@ const info = {
|
|
|
82
82
|
{
|
|
83
83
|
address: 'https://sunrise-rpc-2.krews.xyz',
|
|
84
84
|
provider: 'Krews'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'http://sunrise.rpc.decentrio.ventures',
|
|
88
|
+
provider: 'Decentrio'
|
|
85
89
|
}
|
|
86
90
|
],
|
|
87
91
|
rest: [
|
|
@@ -112,6 +116,10 @@ const info = {
|
|
|
112
116
|
{
|
|
113
117
|
address: 'https://sunrise-api-2.krews.xyz',
|
|
114
118
|
provider: 'Krews'
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
address: 'https://sunrise.api.decentrio.ventures',
|
|
122
|
+
provider: 'Decentrio'
|
|
115
123
|
}
|
|
116
124
|
],
|
|
117
125
|
grpc: [
|
|
@@ -126,6 +134,10 @@ const info = {
|
|
|
126
134
|
{
|
|
127
135
|
address: 'https://grpc.sunrise.nodestake.org:443',
|
|
128
136
|
provider: 'NodeStake'
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
address: 'https://sunrise.grpc.decentrio.ventures:443',
|
|
140
|
+
provider: 'Decentrio'
|
|
129
141
|
}
|
|
130
142
|
]
|
|
131
143
|
},
|
|
@@ -28,30 +28,30 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/UptickNetwork/uptick',
|
|
31
|
-
recommendedVersion: 'v0.
|
|
32
|
-
compatibleVersions: ['v0.
|
|
31
|
+
recommendedVersion: 'v0.3.0',
|
|
32
|
+
compatibleVersions: ['v0.3.0'],
|
|
33
33
|
binaries: {
|
|
34
|
-
"linux/amd64": 'https://
|
|
34
|
+
"linux/amd64": 'https://raw.githubusercontent.com/UptickNetwork/uptick-mainnet/main/uptick_117-1/lib/uptickd-linux-amd64-v0.3.0.tar.gz?checksum=ceedede0f5016906fadc688cc69fb5c378832c661decba199bcb2a66507d0f76',
|
|
35
|
+
"linux/arm64": 'https://raw.githubusercontent.com/UptickNetwork/uptick-mainnet/main/uptick_117-1/lib/uptickd-linux-arm64-v0.3.0.tar.gz?checksum=b11fae7b3633a4a050d8e8b3d4f12e54efdb29755d206e70b48e158f582cf0aa'
|
|
35
36
|
},
|
|
36
37
|
consensus: {
|
|
37
38
|
type: 'cometbft',
|
|
38
|
-
version: 'v0.
|
|
39
|
-
tag: 'v0.37.3-0.20230920093934-46df7b597e3c'
|
|
39
|
+
version: 'v0.38.17'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
|
-
genesisUrl: 'https://raw.githubusercontent.com/uptick-
|
|
42
|
+
genesisUrl: 'https://raw.githubusercontent.com/UptickNetwork/uptick-mainnet/refs/heads/main/uptick_117-1/genesis.json'
|
|
43
43
|
},
|
|
44
44
|
sdk: {
|
|
45
45
|
type: 'cosmos',
|
|
46
|
-
version: '
|
|
47
|
-
},
|
|
48
|
-
ibc: {
|
|
49
|
-
type: 'go',
|
|
50
|
-
version: '7.3.0'
|
|
46
|
+
version: 'v0.50.11'
|
|
51
47
|
},
|
|
52
48
|
cosmwasm: {
|
|
53
|
-
version: 'v0.
|
|
49
|
+
version: 'v0.53.3',
|
|
54
50
|
enabled: true
|
|
51
|
+
},
|
|
52
|
+
ibc: {
|
|
53
|
+
type: 'go',
|
|
54
|
+
version: 'v8.7.0'
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
logoURIs: {
|
|
@@ -60,18 +60,10 @@ const info = {
|
|
|
60
60
|
},
|
|
61
61
|
apis: {
|
|
62
62
|
rpc: [
|
|
63
|
-
{
|
|
64
|
-
address: 'https://uptick.rpc.bccnodes.com:443',
|
|
65
|
-
provider: 'BccNodes'
|
|
66
|
-
},
|
|
67
63
|
{
|
|
68
64
|
address: 'https://rpc.uptick.nodestake.org',
|
|
69
65
|
provider: 'NodeStake'
|
|
70
66
|
},
|
|
71
|
-
{
|
|
72
|
-
address: 'https://uptick.rpc.kjnodes.com',
|
|
73
|
-
provider: 'kjnodes'
|
|
74
|
-
},
|
|
75
67
|
{
|
|
76
68
|
address: 'http://uptick.rpc.m.stavr.tech:3157',
|
|
77
69
|
provider: '🔥STAVR🔥'
|
|
@@ -88,18 +80,10 @@ const info = {
|
|
|
88
80
|
address: 'https://uptick.rpc.liveraven.net',
|
|
89
81
|
provider: 'LiveRaveN'
|
|
90
82
|
},
|
|
91
|
-
{
|
|
92
|
-
address: 'https://uptick-rpc.staketab.org:443',
|
|
93
|
-
provider: 'Staketab'
|
|
94
|
-
},
|
|
95
83
|
{
|
|
96
84
|
address: 'https://uptick-rpc.stakerhouse.com',
|
|
97
85
|
provider: 'StakerHouse'
|
|
98
86
|
},
|
|
99
|
-
{
|
|
100
|
-
address: 'https://rpc-uptick.cakralabs.site',
|
|
101
|
-
provider: 'Cakra Labs'
|
|
102
|
-
},
|
|
103
87
|
{
|
|
104
88
|
address: 'https://rpc-uptick.sr20de.xyz',
|
|
105
89
|
provider: 'Sr20de'
|
|
@@ -114,10 +98,6 @@ const info = {
|
|
|
114
98
|
address: 'https://api.uptick.nodestake.org',
|
|
115
99
|
provider: 'NodeStake'
|
|
116
100
|
},
|
|
117
|
-
{
|
|
118
|
-
address: 'https://uptick.api.kjnodes.com',
|
|
119
|
-
provider: 'kjnodes'
|
|
120
|
-
},
|
|
121
101
|
{
|
|
122
102
|
address: 'https://uptick.api.m.stavr.tech',
|
|
123
103
|
provider: '🔥STAVR🔥'
|
|
@@ -134,18 +114,10 @@ const info = {
|
|
|
134
114
|
address: 'https://uptick.api.liveraven.net',
|
|
135
115
|
provider: 'LiveRaveN'
|
|
136
116
|
},
|
|
137
|
-
{
|
|
138
|
-
address: 'https://uptick-rest.staketab.org',
|
|
139
|
-
provider: 'Staketab'
|
|
140
|
-
},
|
|
141
117
|
{
|
|
142
118
|
address: 'https://uptick-rest.stakerhouse.com',
|
|
143
119
|
provider: 'StakerHouse'
|
|
144
120
|
},
|
|
145
|
-
{
|
|
146
|
-
address: 'https://rest-uptick.cakralabs.site',
|
|
147
|
-
provider: 'Cakra Labs'
|
|
148
|
-
},
|
|
149
121
|
{
|
|
150
122
|
address: 'https://api-uptick.sr20de.xyz',
|
|
151
123
|
provider: 'Sr20de'
|
|
@@ -160,18 +132,10 @@ const info = {
|
|
|
160
132
|
address: 'https://grpc.uptick.nodestake.org',
|
|
161
133
|
provider: 'NodeStake'
|
|
162
134
|
},
|
|
163
|
-
{
|
|
164
|
-
address: 'uptick.rpc.bccnodes.com:9690',
|
|
165
|
-
provider: 'BccNodes'
|
|
166
|
-
},
|
|
167
135
|
{
|
|
168
136
|
address: 'uptick.grpc.nodersteam.com:9211',
|
|
169
137
|
provider: '[NODERS]TEAM'
|
|
170
138
|
},
|
|
171
|
-
{
|
|
172
|
-
address: 'uptick.grpc.kjnodes.com:11590',
|
|
173
|
-
provider: 'kjnodes'
|
|
174
|
-
},
|
|
175
139
|
{
|
|
176
140
|
address: 'uptick.grpc.m.stavr.tech:1901',
|
|
177
141
|
provider: '🔥STAVR🔥'
|
|
@@ -184,18 +148,10 @@ const info = {
|
|
|
184
148
|
address: 'https://uptick.grpc.liveraven.net',
|
|
185
149
|
provider: 'LiveRaveN'
|
|
186
150
|
},
|
|
187
|
-
{
|
|
188
|
-
address: 'services.staketab.com:9190',
|
|
189
|
-
provider: 'Staketab'
|
|
190
|
-
},
|
|
191
151
|
{
|
|
192
152
|
address: 'uptick-grpc.stakerhouse.com:443',
|
|
193
153
|
provider: 'StakerHouse'
|
|
194
154
|
},
|
|
195
|
-
{
|
|
196
|
-
address: 'grpc-uptick.mms.team:443',
|
|
197
|
-
provider: 'MMS'
|
|
198
|
-
},
|
|
199
155
|
{
|
|
200
156
|
address: 'https://grpc-uptick.sr20de.xyz',
|
|
201
157
|
provider: 'Sr20de'
|
|
@@ -236,11 +192,6 @@ const info = {
|
|
|
236
192
|
url: 'https://explorer.nodestake.org/uptick',
|
|
237
193
|
txPage: 'https://explorer.nodestake.org/uptick/tx/${txHash}'
|
|
238
194
|
},
|
|
239
|
-
{
|
|
240
|
-
kind: 'BccNodes Explorer',
|
|
241
|
-
url: 'https://explorer.bccnodes.com/uptick-M',
|
|
242
|
-
txPage: 'https://explorer.bccnodes.com/uptick-M/tx/${txHash}'
|
|
243
|
-
},
|
|
244
195
|
{
|
|
245
196
|
kind: '🔥STAVR🔥 Explorer',
|
|
246
197
|
url: 'https://explorer.stavr.tech/uptick-mainnet',
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -124,6 +124,7 @@ const _kichain = __importStar(require("./kichain"));
|
|
|
124
124
|
const _kimanetwork = __importStar(require("./kimanetwork"));
|
|
125
125
|
const _konstellation = __importStar(require("./konstellation"));
|
|
126
126
|
const _kopi = __importStar(require("./kopi"));
|
|
127
|
+
const _kudora = __importStar(require("./kudora"));
|
|
127
128
|
const _kujira = __importStar(require("./kujira"));
|
|
128
129
|
const _kyve = __importStar(require("./kyve"));
|
|
129
130
|
const _lambda = __importStar(require("./lambda"));
|
|
@@ -337,6 +338,7 @@ const assetList = [
|
|
|
337
338
|
_kimanetwork.assetList,
|
|
338
339
|
_konstellation.assetList,
|
|
339
340
|
_kopi.assetList,
|
|
341
|
+
_kudora.assetList,
|
|
340
342
|
_kujira.assetList,
|
|
341
343
|
_kyve.assetList,
|
|
342
344
|
_lambda.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -124,6 +124,7 @@ const _kichain = __importStar(require("./kichain"));
|
|
|
124
124
|
const _kimanetwork = __importStar(require("./kimanetwork"));
|
|
125
125
|
const _konstellation = __importStar(require("./konstellation"));
|
|
126
126
|
const _kopi = __importStar(require("./kopi"));
|
|
127
|
+
const _kudora = __importStar(require("./kudora"));
|
|
127
128
|
const _kujira = __importStar(require("./kujira"));
|
|
128
129
|
const _kyve = __importStar(require("./kyve"));
|
|
129
130
|
const _lambda = __importStar(require("./lambda"));
|
|
@@ -337,6 +338,7 @@ const chains = [
|
|
|
337
338
|
_kimanetwork.chain,
|
|
338
339
|
_konstellation.chain,
|
|
339
340
|
_kopi.chain,
|
|
341
|
+
_kudora.chain,
|
|
340
342
|
_kujira.chain,
|
|
341
343
|
_kyve.chain,
|
|
342
344
|
_lambda.chain,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'kudora',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'Kudora Native Token',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'kud',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'Kudo',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'kud',
|
|
16
|
+
name: 'Kudo',
|
|
17
|
+
display: 'Kudo',
|
|
18
|
+
symbol: 'KUD',
|
|
19
|
+
keywords: ['kudora'],
|
|
20
|
+
typeAsset: 'sdk.coin'
|
|
21
|
+
}]
|
|
22
|
+
};
|
|
23
|
+
exports.default = info;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'kudora',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://kudora.org/',
|
|
9
|
+
prettyName: 'Kudora',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'kudora_12000-1',
|
|
12
|
+
bech32Prefix: 'kudo',
|
|
13
|
+
daemonName: 'kudorad',
|
|
14
|
+
nodeHome: '$HOME/.kudora',
|
|
15
|
+
keyAlgos: ['ethsecp256k1'],
|
|
16
|
+
extraCodecs: ['ethermint'],
|
|
17
|
+
slip44: 60,
|
|
18
|
+
fees: {
|
|
19
|
+
feeTokens: [{
|
|
20
|
+
denom: 'kud',
|
|
21
|
+
averageGasPrice: 5e-10
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'kud'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/Kudora-Labs/kudora',
|
|
31
|
+
recommendedVersion: 'v1.0.0',
|
|
32
|
+
compatibleVersions: ['v1.0.0'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: '0.38.17'
|
|
36
|
+
},
|
|
37
|
+
binaries: {
|
|
38
|
+
"linux/amd64": 'https://github.com/Kudora-Labs/kudora/releases/download/v1.0.0/kudorad_Linux_x86_64.tar.gz'
|
|
39
|
+
},
|
|
40
|
+
genesis: {
|
|
41
|
+
genesisUrl: 'https://raw.githubusercontent.com/Kudora-Labs/kud-network-mainnet/main/genesis.json'
|
|
42
|
+
},
|
|
43
|
+
sdk: {
|
|
44
|
+
type: 'cosmos',
|
|
45
|
+
version: '0.50.13',
|
|
46
|
+
repo: 'https://github.com/strangelove-ventures/cosmos-sdk'
|
|
47
|
+
},
|
|
48
|
+
ibc: {
|
|
49
|
+
type: 'go',
|
|
50
|
+
version: '8.7.0',
|
|
51
|
+
repo: 'https://github.com/cosmos/ibc-go',
|
|
52
|
+
icsEnabled: ['ics20-1']
|
|
53
|
+
},
|
|
54
|
+
language: {
|
|
55
|
+
type: 'go',
|
|
56
|
+
version: '1.23.7'
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
apis: {
|
|
60
|
+
evmHttpJsonrpc: [{
|
|
61
|
+
address: 'https://evm.kudora.org/',
|
|
62
|
+
provider: 'Kudora Org'
|
|
63
|
+
}],
|
|
64
|
+
grpc: [{
|
|
65
|
+
address: 'grpc.kudora.org:443',
|
|
66
|
+
provider: 'Kudora Org'
|
|
67
|
+
}],
|
|
68
|
+
rest: [{
|
|
69
|
+
address: 'https://api.kudora.org/',
|
|
70
|
+
provider: 'Kudora Org'
|
|
71
|
+
}],
|
|
72
|
+
rpc: [{
|
|
73
|
+
address: 'https://rpc.kudora.org/',
|
|
74
|
+
provider: 'Kudora Org'
|
|
75
|
+
}]
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
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;
|
|
@@ -22445,13 +22445,13 @@ const info = {
|
|
|
22445
22445
|
denom: 'factory/osmo1are7fpe5l6jzm9sjn7u4qkq6q77wwrrsxzlyw8lcegmmaxdukvuq4h46dx/LABS',
|
|
22446
22446
|
exponent: 0
|
|
22447
22447
|
}, {
|
|
22448
|
-
denom: '
|
|
22448
|
+
denom: 'LABS',
|
|
22449
22449
|
exponent: 6
|
|
22450
22450
|
}],
|
|
22451
22451
|
typeAsset: 'sdk.coin',
|
|
22452
22452
|
base: 'factory/osmo1are7fpe5l6jzm9sjn7u4qkq6q77wwrrsxzlyw8lcegmmaxdukvuq4h46dx/LABS',
|
|
22453
22453
|
name: 'Labrador',
|
|
22454
|
-
display: '
|
|
22454
|
+
display: 'LABS',
|
|
22455
22455
|
symbol: 'LABS',
|
|
22456
22456
|
logoURIs: {
|
|
22457
22457
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LABS.png'
|
package/mainnet/osmosis/chain.js
CHANGED
|
@@ -707,6 +707,10 @@ const info = {
|
|
|
707
707
|
{
|
|
708
708
|
address: 'https://osmosis-mainnet-tendermint.reliableninjas.com',
|
|
709
709
|
provider: 'Reliable Ninjas'
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
address: 'https://osmosis-rpc.highstakes.ch',
|
|
713
|
+
provider: 'High Stakes 🇨🇭'
|
|
710
714
|
}
|
|
711
715
|
],
|
|
712
716
|
rest: [
|
|
@@ -821,6 +825,10 @@ const info = {
|
|
|
821
825
|
{
|
|
822
826
|
address: 'https://osmosis-mainnet-cosmos.reliableninjas.com',
|
|
823
827
|
provider: 'Reliable Ninjas'
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
address: 'https://osmosis-api.highstakes.ch',
|
|
831
|
+
provider: 'High Stakes 🇨🇭'
|
|
824
832
|
}
|
|
825
833
|
],
|
|
826
834
|
grpc: [
|
|
@@ -57,28 +57,83 @@ const info = {
|
|
|
57
57
|
},
|
|
58
58
|
description: 'Developers use qubetics as the Ethereum Chain to deploy applications of the future. Get all the functionalities of Ethereum with the power of IBC and Interchain composability.',
|
|
59
59
|
apis: {
|
|
60
|
-
rpc: [
|
|
60
|
+
rpc: [
|
|
61
|
+
{
|
|
61
62
|
address: 'https://tendermint.qubetics.com',
|
|
62
63
|
provider: 'Qubetics'
|
|
63
|
-
}
|
|
64
|
-
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
address: 'https://node.veritics.ch',
|
|
67
|
+
provider: 'Veritics'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
address: 'https://rpc.qubenode.space',
|
|
71
|
+
provider: 'Qubenode'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://qubeticstralbo.eu/',
|
|
75
|
+
provider: 'TicsForge-Node'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://tics.stakings.id/',
|
|
79
|
+
provider: 'BlockDock'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'https://node.dragon-node.com',
|
|
83
|
+
provider: 'Dragon-Node'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://jblfg.org',
|
|
87
|
+
provider: 'Belfour Node'
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
rest: [
|
|
91
|
+
{
|
|
65
92
|
address: 'https://swagger.qubetics.com',
|
|
66
93
|
provider: 'Qubetics'
|
|
67
|
-
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
address: 'https://swagger.node.veritics.ch',
|
|
97
|
+
provider: 'Veritics'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
address: 'https://rest.qubenode.space',
|
|
101
|
+
provider: 'Qubenode'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'https://rest.qubeticstralbo.eu',
|
|
105
|
+
provider: 'TicsForge-Node'
|
|
106
|
+
}
|
|
107
|
+
],
|
|
68
108
|
grpc: [{
|
|
69
109
|
address: 'https://grpc.qubetics.com',
|
|
70
110
|
provider: 'Qubetics'
|
|
71
111
|
}],
|
|
72
|
-
evmHttpJsonrpc: [
|
|
112
|
+
evmHttpJsonrpc: [
|
|
113
|
+
{
|
|
73
114
|
address: 'https://rpc.qubetics.com',
|
|
74
115
|
provider: 'Qubetics'
|
|
75
|
-
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
address: 'https://evm.qubenode.space',
|
|
119
|
+
provider: 'Qubenode'
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
address: 'https://evm.qubeticstralbo.eu',
|
|
123
|
+
provider: 'TicsForge-Node'
|
|
124
|
+
}
|
|
125
|
+
]
|
|
76
126
|
},
|
|
77
127
|
explorers: [{
|
|
78
128
|
kind: 'qubetics',
|
|
79
129
|
url: 'https://ticsscan.com',
|
|
80
130
|
txPage: 'https://ticsscan.com/tx/${txHash}',
|
|
81
131
|
accountPage: 'https://ticsscan.com/address/${accountAddress}'
|
|
132
|
+
}, {
|
|
133
|
+
kind: '🚀 Qubetics 🌕 Native 🔥',
|
|
134
|
+
url: 'https://native.ticsscan.com/qubetics',
|
|
135
|
+
txPage: 'https://native.ticsscan.com/qubetics/tx/${txHash}',
|
|
136
|
+
accountPage: 'https://native.ticsscan.com/qubetics/account/${accountAddress}'
|
|
82
137
|
}],
|
|
83
138
|
images: [{
|
|
84
139
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png'
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -84,6 +84,10 @@ const info = {
|
|
|
84
84
|
{
|
|
85
85
|
address: 'https://sunrise-rpc-2.krews.xyz',
|
|
86
86
|
provider: 'Krews'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
address: 'http://sunrise.rpc.decentrio.ventures',
|
|
90
|
+
provider: 'Decentrio'
|
|
87
91
|
}
|
|
88
92
|
],
|
|
89
93
|
rest: [
|
|
@@ -114,6 +118,10 @@ const info = {
|
|
|
114
118
|
{
|
|
115
119
|
address: 'https://sunrise-api-2.krews.xyz',
|
|
116
120
|
provider: 'Krews'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
address: 'https://sunrise.api.decentrio.ventures',
|
|
124
|
+
provider: 'Decentrio'
|
|
117
125
|
}
|
|
118
126
|
],
|
|
119
127
|
grpc: [
|
|
@@ -128,6 +136,10 @@ const info = {
|
|
|
128
136
|
{
|
|
129
137
|
address: 'https://grpc.sunrise.nodestake.org:443',
|
|
130
138
|
provider: 'NodeStake'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
address: 'https://sunrise.grpc.decentrio.ventures:443',
|
|
142
|
+
provider: 'Decentrio'
|
|
131
143
|
}
|
|
132
144
|
]
|
|
133
145
|
},
|
package/mainnet/uptick/chain.js
CHANGED
|
@@ -30,30 +30,30 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/UptickNetwork/uptick',
|
|
33
|
-
recommendedVersion: 'v0.
|
|
34
|
-
compatibleVersions: ['v0.
|
|
33
|
+
recommendedVersion: 'v0.3.0',
|
|
34
|
+
compatibleVersions: ['v0.3.0'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://
|
|
36
|
+
"linux/amd64": 'https://raw.githubusercontent.com/UptickNetwork/uptick-mainnet/main/uptick_117-1/lib/uptickd-linux-amd64-v0.3.0.tar.gz?checksum=ceedede0f5016906fadc688cc69fb5c378832c661decba199bcb2a66507d0f76',
|
|
37
|
+
"linux/arm64": 'https://raw.githubusercontent.com/UptickNetwork/uptick-mainnet/main/uptick_117-1/lib/uptickd-linux-arm64-v0.3.0.tar.gz?checksum=b11fae7b3633a4a050d8e8b3d4f12e54efdb29755d206e70b48e158f582cf0aa'
|
|
37
38
|
},
|
|
38
39
|
consensus: {
|
|
39
40
|
type: 'cometbft',
|
|
40
|
-
version: 'v0.
|
|
41
|
-
tag: 'v0.37.3-0.20230920093934-46df7b597e3c'
|
|
41
|
+
version: 'v0.38.17'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
|
-
genesisUrl: 'https://raw.githubusercontent.com/uptick-
|
|
44
|
+
genesisUrl: 'https://raw.githubusercontent.com/UptickNetwork/uptick-mainnet/refs/heads/main/uptick_117-1/genesis.json'
|
|
45
45
|
},
|
|
46
46
|
sdk: {
|
|
47
47
|
type: 'cosmos',
|
|
48
|
-
version: '
|
|
49
|
-
},
|
|
50
|
-
ibc: {
|
|
51
|
-
type: 'go',
|
|
52
|
-
version: '7.3.0'
|
|
48
|
+
version: 'v0.50.11'
|
|
53
49
|
},
|
|
54
50
|
cosmwasm: {
|
|
55
|
-
version: 'v0.
|
|
51
|
+
version: 'v0.53.3',
|
|
56
52
|
enabled: true
|
|
53
|
+
},
|
|
54
|
+
ibc: {
|
|
55
|
+
type: 'go',
|
|
56
|
+
version: 'v8.7.0'
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
logoURIs: {
|
|
@@ -62,18 +62,10 @@ const info = {
|
|
|
62
62
|
},
|
|
63
63
|
apis: {
|
|
64
64
|
rpc: [
|
|
65
|
-
{
|
|
66
|
-
address: 'https://uptick.rpc.bccnodes.com:443',
|
|
67
|
-
provider: 'BccNodes'
|
|
68
|
-
},
|
|
69
65
|
{
|
|
70
66
|
address: 'https://rpc.uptick.nodestake.org',
|
|
71
67
|
provider: 'NodeStake'
|
|
72
68
|
},
|
|
73
|
-
{
|
|
74
|
-
address: 'https://uptick.rpc.kjnodes.com',
|
|
75
|
-
provider: 'kjnodes'
|
|
76
|
-
},
|
|
77
69
|
{
|
|
78
70
|
address: 'http://uptick.rpc.m.stavr.tech:3157',
|
|
79
71
|
provider: '🔥STAVR🔥'
|
|
@@ -90,18 +82,10 @@ const info = {
|
|
|
90
82
|
address: 'https://uptick.rpc.liveraven.net',
|
|
91
83
|
provider: 'LiveRaveN'
|
|
92
84
|
},
|
|
93
|
-
{
|
|
94
|
-
address: 'https://uptick-rpc.staketab.org:443',
|
|
95
|
-
provider: 'Staketab'
|
|
96
|
-
},
|
|
97
85
|
{
|
|
98
86
|
address: 'https://uptick-rpc.stakerhouse.com',
|
|
99
87
|
provider: 'StakerHouse'
|
|
100
88
|
},
|
|
101
|
-
{
|
|
102
|
-
address: 'https://rpc-uptick.cakralabs.site',
|
|
103
|
-
provider: 'Cakra Labs'
|
|
104
|
-
},
|
|
105
89
|
{
|
|
106
90
|
address: 'https://rpc-uptick.sr20de.xyz',
|
|
107
91
|
provider: 'Sr20de'
|
|
@@ -116,10 +100,6 @@ const info = {
|
|
|
116
100
|
address: 'https://api.uptick.nodestake.org',
|
|
117
101
|
provider: 'NodeStake'
|
|
118
102
|
},
|
|
119
|
-
{
|
|
120
|
-
address: 'https://uptick.api.kjnodes.com',
|
|
121
|
-
provider: 'kjnodes'
|
|
122
|
-
},
|
|
123
103
|
{
|
|
124
104
|
address: 'https://uptick.api.m.stavr.tech',
|
|
125
105
|
provider: '🔥STAVR🔥'
|
|
@@ -136,18 +116,10 @@ const info = {
|
|
|
136
116
|
address: 'https://uptick.api.liveraven.net',
|
|
137
117
|
provider: 'LiveRaveN'
|
|
138
118
|
},
|
|
139
|
-
{
|
|
140
|
-
address: 'https://uptick-rest.staketab.org',
|
|
141
|
-
provider: 'Staketab'
|
|
142
|
-
},
|
|
143
119
|
{
|
|
144
120
|
address: 'https://uptick-rest.stakerhouse.com',
|
|
145
121
|
provider: 'StakerHouse'
|
|
146
122
|
},
|
|
147
|
-
{
|
|
148
|
-
address: 'https://rest-uptick.cakralabs.site',
|
|
149
|
-
provider: 'Cakra Labs'
|
|
150
|
-
},
|
|
151
123
|
{
|
|
152
124
|
address: 'https://api-uptick.sr20de.xyz',
|
|
153
125
|
provider: 'Sr20de'
|
|
@@ -162,18 +134,10 @@ const info = {
|
|
|
162
134
|
address: 'https://grpc.uptick.nodestake.org',
|
|
163
135
|
provider: 'NodeStake'
|
|
164
136
|
},
|
|
165
|
-
{
|
|
166
|
-
address: 'uptick.rpc.bccnodes.com:9690',
|
|
167
|
-
provider: 'BccNodes'
|
|
168
|
-
},
|
|
169
137
|
{
|
|
170
138
|
address: 'uptick.grpc.nodersteam.com:9211',
|
|
171
139
|
provider: '[NODERS]TEAM'
|
|
172
140
|
},
|
|
173
|
-
{
|
|
174
|
-
address: 'uptick.grpc.kjnodes.com:11590',
|
|
175
|
-
provider: 'kjnodes'
|
|
176
|
-
},
|
|
177
141
|
{
|
|
178
142
|
address: 'uptick.grpc.m.stavr.tech:1901',
|
|
179
143
|
provider: '🔥STAVR🔥'
|
|
@@ -186,18 +150,10 @@ const info = {
|
|
|
186
150
|
address: 'https://uptick.grpc.liveraven.net',
|
|
187
151
|
provider: 'LiveRaveN'
|
|
188
152
|
},
|
|
189
|
-
{
|
|
190
|
-
address: 'services.staketab.com:9190',
|
|
191
|
-
provider: 'Staketab'
|
|
192
|
-
},
|
|
193
153
|
{
|
|
194
154
|
address: 'uptick-grpc.stakerhouse.com:443',
|
|
195
155
|
provider: 'StakerHouse'
|
|
196
156
|
},
|
|
197
|
-
{
|
|
198
|
-
address: 'grpc-uptick.mms.team:443',
|
|
199
|
-
provider: 'MMS'
|
|
200
|
-
},
|
|
201
157
|
{
|
|
202
158
|
address: 'https://grpc-uptick.sr20de.xyz',
|
|
203
159
|
provider: 'Sr20de'
|
|
@@ -238,11 +194,6 @@ const info = {
|
|
|
238
194
|
url: 'https://explorer.nodestake.org/uptick',
|
|
239
195
|
txPage: 'https://explorer.nodestake.org/uptick/tx/${txHash}'
|
|
240
196
|
},
|
|
241
|
-
{
|
|
242
|
-
kind: 'BccNodes Explorer',
|
|
243
|
-
url: 'https://explorer.bccnodes.com/uptick-M',
|
|
244
|
-
txPage: 'https://explorer.bccnodes.com/uptick-M/tx/${txHash}'
|
|
245
|
-
},
|
|
246
197
|
{
|
|
247
198
|
kind: '🔥STAVR🔥 Explorer',
|
|
248
199
|
url: 'https://explorer.stavr.tech/uptick-mainnet',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.50",
|
|
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.50"
|
|
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": "9151ceb6d48af4d97bd4f072fcdf21c34ba009d3"
|
|
43
43
|
}
|