chain-registry 2.0.66 → 2.0.68
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/axelar/asset-list.js +1 -1
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/neutron/chain.js +0 -8
- package/esm/mainnet/union/asset-list.js +36 -0
- package/esm/mainnet/union/chain.js +149 -0
- package/esm/mainnet/union/index.js +4 -0
- package/esm/noncosmos/asset-lists.js +2 -0
- package/esm/noncosmos/optio/asset-list.js +24 -0
- package/esm/noncosmos/optio/index.js +2 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/axelar/asset-list.js +1 -1
- package/mainnet/chains.js +2 -0
- package/mainnet/neutron/chain.js +0 -8
- package/mainnet/union/asset-list.d.ts +3 -0
- package/mainnet/union/asset-list.js +38 -0
- package/mainnet/union/chain.d.ts +3 -0
- package/mainnet/union/chain.js +151 -0
- package/mainnet/union/index.d.ts +2 -0
- package/mainnet/union/index.js +10 -0
- package/noncosmos/asset-lists.js +2 -0
- package/noncosmos/optio/asset-list.d.ts +3 -0
- package/noncosmos/optio/asset-list.js +26 -0
- package/noncosmos/optio/index.d.ts +1 -0
- package/noncosmos/optio/index.js +8 -0
- package/package.json +3 -3
|
@@ -204,6 +204,7 @@ import * as _titan from './titan';
|
|
|
204
204
|
import * as _umee from './umee';
|
|
205
205
|
import * as _unicorn from './unicorn';
|
|
206
206
|
import * as _unification from './unification';
|
|
207
|
+
import * as _union from './union';
|
|
207
208
|
import * as _ununifi from './ununifi';
|
|
208
209
|
import * as _uptick from './uptick';
|
|
209
210
|
import * as _vector from './vector';
|
|
@@ -421,6 +422,7 @@ const assetList = [
|
|
|
421
422
|
_umee.assetList,
|
|
422
423
|
_unicorn.assetList,
|
|
423
424
|
_unification.assetList,
|
|
425
|
+
_union.assetList,
|
|
424
426
|
_ununifi.assetList,
|
|
425
427
|
_uptick.assetList,
|
|
426
428
|
_vector.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -204,6 +204,7 @@ import * as _titan from './titan';
|
|
|
204
204
|
import * as _umee from './umee';
|
|
205
205
|
import * as _unicorn from './unicorn';
|
|
206
206
|
import * as _unification from './unification';
|
|
207
|
+
import * as _union from './union';
|
|
207
208
|
import * as _ununifi from './ununifi';
|
|
208
209
|
import * as _uptick from './uptick';
|
|
209
210
|
import * as _vector from './vector';
|
|
@@ -421,6 +422,7 @@ const chains = [
|
|
|
421
422
|
_umee.chain,
|
|
422
423
|
_unicorn.chain,
|
|
423
424
|
_unification.chain,
|
|
425
|
+
_union.chain,
|
|
424
426
|
_ununifi.chain,
|
|
425
427
|
_uptick.chain,
|
|
426
428
|
_vector.chain,
|
|
@@ -106,14 +106,6 @@ const info = {
|
|
|
106
106
|
address: 'https://rpc-vertexa.neutron-1.neutron.org',
|
|
107
107
|
provider: 'Neutron'
|
|
108
108
|
},
|
|
109
|
-
{
|
|
110
|
-
address: 'https://rpc-voidara.neutron-1.neutron.org',
|
|
111
|
-
provider: 'Neutron'
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
address: 'https://rpc-pulsarix.neutron-1.neutron.org',
|
|
115
|
-
provider: 'Neutron'
|
|
116
|
-
},
|
|
117
109
|
{
|
|
118
110
|
address: 'https://rpc.novel.remedy.tm.p2p.org',
|
|
119
111
|
provider: 'P2P'
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'union',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Union is the zero-knowledge (zk) interoperability network that functions as a settlement and liquidity layer for protocols and asset issuers.',
|
|
6
|
+
extendedDescription: 'Union is the zero-knowledge (zk) interoperability network that functions as a settlement and liquidity layer for protocols and asset issuers. Union supports direct connections between L1s, L2s, and rollups regardless of execution environment, while still being powered by the most secure consensus verification.',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'au',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'U',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
base: 'au',
|
|
15
|
+
name: 'U',
|
|
16
|
+
display: 'U',
|
|
17
|
+
symbol: 'U',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
21
|
+
},
|
|
22
|
+
coingeckoId: 'union-2',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
26
|
+
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://union.build/',
|
|
29
|
+
twitter: 'https://x.com/union_build',
|
|
30
|
+
discord: 'https://discord.union.build',
|
|
31
|
+
github: 'https://github.com/unionlabs/union'
|
|
32
|
+
},
|
|
33
|
+
typeAsset: 'sdk.coin'
|
|
34
|
+
}]
|
|
35
|
+
};
|
|
36
|
+
export default info;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'union',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://union.build/',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
prettyName: 'Union',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'union-1',
|
|
10
|
+
bech32Prefix: 'union',
|
|
11
|
+
daemonName: 'uniond',
|
|
12
|
+
nodeHome: '$HOME/.union',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'au',
|
|
18
|
+
fixedMinGasPrice: 100000000,
|
|
19
|
+
lowGasPrice: 100000000,
|
|
20
|
+
averageGasPrice: 100000000,
|
|
21
|
+
highGasPrice: 200000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'au'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/unionlabs/union',
|
|
31
|
+
recommendedVersion: 'v1.2.2',
|
|
32
|
+
compatibleVersions: ['v1.2.2'],
|
|
33
|
+
binaries: {
|
|
34
|
+
"linux/amd64": 'https://github.com/unionlabs/union/releases/download/uniond%2Fv1.2.2/uniond-release-x86_64-linux',
|
|
35
|
+
"linux/arm64": 'https://github.com/unionlabs/union/releases/download/uniond%2Fv1.2.2/uniond-release-aarch64-linux'
|
|
36
|
+
},
|
|
37
|
+
consensus: {
|
|
38
|
+
type: 'cometbft',
|
|
39
|
+
version: 'v1.0.1',
|
|
40
|
+
repo: 'https://github.com/unionlabs/cometbls',
|
|
41
|
+
tag: 'v1.0.1-cometbls'
|
|
42
|
+
},
|
|
43
|
+
genesis: {
|
|
44
|
+
genesisUrl: 'https://rpc.union.build/genesis'
|
|
45
|
+
},
|
|
46
|
+
sdk: {
|
|
47
|
+
type: 'cosmos',
|
|
48
|
+
repo: 'https://github.com/unionlabs/cosmos-sdk',
|
|
49
|
+
version: 'v0.50.13',
|
|
50
|
+
tag: 'v0.50.13-cometblsv1'
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
logoURIs: {
|
|
54
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
55
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
56
|
+
},
|
|
57
|
+
description: 'Union is the zero-knowledge (zk) interoperability network that functions as a settlement and liquidity layer for protocols and asset issuers.',
|
|
58
|
+
apis: {
|
|
59
|
+
rpc: [
|
|
60
|
+
{
|
|
61
|
+
address: 'https://rpc.union.build',
|
|
62
|
+
provider: 'Union'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
address: 'https://rpc-1.union.nodes.guru',
|
|
66
|
+
provider: 'Nodes.Guru'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
address: 'https://rpc.lavenderfive.com/union',
|
|
70
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://union-rpc.polkachu.com',
|
|
74
|
+
provider: 'Polkachu'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://union-rpc.kingnodes.com',
|
|
78
|
+
provider: 'Kingnodes 👑'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: 'https://union-rpc.stakeandrelax.net',
|
|
82
|
+
provider: 'Stake&Relax'
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
rest: [
|
|
86
|
+
{
|
|
87
|
+
address: 'https://rest.union.build',
|
|
88
|
+
provider: 'Union'
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
address: 'https://api-1.union.nodes.guru',
|
|
92
|
+
provider: 'Nodes.Guru'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
address: 'https://rest.lavenderfive.com/union',
|
|
96
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
address: 'https://union-api.polkachu.com',
|
|
100
|
+
provider: 'Polkachu'
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
address: 'https://union-rest.kingnodes.com',
|
|
104
|
+
provider: 'Kingnodes 👑'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
address: 'https://union-api.stakeandrelax.net',
|
|
108
|
+
provider: 'Stake&Relax'
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
grpc: [
|
|
112
|
+
{
|
|
113
|
+
address: 'grpc.union.build:443',
|
|
114
|
+
provider: 'Union'
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
address: 'grpc-1.union.nodes.guru:443',
|
|
118
|
+
provider: 'Nodes.Guru'
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
address: 'union.lavenderfive.com:443',
|
|
122
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
address: 'union-grpc.polkachu.com:24690',
|
|
126
|
+
provider: 'Polkachu'
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
address: 'union-grpc.kingnodes.com:443',
|
|
130
|
+
provider: 'Kingnodes 👑'
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
address: 'union-grpc.stakeandrelax.net:24690',
|
|
134
|
+
provider: 'Stake&Relax'
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
explorers: [{
|
|
139
|
+
kind: 'Ping.Pub',
|
|
140
|
+
url: 'https://explorer.union.build/union',
|
|
141
|
+
txPage: 'https://explorer.union.build/union/tx/${txHash}',
|
|
142
|
+
accountPage: 'https://explorer.union.build/union/account/${accountAddress}'
|
|
143
|
+
}],
|
|
144
|
+
images: [{
|
|
145
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
146
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
147
|
+
}]
|
|
148
|
+
};
|
|
149
|
+
export default info;
|
|
@@ -33,6 +33,7 @@ import * as _xrpl from './xrpl';
|
|
|
33
33
|
import * as _zilliqa from './zilliqa';
|
|
34
34
|
import * as _berachain from './berachain';
|
|
35
35
|
import * as _hall from './hall';
|
|
36
|
+
import * as _optio from './optio';
|
|
36
37
|
import * as _avalanchetestnet from './avalanchetestnet';
|
|
37
38
|
import * as _binancesmartchaintestnet from './binancesmartchaintestnet';
|
|
38
39
|
import * as _bitcoincashtestnet from './bitcoincashtestnet';
|
|
@@ -85,6 +86,7 @@ const assetList = [
|
|
|
85
86
|
_zilliqa.assetList,
|
|
86
87
|
_berachain.assetList,
|
|
87
88
|
_hall.assetList,
|
|
89
|
+
_optio.assetList,
|
|
88
90
|
_avalanchetestnet.assetList,
|
|
89
91
|
_binancesmartchaintestnet.assetList,
|
|
90
92
|
_bitcoincashtestnet.assetList,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'optio',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of Optio',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'uOPT',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'OPT',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
typeAsset: 'sdk.coin',
|
|
14
|
+
base: 'uOPT',
|
|
15
|
+
name: 'OPT',
|
|
16
|
+
display: 'OPT',
|
|
17
|
+
symbol: 'OPT',
|
|
18
|
+
images: [{
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/optio/images/opt.png'
|
|
20
|
+
}],
|
|
21
|
+
coingeckoId: 'optio'
|
|
22
|
+
}]
|
|
23
|
+
};
|
|
24
|
+
export default info;
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -229,6 +229,7 @@ const _titan = __importStar(require("./titan"));
|
|
|
229
229
|
const _umee = __importStar(require("./umee"));
|
|
230
230
|
const _unicorn = __importStar(require("./unicorn"));
|
|
231
231
|
const _unification = __importStar(require("./unification"));
|
|
232
|
+
const _union = __importStar(require("./union"));
|
|
232
233
|
const _ununifi = __importStar(require("./ununifi"));
|
|
233
234
|
const _uptick = __importStar(require("./uptick"));
|
|
234
235
|
const _vector = __importStar(require("./vector"));
|
|
@@ -446,6 +447,7 @@ const assetList = [
|
|
|
446
447
|
_umee.assetList,
|
|
447
448
|
_unicorn.assetList,
|
|
448
449
|
_unification.assetList,
|
|
450
|
+
_union.assetList,
|
|
449
451
|
_ununifi.assetList,
|
|
450
452
|
_uptick.assetList,
|
|
451
453
|
_vector.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -229,6 +229,7 @@ const _titan = __importStar(require("./titan"));
|
|
|
229
229
|
const _umee = __importStar(require("./umee"));
|
|
230
230
|
const _unicorn = __importStar(require("./unicorn"));
|
|
231
231
|
const _unification = __importStar(require("./unification"));
|
|
232
|
+
const _union = __importStar(require("./union"));
|
|
232
233
|
const _ununifi = __importStar(require("./ununifi"));
|
|
233
234
|
const _uptick = __importStar(require("./uptick"));
|
|
234
235
|
const _vector = __importStar(require("./vector"));
|
|
@@ -446,6 +447,7 @@ const chains = [
|
|
|
446
447
|
_umee.chain,
|
|
447
448
|
_unicorn.chain,
|
|
448
449
|
_unification.chain,
|
|
450
|
+
_union.chain,
|
|
449
451
|
_ununifi.chain,
|
|
450
452
|
_uptick.chain,
|
|
451
453
|
_vector.chain,
|
package/mainnet/neutron/chain.js
CHANGED
|
@@ -108,14 +108,6 @@ const info = {
|
|
|
108
108
|
address: 'https://rpc-vertexa.neutron-1.neutron.org',
|
|
109
109
|
provider: 'Neutron'
|
|
110
110
|
},
|
|
111
|
-
{
|
|
112
|
-
address: 'https://rpc-voidara.neutron-1.neutron.org',
|
|
113
|
-
provider: 'Neutron'
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
address: 'https://rpc-pulsarix.neutron-1.neutron.org',
|
|
117
|
-
provider: 'Neutron'
|
|
118
|
-
},
|
|
119
111
|
{
|
|
120
112
|
address: 'https://rpc.novel.remedy.tm.p2p.org',
|
|
121
113
|
provider: 'P2P'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'union',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'Union is the zero-knowledge (zk) interoperability network that functions as a settlement and liquidity layer for protocols and asset issuers.',
|
|
8
|
+
extendedDescription: 'Union is the zero-knowledge (zk) interoperability network that functions as a settlement and liquidity layer for protocols and asset issuers. Union supports direct connections between L1s, L2s, and rollups regardless of execution environment, while still being powered by the most secure consensus verification.',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'au',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'U',
|
|
14
|
+
exponent: 18
|
|
15
|
+
}],
|
|
16
|
+
base: 'au',
|
|
17
|
+
name: 'U',
|
|
18
|
+
display: 'U',
|
|
19
|
+
symbol: 'U',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
23
|
+
},
|
|
24
|
+
coingeckoId: 'union-2',
|
|
25
|
+
images: [{
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
27
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
28
|
+
}],
|
|
29
|
+
socials: {
|
|
30
|
+
website: 'https://union.build/',
|
|
31
|
+
twitter: 'https://x.com/union_build',
|
|
32
|
+
discord: 'https://discord.union.build',
|
|
33
|
+
github: 'https://github.com/unionlabs/union'
|
|
34
|
+
},
|
|
35
|
+
typeAsset: 'sdk.coin'
|
|
36
|
+
}]
|
|
37
|
+
};
|
|
38
|
+
exports.default = info;
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'union',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://union.build/',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
prettyName: 'Union',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'union-1',
|
|
12
|
+
bech32Prefix: 'union',
|
|
13
|
+
daemonName: 'uniond',
|
|
14
|
+
nodeHome: '$HOME/.union',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'au',
|
|
20
|
+
fixedMinGasPrice: 100000000,
|
|
21
|
+
lowGasPrice: 100000000,
|
|
22
|
+
averageGasPrice: 100000000,
|
|
23
|
+
highGasPrice: 200000000
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'au'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/unionlabs/union',
|
|
33
|
+
recommendedVersion: 'v1.2.2',
|
|
34
|
+
compatibleVersions: ['v1.2.2'],
|
|
35
|
+
binaries: {
|
|
36
|
+
"linux/amd64": 'https://github.com/unionlabs/union/releases/download/uniond%2Fv1.2.2/uniond-release-x86_64-linux',
|
|
37
|
+
"linux/arm64": 'https://github.com/unionlabs/union/releases/download/uniond%2Fv1.2.2/uniond-release-aarch64-linux'
|
|
38
|
+
},
|
|
39
|
+
consensus: {
|
|
40
|
+
type: 'cometbft',
|
|
41
|
+
version: 'v1.0.1',
|
|
42
|
+
repo: 'https://github.com/unionlabs/cometbls',
|
|
43
|
+
tag: 'v1.0.1-cometbls'
|
|
44
|
+
},
|
|
45
|
+
genesis: {
|
|
46
|
+
genesisUrl: 'https://rpc.union.build/genesis'
|
|
47
|
+
},
|
|
48
|
+
sdk: {
|
|
49
|
+
type: 'cosmos',
|
|
50
|
+
repo: 'https://github.com/unionlabs/cosmos-sdk',
|
|
51
|
+
version: 'v0.50.13',
|
|
52
|
+
tag: 'v0.50.13-cometblsv1'
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
logoURIs: {
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
57
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
58
|
+
},
|
|
59
|
+
description: 'Union is the zero-knowledge (zk) interoperability network that functions as a settlement and liquidity layer for protocols and asset issuers.',
|
|
60
|
+
apis: {
|
|
61
|
+
rpc: [
|
|
62
|
+
{
|
|
63
|
+
address: 'https://rpc.union.build',
|
|
64
|
+
provider: 'Union'
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
address: 'https://rpc-1.union.nodes.guru',
|
|
68
|
+
provider: 'Nodes.Guru'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://rpc.lavenderfive.com/union',
|
|
72
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
address: 'https://union-rpc.polkachu.com',
|
|
76
|
+
provider: 'Polkachu'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://union-rpc.kingnodes.com',
|
|
80
|
+
provider: 'Kingnodes 👑'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'https://union-rpc.stakeandrelax.net',
|
|
84
|
+
provider: 'Stake&Relax'
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
rest: [
|
|
88
|
+
{
|
|
89
|
+
address: 'https://rest.union.build',
|
|
90
|
+
provider: 'Union'
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
address: 'https://api-1.union.nodes.guru',
|
|
94
|
+
provider: 'Nodes.Guru'
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
address: 'https://rest.lavenderfive.com/union',
|
|
98
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
address: 'https://union-api.polkachu.com',
|
|
102
|
+
provider: 'Polkachu'
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
address: 'https://union-rest.kingnodes.com',
|
|
106
|
+
provider: 'Kingnodes 👑'
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
address: 'https://union-api.stakeandrelax.net',
|
|
110
|
+
provider: 'Stake&Relax'
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
grpc: [
|
|
114
|
+
{
|
|
115
|
+
address: 'grpc.union.build:443',
|
|
116
|
+
provider: 'Union'
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
address: 'grpc-1.union.nodes.guru:443',
|
|
120
|
+
provider: 'Nodes.Guru'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
address: 'union.lavenderfive.com:443',
|
|
124
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
address: 'union-grpc.polkachu.com:24690',
|
|
128
|
+
provider: 'Polkachu'
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
address: 'union-grpc.kingnodes.com:443',
|
|
132
|
+
provider: 'Kingnodes 👑'
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
address: 'union-grpc.stakeandrelax.net:24690',
|
|
136
|
+
provider: 'Stake&Relax'
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
explorers: [{
|
|
141
|
+
kind: 'Ping.Pub',
|
|
142
|
+
url: 'https://explorer.union.build/union',
|
|
143
|
+
txPage: 'https://explorer.union.build/union/tx/${txHash}',
|
|
144
|
+
accountPage: 'https://explorer.union.build/union/account/${accountAddress}'
|
|
145
|
+
}],
|
|
146
|
+
images: [{
|
|
147
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
148
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
|
149
|
+
}]
|
|
150
|
+
};
|
|
151
|
+
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;
|
package/noncosmos/asset-lists.js
CHANGED
|
@@ -58,6 +58,7 @@ const _xrpl = __importStar(require("./xrpl"));
|
|
|
58
58
|
const _zilliqa = __importStar(require("./zilliqa"));
|
|
59
59
|
const _berachain = __importStar(require("./berachain"));
|
|
60
60
|
const _hall = __importStar(require("./hall"));
|
|
61
|
+
const _optio = __importStar(require("./optio"));
|
|
61
62
|
const _avalanchetestnet = __importStar(require("./avalanchetestnet"));
|
|
62
63
|
const _binancesmartchaintestnet = __importStar(require("./binancesmartchaintestnet"));
|
|
63
64
|
const _bitcoincashtestnet = __importStar(require("./bitcoincashtestnet"));
|
|
@@ -110,6 +111,7 @@ const assetList = [
|
|
|
110
111
|
_zilliqa.assetList,
|
|
111
112
|
_berachain.assetList,
|
|
112
113
|
_hall.assetList,
|
|
114
|
+
_optio.assetList,
|
|
113
115
|
_avalanchetestnet.assetList,
|
|
114
116
|
_binancesmartchaintestnet.assetList,
|
|
115
117
|
_bitcoincashtestnet.assetList,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'optio',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of Optio',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'uOPT',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'OPT',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
typeAsset: 'sdk.coin',
|
|
16
|
+
base: 'uOPT',
|
|
17
|
+
name: 'OPT',
|
|
18
|
+
display: 'OPT',
|
|
19
|
+
symbol: 'OPT',
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/optio/images/opt.png'
|
|
22
|
+
}],
|
|
23
|
+
coingeckoId: 'optio'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
exports.default = info;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const assetList: import("@chain-registry/types").AssetList;
|
|
@@ -0,0 +1,8 @@
|
|
|
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.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
exports.assetList = asset_list_1.default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.68",
|
|
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.68"
|
|
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": "307ca080123582edb69f0ad0b7c6b55564e9f79e"
|
|
43
43
|
}
|