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
|
@@ -90,21 +90,21 @@ const info = [
|
|
|
90
90
|
$schema: '../ibc_data.schema.json',
|
|
91
91
|
chain1: {
|
|
92
92
|
chainName: 'noble',
|
|
93
|
-
clientId: '07-tendermint-
|
|
94
|
-
connectionId: 'connection-
|
|
93
|
+
clientId: '07-tendermint-181',
|
|
94
|
+
connectionId: 'connection-175'
|
|
95
95
|
},
|
|
96
96
|
chain2: {
|
|
97
97
|
chainName: 'saga',
|
|
98
|
-
clientId: '07-tendermint-
|
|
99
|
-
connectionId: 'connection-
|
|
98
|
+
clientId: '07-tendermint-28',
|
|
99
|
+
connectionId: 'connection-23'
|
|
100
100
|
},
|
|
101
101
|
channels: [{
|
|
102
102
|
chain1: {
|
|
103
|
-
channelId: 'channel-
|
|
103
|
+
channelId: 'channel-169',
|
|
104
104
|
portId: 'transfer'
|
|
105
105
|
},
|
|
106
106
|
chain2: {
|
|
107
|
-
channelId: 'channel-
|
|
107
|
+
channelId: 'channel-37',
|
|
108
108
|
portId: 'transfer'
|
|
109
109
|
},
|
|
110
110
|
ordering: 'unordered',
|
|
@@ -74,6 +74,18 @@ const info = {
|
|
|
74
74
|
{
|
|
75
75
|
address: 'https://rpc.sunrise.nodestake.org',
|
|
76
76
|
provider: 'NodeStake'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://sunrise-rpc.krews.xyz',
|
|
80
|
+
provider: 'Krews'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'https://sunrise-rpc-2.krews.xyz',
|
|
84
|
+
provider: 'Krews'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'http://sunrise.rpc.decentrio.ventures',
|
|
88
|
+
provider: 'Decentrio'
|
|
77
89
|
}
|
|
78
90
|
],
|
|
79
91
|
rest: [
|
|
@@ -96,6 +108,18 @@ const info = {
|
|
|
96
108
|
{
|
|
97
109
|
address: 'https://api.sunrise.nodestake.org',
|
|
98
110
|
provider: 'NodeStake'
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
address: 'https://sunrise-api.krews.xyz',
|
|
114
|
+
provider: 'Krews'
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
address: 'https://sunrise-api-2.krews.xyz',
|
|
118
|
+
provider: 'Krews'
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
address: 'https://sunrise.api.decentrio.ventures',
|
|
122
|
+
provider: 'Decentrio'
|
|
99
123
|
}
|
|
100
124
|
],
|
|
101
125
|
grpc: [
|
|
@@ -110,6 +134,10 @@ const info = {
|
|
|
110
134
|
{
|
|
111
135
|
address: 'https://grpc.sunrise.nodestake.org:443',
|
|
112
136
|
provider: 'NodeStake'
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
address: 'https://sunrise.grpc.decentrio.ventures:443',
|
|
140
|
+
provider: 'Decentrio'
|
|
113
141
|
}
|
|
114
142
|
]
|
|
115
143
|
},
|
|
@@ -142,6 +170,12 @@ const info = {
|
|
|
142
170
|
url: 'https://explorer.nodestake.org/sunrise',
|
|
143
171
|
txPage: 'https://explorer.nodestake.org/sunrise/tx/${txHash}',
|
|
144
172
|
accountPage: 'https://explorer.nodestake.org/sunrise/account/${accountAddress}'
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
kind: 'Krews',
|
|
176
|
+
url: 'https://risescan.krews.xyz',
|
|
177
|
+
txPage: 'https://risescan.krews.xyz/sunrise/tx/${txHash}',
|
|
178
|
+
accountPage: 'https://risescan.krews.xyz/sunrise/account/${accountAddress}'
|
|
145
179
|
}
|
|
146
180
|
],
|
|
147
181
|
images: [{
|
|
@@ -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',
|
|
@@ -205,6 +205,28 @@ const info = {
|
|
|
205
205
|
circle: true
|
|
206
206
|
}
|
|
207
207
|
}]
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
description: 'The first non-custodial Bitcoin product designed for DeFi',
|
|
211
|
+
denomUnits: [{
|
|
212
|
+
denom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
213
|
+
exponent: 0
|
|
214
|
+
}, {
|
|
215
|
+
denom: 'CoBTC',
|
|
216
|
+
exponent: 8
|
|
217
|
+
}],
|
|
218
|
+
typeAsset: 'erc20',
|
|
219
|
+
address: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
220
|
+
base: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
221
|
+
name: 'Coffer Bitcoin',
|
|
222
|
+
display: 'CoBTC',
|
|
223
|
+
symbol: 'CoBTC',
|
|
224
|
+
logoURIs: {
|
|
225
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
|
|
226
|
+
},
|
|
227
|
+
images: [{
|
|
228
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
|
|
229
|
+
}]
|
|
208
230
|
}
|
|
209
231
|
]
|
|
210
232
|
};
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -114,6 +114,7 @@ const _imversed = __importStar(require("./imversed"));
|
|
|
114
114
|
const _initia = __importStar(require("./initia"));
|
|
115
115
|
const _injective = __importStar(require("./injective"));
|
|
116
116
|
const _int3face = __importStar(require("./int3face"));
|
|
117
|
+
const _intento = __importStar(require("./intento"));
|
|
117
118
|
const _irisnet = __importStar(require("./irisnet"));
|
|
118
119
|
const _jackal = __importStar(require("./jackal"));
|
|
119
120
|
const _joltify = __importStar(require("./joltify"));
|
|
@@ -123,6 +124,7 @@ const _kichain = __importStar(require("./kichain"));
|
|
|
123
124
|
const _kimanetwork = __importStar(require("./kimanetwork"));
|
|
124
125
|
const _konstellation = __importStar(require("./konstellation"));
|
|
125
126
|
const _kopi = __importStar(require("./kopi"));
|
|
127
|
+
const _kudora = __importStar(require("./kudora"));
|
|
126
128
|
const _kujira = __importStar(require("./kujira"));
|
|
127
129
|
const _kyve = __importStar(require("./kyve"));
|
|
128
130
|
const _lambda = __importStar(require("./lambda"));
|
|
@@ -326,6 +328,7 @@ const assetList = [
|
|
|
326
328
|
_initia.assetList,
|
|
327
329
|
_injective.assetList,
|
|
328
330
|
_int3face.assetList,
|
|
331
|
+
_intento.assetList,
|
|
329
332
|
_irisnet.assetList,
|
|
330
333
|
_jackal.assetList,
|
|
331
334
|
_joltify.assetList,
|
|
@@ -335,6 +338,7 @@ const assetList = [
|
|
|
335
338
|
_kimanetwork.assetList,
|
|
336
339
|
_konstellation.assetList,
|
|
337
340
|
_kopi.assetList,
|
|
341
|
+
_kudora.assetList,
|
|
338
342
|
_kujira.assetList,
|
|
339
343
|
_kyve.assetList,
|
|
340
344
|
_lambda.assetList,
|
|
@@ -939,6 +939,37 @@ const info = {
|
|
|
939
939
|
}
|
|
940
940
|
}]
|
|
941
941
|
},
|
|
942
|
+
{
|
|
943
|
+
denomUnits: [{
|
|
944
|
+
denom: 'cw20:bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
|
|
945
|
+
exponent: 0
|
|
946
|
+
}, {
|
|
947
|
+
denom: 'CoBTC',
|
|
948
|
+
exponent: 8
|
|
949
|
+
}],
|
|
950
|
+
base: 'cw20:bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
|
|
951
|
+
address: 'bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
|
|
952
|
+
name: 'Coffer Bitcoin',
|
|
953
|
+
display: 'CoBTC',
|
|
954
|
+
symbol: 'CoBTC',
|
|
955
|
+
logoURIs: {
|
|
956
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
|
|
957
|
+
},
|
|
958
|
+
typeAsset: 'cw20',
|
|
959
|
+
traces: [{
|
|
960
|
+
type: 'ibc-bridge',
|
|
961
|
+
provider: 'Union',
|
|
962
|
+
counterparty: {
|
|
963
|
+
chainName: 'binancesmartchain',
|
|
964
|
+
baseDenom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
|
|
965
|
+
channelId: '1'
|
|
966
|
+
},
|
|
967
|
+
chain: {
|
|
968
|
+
channelId: '5',
|
|
969
|
+
path: '0'
|
|
970
|
+
}
|
|
971
|
+
}]
|
|
972
|
+
},
|
|
942
973
|
{
|
|
943
974
|
description: 'MilkyWay\'s liquid staked BABY',
|
|
944
975
|
denomUnits: [{
|
package/mainnet/chains.js
CHANGED
|
@@ -114,6 +114,7 @@ const _imversed = __importStar(require("./imversed"));
|
|
|
114
114
|
const _initia = __importStar(require("./initia"));
|
|
115
115
|
const _injective = __importStar(require("./injective"));
|
|
116
116
|
const _int3face = __importStar(require("./int3face"));
|
|
117
|
+
const _intento = __importStar(require("./intento"));
|
|
117
118
|
const _irisnet = __importStar(require("./irisnet"));
|
|
118
119
|
const _jackal = __importStar(require("./jackal"));
|
|
119
120
|
const _joltify = __importStar(require("./joltify"));
|
|
@@ -123,6 +124,7 @@ const _kichain = __importStar(require("./kichain"));
|
|
|
123
124
|
const _kimanetwork = __importStar(require("./kimanetwork"));
|
|
124
125
|
const _konstellation = __importStar(require("./konstellation"));
|
|
125
126
|
const _kopi = __importStar(require("./kopi"));
|
|
127
|
+
const _kudora = __importStar(require("./kudora"));
|
|
126
128
|
const _kujira = __importStar(require("./kujira"));
|
|
127
129
|
const _kyve = __importStar(require("./kyve"));
|
|
128
130
|
const _lambda = __importStar(require("./lambda"));
|
|
@@ -326,6 +328,7 @@ const chains = [
|
|
|
326
328
|
_initia.chain,
|
|
327
329
|
_injective.chain,
|
|
328
330
|
_int3face.chain,
|
|
331
|
+
_intento.chain,
|
|
329
332
|
_irisnet.chain,
|
|
330
333
|
_jackal.chain,
|
|
331
334
|
_joltify.chain,
|
|
@@ -335,6 +338,7 @@ const chains = [
|
|
|
335
338
|
_kimanetwork.chain,
|
|
336
339
|
_konstellation.chain,
|
|
337
340
|
_kopi.chain,
|
|
341
|
+
_kudora.chain,
|
|
338
342
|
_kujira.chain,
|
|
339
343
|
_kyve.chain,
|
|
340
344
|
_lambda.chain,
|
|
@@ -904,6 +904,49 @@ const info = [
|
|
|
904
904
|
}
|
|
905
905
|
}]
|
|
906
906
|
},
|
|
907
|
+
{
|
|
908
|
+
$schema: '../ibc_data.schema.json',
|
|
909
|
+
chain1: {
|
|
910
|
+
chainName: 'cosmoshub',
|
|
911
|
+
clientId: '07-tendermint-1436',
|
|
912
|
+
connectionId: 'connection-1175'
|
|
913
|
+
},
|
|
914
|
+
chain2: {
|
|
915
|
+
chainName: 'intento',
|
|
916
|
+
clientId: '07-tendermint-0',
|
|
917
|
+
connectionId: 'connection-0'
|
|
918
|
+
},
|
|
919
|
+
channels: [{
|
|
920
|
+
chain1: {
|
|
921
|
+
channelId: 'channel-1489',
|
|
922
|
+
portId: 'provider'
|
|
923
|
+
},
|
|
924
|
+
chain2: {
|
|
925
|
+
channelId: 'channel-0',
|
|
926
|
+
portId: 'consumer'
|
|
927
|
+
},
|
|
928
|
+
ordering: 'ordered',
|
|
929
|
+
version: 'ics20-1',
|
|
930
|
+
tags: {
|
|
931
|
+
status: 'live'
|
|
932
|
+
}
|
|
933
|
+
}, {
|
|
934
|
+
chain1: {
|
|
935
|
+
channelId: 'channel-1492',
|
|
936
|
+
portId: 'transfer'
|
|
937
|
+
},
|
|
938
|
+
chain2: {
|
|
939
|
+
channelId: 'channel-1',
|
|
940
|
+
portId: 'transfer'
|
|
941
|
+
},
|
|
942
|
+
ordering: 'unordered',
|
|
943
|
+
version: 'ics20-1',
|
|
944
|
+
tags: {
|
|
945
|
+
status: 'live',
|
|
946
|
+
preferred: true
|
|
947
|
+
}
|
|
948
|
+
}]
|
|
949
|
+
},
|
|
907
950
|
{
|
|
908
951
|
$schema: '../ibc_data.schema.json',
|
|
909
952
|
chain1: {
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -93,6 +93,7 @@ const _imversed = __importStar(require("./imversed"));
|
|
|
93
93
|
const _initia = __importStar(require("./initia"));
|
|
94
94
|
const _injective = __importStar(require("./injective"));
|
|
95
95
|
const _int3face = __importStar(require("./int3face"));
|
|
96
|
+
const _intento = __importStar(require("./intento"));
|
|
96
97
|
const _irisnet = __importStar(require("./irisnet"));
|
|
97
98
|
const _jackal = __importStar(require("./jackal"));
|
|
98
99
|
const _joltify = __importStar(require("./joltify"));
|
|
@@ -259,6 +260,7 @@ const ibcData = [
|
|
|
259
260
|
..._initia.ibcData,
|
|
260
261
|
..._injective.ibcData,
|
|
261
262
|
..._int3face.ibcData,
|
|
263
|
+
..._intento.ibcData,
|
|
262
264
|
..._irisnet.ibcData,
|
|
263
265
|
..._jackal.ibcData,
|
|
264
266
|
..._joltify.ibcData,
|
|
@@ -216,6 +216,30 @@ const info = {
|
|
|
216
216
|
},
|
|
217
217
|
typeAsset: 'sdk.coin'
|
|
218
218
|
},
|
|
219
|
+
{
|
|
220
|
+
description: 'RWA Commercial fishing operation',
|
|
221
|
+
denomUnits: [{
|
|
222
|
+
denom: 'factory/inj1jdt04erw6jdmh6c939u87kldf3mvvmkedsjp3w/OYCI',
|
|
223
|
+
exponent: 0
|
|
224
|
+
}, {
|
|
225
|
+
denom: 'OYCI',
|
|
226
|
+
exponent: 6
|
|
227
|
+
}],
|
|
228
|
+
base: 'factory/inj1jdt04erw6jdmh6c939u87kldf3mvvmkedsjp3w/OYCI',
|
|
229
|
+
name: 'Oyster Cage Initiative',
|
|
230
|
+
display: 'OYCI',
|
|
231
|
+
symbol: 'OYCI',
|
|
232
|
+
logoURIs: {
|
|
233
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/oyci.png'
|
|
234
|
+
},
|
|
235
|
+
images: [{
|
|
236
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/oyci.png',
|
|
237
|
+
theme: {
|
|
238
|
+
circle: true
|
|
239
|
+
}
|
|
240
|
+
}],
|
|
241
|
+
typeAsset: 'sdk.coin'
|
|
242
|
+
},
|
|
219
243
|
{
|
|
220
244
|
description: 'The $WGMI Token - We Gonna Make It. Are you ready?',
|
|
221
245
|
denomUnits: [{
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'intento',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of INTENTO',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'uinto',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'into',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'uinto',
|
|
16
|
+
name: 'Intento',
|
|
17
|
+
display: 'into',
|
|
18
|
+
symbol: 'INTO',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
|
|
26
|
+
}],
|
|
27
|
+
typeAsset: 'sdk.coin'
|
|
28
|
+
}]
|
|
29
|
+
};
|
|
30
|
+
exports.default = info;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'intento',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
prettyName: 'Intento',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'intento-1',
|
|
11
|
+
bech32Prefix: 'into',
|
|
12
|
+
daemonName: 'intentod',
|
|
13
|
+
nodeHome: '$HOME/.intento',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'uinto',
|
|
19
|
+
fixedMinGasPrice: 0
|
|
20
|
+
}]
|
|
21
|
+
},
|
|
22
|
+
staking: {
|
|
23
|
+
stakingTokens: [{
|
|
24
|
+
denom: 'uinto'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
codebase: {
|
|
28
|
+
gitRepo: 'https://github.com/trstlabs/intento',
|
|
29
|
+
recommendedVersion: 'v1.0.1',
|
|
30
|
+
compatibleVersions: ['v1.0.1'],
|
|
31
|
+
consensus: {
|
|
32
|
+
type: 'cometbft',
|
|
33
|
+
version: 'v0.38.17'
|
|
34
|
+
},
|
|
35
|
+
genesis: {
|
|
36
|
+
genesisUrl: 'https://raw.githubusercontent.com/trstlabs/networks/refs/heads/main/mainnet/intento-1/genesis.json'
|
|
37
|
+
},
|
|
38
|
+
sdk: {
|
|
39
|
+
type: 'cosmos',
|
|
40
|
+
version: '0.50.14'
|
|
41
|
+
},
|
|
42
|
+
ibc: {
|
|
43
|
+
type: 'go',
|
|
44
|
+
version: 'v8.7.0'
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
apis: {
|
|
48
|
+
rpc: [{
|
|
49
|
+
address: 'https://rpc-mainnet.intento.zone',
|
|
50
|
+
provider: 'Intento'
|
|
51
|
+
}],
|
|
52
|
+
rest: [{
|
|
53
|
+
address: 'https://lcd-mainnet.intento.zone',
|
|
54
|
+
provider: 'Intento'
|
|
55
|
+
}],
|
|
56
|
+
grpc: []
|
|
57
|
+
},
|
|
58
|
+
explorers: [{
|
|
59
|
+
kind: 'PingPub',
|
|
60
|
+
url: 'https://explorer.intento.zone',
|
|
61
|
+
txPage: 'https://explorer.intento.zone/intento-mainnet/tx/${txHash}'
|
|
62
|
+
}]
|
|
63
|
+
};
|
|
64
|
+
exports.default = info;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'cosmoshub',
|
|
7
|
+
clientId: '07-tendermint-1436',
|
|
8
|
+
connectionId: 'connection-1175'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'intento',
|
|
12
|
+
clientId: '07-tendermint-0',
|
|
13
|
+
connectionId: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-1489',
|
|
18
|
+
portId: 'provider'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-0',
|
|
22
|
+
portId: 'consumer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'ordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live'
|
|
28
|
+
}
|
|
29
|
+
}, {
|
|
30
|
+
chain1: {
|
|
31
|
+
channelId: 'channel-1492',
|
|
32
|
+
portId: 'transfer'
|
|
33
|
+
},
|
|
34
|
+
chain2: {
|
|
35
|
+
channelId: 'channel-1',
|
|
36
|
+
portId: 'transfer'
|
|
37
|
+
},
|
|
38
|
+
ordering: 'unordered',
|
|
39
|
+
version: 'ics20-1',
|
|
40
|
+
tags: {
|
|
41
|
+
status: 'live',
|
|
42
|
+
preferred: true
|
|
43
|
+
}
|
|
44
|
+
}]
|
|
45
|
+
}, {
|
|
46
|
+
$schema: '../ibc_data.schema.json',
|
|
47
|
+
chain1: {
|
|
48
|
+
chainName: 'intento',
|
|
49
|
+
clientId: '07-tendermint-1',
|
|
50
|
+
connectionId: 'connection-1'
|
|
51
|
+
},
|
|
52
|
+
chain2: {
|
|
53
|
+
chainName: 'osmosis',
|
|
54
|
+
clientId: '07-tendermint-3549',
|
|
55
|
+
connectionId: 'connection-10824'
|
|
56
|
+
},
|
|
57
|
+
channels: [{
|
|
58
|
+
chain1: {
|
|
59
|
+
channelId: 'channel-3',
|
|
60
|
+
portId: 'transfer'
|
|
61
|
+
},
|
|
62
|
+
chain2: {
|
|
63
|
+
channelId: 'channel-106076',
|
|
64
|
+
portId: 'transfer'
|
|
65
|
+
},
|
|
66
|
+
ordering: 'unordered',
|
|
67
|
+
version: 'ics20-1',
|
|
68
|
+
tags: {
|
|
69
|
+
status: 'live',
|
|
70
|
+
preferred: true
|
|
71
|
+
}
|
|
72
|
+
}]
|
|
73
|
+
}];
|
|
74
|
+
exports.default = info;
|