chain-registry 2.0.48 → 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 +4 -0
- package/esm/mainnet/babylon/asset-list.js +31 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/cosmoshub/ibc-data.js +43 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/injective/asset-list.js +24 -0
- package/esm/mainnet/intento/asset-list.js +28 -0
- package/esm/mainnet/intento/chain.js +62 -0
- package/esm/mainnet/intento/ibc-data.js +72 -0
- package/esm/mainnet/intento/index.js +6 -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/noble/ibc-data.js +6 -6
- package/esm/mainnet/osmosis/asset-list.js +2 -2
- package/esm/mainnet/osmosis/chain.js +8 -0
- package/esm/mainnet/osmosis/ibc-data.js +29 -0
- package/esm/mainnet/qubetics/chain.js +61 -6
- package/esm/mainnet/saga/ibc-data.js +6 -6
- package/esm/mainnet/sunrise/chain.js +34 -0
- package/esm/mainnet/thorchain/asset-list.js +1 -0
- package/esm/mainnet/uptick/chain.js +12 -61
- package/esm/noncosmos/binancesmartchain/asset-list.js +22 -0
- package/mainnet/asset-lists.js +4 -0
- package/mainnet/babylon/asset-list.js +31 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/cosmoshub/ibc-data.js +43 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/injective/asset-list.js +24 -0
- package/mainnet/intento/asset-list.d.ts +3 -0
- package/mainnet/intento/asset-list.js +30 -0
- package/mainnet/intento/chain.d.ts +3 -0
- package/mainnet/intento/chain.js +64 -0
- package/mainnet/intento/ibc-data.d.ts +3 -0
- package/mainnet/intento/ibc-data.js +74 -0
- package/mainnet/intento/index.d.ts +3 -0
- package/mainnet/intento/index.js +12 -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/noble/ibc-data.js +6 -6
- package/mainnet/osmosis/asset-list.js +2 -2
- package/mainnet/osmosis/chain.js +8 -0
- package/mainnet/osmosis/ibc-data.js +29 -0
- package/mainnet/qubetics/chain.js +61 -6
- package/mainnet/saga/ibc-data.js +6 -6
- package/mainnet/sunrise/chain.js +34 -0
- package/mainnet/thorchain/asset-list.js +1 -0
- package/mainnet/uptick/chain.js +12 -61
- package/noncosmos/binancesmartchain/asset-list.js +22 -0
- package/package.json +3 -3
|
@@ -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;
|
|
@@ -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;
|
|
@@ -1218,21 +1218,21 @@ const info = [
|
|
|
1218
1218
|
$schema: '../ibc_data.schema.json',
|
|
1219
1219
|
chain1: {
|
|
1220
1220
|
chainName: 'noble',
|
|
1221
|
-
clientId: '07-tendermint-
|
|
1222
|
-
connectionId: 'connection-
|
|
1221
|
+
clientId: '07-tendermint-181',
|
|
1222
|
+
connectionId: 'connection-175'
|
|
1223
1223
|
},
|
|
1224
1224
|
chain2: {
|
|
1225
1225
|
chainName: 'saga',
|
|
1226
|
-
clientId: '07-tendermint-
|
|
1227
|
-
connectionId: 'connection-
|
|
1226
|
+
clientId: '07-tendermint-28',
|
|
1227
|
+
connectionId: 'connection-23'
|
|
1228
1228
|
},
|
|
1229
1229
|
channels: [{
|
|
1230
1230
|
chain1: {
|
|
1231
|
-
channelId: 'channel-
|
|
1231
|
+
channelId: 'channel-169',
|
|
1232
1232
|
portId: 'transfer'
|
|
1233
1233
|
},
|
|
1234
1234
|
chain2: {
|
|
1235
|
-
channelId: 'channel-
|
|
1235
|
+
channelId: 'channel-37',
|
|
1236
1236
|
portId: 'transfer'
|
|
1237
1237
|
},
|
|
1238
1238
|
ordering: 'unordered',
|
|
@@ -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: [
|
|
@@ -2143,6 +2143,35 @@ const info = [
|
|
|
2143
2143
|
}
|
|
2144
2144
|
}]
|
|
2145
2145
|
},
|
|
2146
|
+
{
|
|
2147
|
+
$schema: '../ibc_data.schema.json',
|
|
2148
|
+
chain1: {
|
|
2149
|
+
chainName: 'intento',
|
|
2150
|
+
clientId: '07-tendermint-1',
|
|
2151
|
+
connectionId: 'connection-1'
|
|
2152
|
+
},
|
|
2153
|
+
chain2: {
|
|
2154
|
+
chainName: 'osmosis',
|
|
2155
|
+
clientId: '07-tendermint-3549',
|
|
2156
|
+
connectionId: 'connection-10824'
|
|
2157
|
+
},
|
|
2158
|
+
channels: [{
|
|
2159
|
+
chain1: {
|
|
2160
|
+
channelId: 'channel-3',
|
|
2161
|
+
portId: 'transfer'
|
|
2162
|
+
},
|
|
2163
|
+
chain2: {
|
|
2164
|
+
channelId: 'channel-106076',
|
|
2165
|
+
portId: 'transfer'
|
|
2166
|
+
},
|
|
2167
|
+
ordering: 'unordered',
|
|
2168
|
+
version: 'ics20-1',
|
|
2169
|
+
tags: {
|
|
2170
|
+
status: 'live',
|
|
2171
|
+
preferred: true
|
|
2172
|
+
}
|
|
2173
|
+
}]
|
|
2174
|
+
},
|
|
2146
2175
|
{
|
|
2147
2176
|
$schema: '../ibc_data.schema.json',
|
|
2148
2177
|
chain1: {
|
|
@@ -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/saga/ibc-data.js
CHANGED
|
@@ -92,21 +92,21 @@ const info = [
|
|
|
92
92
|
$schema: '../ibc_data.schema.json',
|
|
93
93
|
chain1: {
|
|
94
94
|
chainName: 'noble',
|
|
95
|
-
clientId: '07-tendermint-
|
|
96
|
-
connectionId: 'connection-
|
|
95
|
+
clientId: '07-tendermint-181',
|
|
96
|
+
connectionId: 'connection-175'
|
|
97
97
|
},
|
|
98
98
|
chain2: {
|
|
99
99
|
chainName: 'saga',
|
|
100
|
-
clientId: '07-tendermint-
|
|
101
|
-
connectionId: 'connection-
|
|
100
|
+
clientId: '07-tendermint-28',
|
|
101
|
+
connectionId: 'connection-23'
|
|
102
102
|
},
|
|
103
103
|
channels: [{
|
|
104
104
|
chain1: {
|
|
105
|
-
channelId: 'channel-
|
|
105
|
+
channelId: 'channel-169',
|
|
106
106
|
portId: 'transfer'
|
|
107
107
|
},
|
|
108
108
|
chain2: {
|
|
109
|
-
channelId: 'channel-
|
|
109
|
+
channelId: 'channel-37',
|
|
110
110
|
portId: 'transfer'
|
|
111
111
|
},
|
|
112
112
|
ordering: 'unordered',
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -76,6 +76,18 @@ const info = {
|
|
|
76
76
|
{
|
|
77
77
|
address: 'https://rpc.sunrise.nodestake.org',
|
|
78
78
|
provider: 'NodeStake'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: 'https://sunrise-rpc.krews.xyz',
|
|
82
|
+
provider: 'Krews'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'https://sunrise-rpc-2.krews.xyz',
|
|
86
|
+
provider: 'Krews'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
address: 'http://sunrise.rpc.decentrio.ventures',
|
|
90
|
+
provider: 'Decentrio'
|
|
79
91
|
}
|
|
80
92
|
],
|
|
81
93
|
rest: [
|
|
@@ -98,6 +110,18 @@ const info = {
|
|
|
98
110
|
{
|
|
99
111
|
address: 'https://api.sunrise.nodestake.org',
|
|
100
112
|
provider: 'NodeStake'
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
address: 'https://sunrise-api.krews.xyz',
|
|
116
|
+
provider: 'Krews'
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
address: 'https://sunrise-api-2.krews.xyz',
|
|
120
|
+
provider: 'Krews'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
address: 'https://sunrise.api.decentrio.ventures',
|
|
124
|
+
provider: 'Decentrio'
|
|
101
125
|
}
|
|
102
126
|
],
|
|
103
127
|
grpc: [
|
|
@@ -112,6 +136,10 @@ const info = {
|
|
|
112
136
|
{
|
|
113
137
|
address: 'https://grpc.sunrise.nodestake.org:443',
|
|
114
138
|
provider: 'NodeStake'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
address: 'https://sunrise.grpc.decentrio.ventures:443',
|
|
142
|
+
provider: 'Decentrio'
|
|
115
143
|
}
|
|
116
144
|
]
|
|
117
145
|
},
|
|
@@ -144,6 +172,12 @@ const info = {
|
|
|
144
172
|
url: 'https://explorer.nodestake.org/sunrise',
|
|
145
173
|
txPage: 'https://explorer.nodestake.org/sunrise/tx/${txHash}',
|
|
146
174
|
accountPage: 'https://explorer.nodestake.org/sunrise/account/${accountAddress}'
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
kind: 'Krews',
|
|
178
|
+
url: 'https://risescan.krews.xyz',
|
|
179
|
+
txPage: 'https://risescan.krews.xyz/sunrise/tx/${txHash}',
|
|
180
|
+
accountPage: 'https://risescan.krews.xyz/sunrise/account/${accountAddress}'
|
|
147
181
|
}
|
|
148
182
|
],
|
|
149
183
|
images: [{
|
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',
|
|
@@ -207,6 +207,28 @@ const info = {
|
|
|
207
207
|
circle: true
|
|
208
208
|
}
|
|
209
209
|
}]
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
description: 'The first non-custodial Bitcoin product designed for DeFi',
|
|
213
|
+
denomUnits: [{
|
|
214
|
+
denom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
215
|
+
exponent: 0
|
|
216
|
+
}, {
|
|
217
|
+
denom: 'CoBTC',
|
|
218
|
+
exponent: 8
|
|
219
|
+
}],
|
|
220
|
+
typeAsset: 'erc20',
|
|
221
|
+
address: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
222
|
+
base: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
223
|
+
name: 'Coffer Bitcoin',
|
|
224
|
+
display: 'CoBTC',
|
|
225
|
+
symbol: 'CoBTC',
|
|
226
|
+
logoURIs: {
|
|
227
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
|
|
228
|
+
},
|
|
229
|
+
images: [{
|
|
230
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
|
|
231
|
+
}]
|
|
210
232
|
}
|
|
211
233
|
]
|
|
212
234
|
};
|
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
|
}
|