chain-registry 1.69.162 → 1.69.164
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/ibc.js +2 -0
- package/esm/mainnet/nillion/assets.js +7 -1
- package/esm/mainnet/nillion/chain.js +2 -1
- package/esm/mainnet/nillion/ibc.js +30 -0
- package/esm/mainnet/nillion/index.js +2 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/six/chain.js +4 -4
- package/esm/testnet/airchainsvaranasitestnet/assets.js +24 -0
- package/esm/testnet/airchainsvaranasitestnet/chain.js +206 -0
- package/esm/testnet/airchainsvaranasitestnet/index.js +4 -0
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/sixtestnet/chain.js +2 -2
- package/mainnet/ibc.js +2 -0
- package/mainnet/nillion/assets.js +7 -1
- package/mainnet/nillion/chain.js +2 -1
- package/mainnet/nillion/ibc.d.ts +3 -0
- package/mainnet/nillion/ibc.js +32 -0
- package/mainnet/nillion/index.d.ts +1 -0
- package/mainnet/nillion/index.js +3 -1
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/six/chain.js +4 -4
- package/package.json +4 -4
- package/testnet/airchainsvaranasitestnet/assets.d.ts +3 -0
- package/testnet/airchainsvaranasitestnet/assets.js +26 -0
- package/testnet/airchainsvaranasitestnet/chain.d.ts +3 -0
- package/testnet/airchainsvaranasitestnet/chain.js +208 -0
- package/testnet/airchainsvaranasitestnet/index.d.ts +2 -0
- package/testnet/airchainsvaranasitestnet/index.js +10 -0
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +4 -3
- package/testnet/sixtestnet/chain.js +2 -2
package/esm/mainnet/ibc.js
CHANGED
|
@@ -87,6 +87,7 @@ import * as _milkyway from './milkyway';
|
|
|
87
87
|
import * as _neutaro from './neutaro';
|
|
88
88
|
import * as _neutron from './neutron';
|
|
89
89
|
import * as _nibiru from './nibiru';
|
|
90
|
+
import * as _nillion from './nillion';
|
|
90
91
|
import * as _nim from './nim';
|
|
91
92
|
import * as _noble from './noble';
|
|
92
93
|
import * as _nolus from './nolus';
|
|
@@ -238,6 +239,7 @@ const ibc = [
|
|
|
238
239
|
..._neutaro.ibc,
|
|
239
240
|
..._neutron.ibc,
|
|
240
241
|
..._nibiru.ibc,
|
|
242
|
+
..._nillion.ibc,
|
|
241
243
|
..._nim.ibc,
|
|
242
244
|
..._noble.ibc,
|
|
243
245
|
..._nolus.ibc,
|
|
@@ -3,6 +3,7 @@ const info = {
|
|
|
3
3
|
chain_name: 'nillion',
|
|
4
4
|
assets: [{
|
|
5
5
|
description: 'NIL - the native token of Nillion',
|
|
6
|
+
extended_description: 'Nillion is the first Blind Computer – a private computation and storage network. The network uses PETs (Privacy-Enhancing Technologies) to enable computation and storage on data while maintaining privacy, making possible use cases like private personalized AI, encrypted databases, data marketplace, and privacy-preserving applications.\n\n$NIL is the native utility token of the network that is used for:\n-Network fees for blind computation and payments across the Coordination Layer and Petnet\n-Staking to secure the network\n-Governance participation the onchain governance module\n\n$NIL enables access to Nillion modules and services such as:\n-DB: an encrypted database with data split up across multiple nodes. Calculations can still be performed on data while in encrypted form\n-AI: AI-focused privacy technologies that include:\n--AI Virtual Machine (AIVM) – a secure AI inference platform co-developed with Meta for private inference\n--Nada-AI – a library for nilVM, offering an interface for running small AI models\n--nilTEE – uses Trusted Execution Environments (TEEs) to run faster private inference where speed is important\n-nilVM: VM with libraries that simplify program development for AI devs by letting them use Python and Javascript to write web3 programs.',
|
|
6
7
|
denom_units: [{
|
|
7
8
|
denom: 'unil',
|
|
8
9
|
exponent: 0
|
|
@@ -18,7 +19,12 @@ const info = {
|
|
|
18
19
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png',
|
|
19
20
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg'
|
|
20
21
|
}],
|
|
21
|
-
type_asset: 'sdk.coin'
|
|
22
|
+
type_asset: 'sdk.coin',
|
|
23
|
+
socials: {
|
|
24
|
+
website: 'https://nillion.com',
|
|
25
|
+
twitter: 'https://x.com/nillionnetwork'
|
|
26
|
+
},
|
|
27
|
+
coingecko_id: 'nillion'
|
|
22
28
|
}]
|
|
23
29
|
};
|
|
24
30
|
export default info;
|
|
@@ -73,6 +73,7 @@ const info = {
|
|
|
73
73
|
images: [{
|
|
74
74
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg',
|
|
75
75
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png'
|
|
76
|
-
}]
|
|
76
|
+
}],
|
|
77
|
+
description: 'Nillion is the first Blind Computer – a private computation and storage network. The network uses PETs (Privacy-Enhancing Technologies) to enable computation and storage on data while maintaining privacy, making possible use cases like private personalized AI, encrypted databases, data marketplace, and privacy-preserving applications.\n\n$NIL is the native utility token of the network that is used for:\n-Network fees for blind computation and payments across the Coordination Layer and Petnet\n-Staking to secure the network\n-Governance participation the onchain governance module\n\n$NIL enables access to Nillion modules and services such as:\n-DB: an encrypted database with data split up across multiple nodes. Calculations can still be performed on data while in encrypted form\n-AI: AI-focused privacy technologies that include:\n--AI Virtual Machine (AIVM) – a secure AI inference platform co-developed with Meta for private inference\n--Nada-AI – a library for nilVM, offering an interface for running small AI models\n--nilTEE – uses Trusted Execution Environments (TEEs) to run faster private inference where speed is important\n-nilVM: VM with libraries that simplify program development for AI devs by letting them use Python and Javascript to write web3 programs.'
|
|
77
78
|
};
|
|
78
79
|
export default info;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'nillion',
|
|
5
|
+
client_id: '07-tendermint-2',
|
|
6
|
+
connection_id: 'connection-2'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'osmosis',
|
|
10
|
+
client_id: '07-tendermint-3431',
|
|
11
|
+
connection_id: 'connection-10588'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-2',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-98416',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}];
|
|
30
|
+
export default info;
|
|
@@ -2800,6 +2800,35 @@ const info = [
|
|
|
2800
2800
|
}
|
|
2801
2801
|
}]
|
|
2802
2802
|
},
|
|
2803
|
+
{
|
|
2804
|
+
$schema: '../ibc_data.schema.json',
|
|
2805
|
+
chain_1: {
|
|
2806
|
+
chain_name: 'nillion',
|
|
2807
|
+
client_id: '07-tendermint-2',
|
|
2808
|
+
connection_id: 'connection-2'
|
|
2809
|
+
},
|
|
2810
|
+
chain_2: {
|
|
2811
|
+
chain_name: 'osmosis',
|
|
2812
|
+
client_id: '07-tendermint-3431',
|
|
2813
|
+
connection_id: 'connection-10588'
|
|
2814
|
+
},
|
|
2815
|
+
channels: [{
|
|
2816
|
+
chain_1: {
|
|
2817
|
+
channel_id: 'channel-2',
|
|
2818
|
+
port_id: 'transfer'
|
|
2819
|
+
},
|
|
2820
|
+
chain_2: {
|
|
2821
|
+
channel_id: 'channel-98416',
|
|
2822
|
+
port_id: 'transfer'
|
|
2823
|
+
},
|
|
2824
|
+
ordering: 'unordered',
|
|
2825
|
+
version: 'ics20-1',
|
|
2826
|
+
tags: {
|
|
2827
|
+
status: 'live',
|
|
2828
|
+
preferred: true
|
|
2829
|
+
}
|
|
2830
|
+
}]
|
|
2831
|
+
},
|
|
2803
2832
|
{
|
|
2804
2833
|
$schema: '../ibc_data.schema.json',
|
|
2805
2834
|
chain_1: {
|
package/esm/mainnet/six/chain.js
CHANGED
|
@@ -27,8 +27,8 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
git_repo: 'https://github.com/thesixnetwork/six-protocol',
|
|
30
|
-
recommended_version: 'v3.
|
|
31
|
-
compatible_versions: ['v3.
|
|
30
|
+
recommended_version: 'v3.3.0',
|
|
31
|
+
compatible_versions: ['v3.3.0'],
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'tendermint',
|
|
34
34
|
version: '0.34'
|
|
@@ -43,10 +43,10 @@ const info = {
|
|
|
43
43
|
},
|
|
44
44
|
apis: {
|
|
45
45
|
rpc: [{
|
|
46
|
-
address: 'https://sixnet-rpc.sixprotocol.net
|
|
46
|
+
address: 'https://sixnet-rpc.sixprotocol.net'
|
|
47
47
|
}],
|
|
48
48
|
rest: [{
|
|
49
|
-
address: 'https://sixnet-api.sixprotocol.net
|
|
49
|
+
address: 'https://sixnet-api.sixprotocol.net'
|
|
50
50
|
}]
|
|
51
51
|
},
|
|
52
52
|
explorers: [{
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'airchainsvaranasitestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking token of Airchains Testnet.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'uamf',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'AMF',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'uamf',
|
|
14
|
+
name: 'Airchains',
|
|
15
|
+
display: 'AMF',
|
|
16
|
+
symbol: 'AMF',
|
|
17
|
+
images: [{
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.png',
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.svg'
|
|
20
|
+
}],
|
|
21
|
+
type_asset: 'sdk.coin'
|
|
22
|
+
}]
|
|
23
|
+
};
|
|
24
|
+
export default info;
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'airchainsvaranasitestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://airchains.io/',
|
|
6
|
+
network_type: 'testnet',
|
|
7
|
+
pretty_name: 'Airchains Varanasi Testnet',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'varanasi-1',
|
|
10
|
+
bech32_prefix: 'air',
|
|
11
|
+
daemon_name: 'junctiond',
|
|
12
|
+
node_home: '$HOME/.junctiond',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'uamf',
|
|
18
|
+
fixed_min_gas_price: 0,
|
|
19
|
+
low_gas_price: 0.00025,
|
|
20
|
+
average_gas_price: 0.005,
|
|
21
|
+
high_gas_price: 0.01
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'uamf'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
git_repo: 'https://github.com/airchains-network/junction',
|
|
31
|
+
recommended_version: 'v0.3.1',
|
|
32
|
+
genesis: {
|
|
33
|
+
genesis_url: 'https://raw.githubusercontent.com/airchains-network/junction-resources/refs/heads/main/varanasi-testnet/genesis/genesis.json'
|
|
34
|
+
},
|
|
35
|
+
sdk: {
|
|
36
|
+
type: 'cosmos',
|
|
37
|
+
version: '0.50.9'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
images: [{
|
|
41
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.png',
|
|
42
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.svg'
|
|
43
|
+
}],
|
|
44
|
+
description: 'Airchains',
|
|
45
|
+
apis: {
|
|
46
|
+
rpc: [
|
|
47
|
+
{
|
|
48
|
+
address: 'https://rpc1.airchains.t.cosmostaking.com/',
|
|
49
|
+
provider: 'Cosmostaking'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
address: 'https://airchains-testnet-rpc.mekonglabs.tech/',
|
|
53
|
+
provider: 'MeKongLabs'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
address: 'https://airchains-testnet-rpc.validator247.com/',
|
|
57
|
+
provider: 'Validator247'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'https://airchains-rpc.node9x.com/',
|
|
61
|
+
provider: 'Node9x'
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
address: 'https://airchains-testnet-rpc.bonynode.online/',
|
|
65
|
+
provider: 'BonyNode'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
address: 'https://airchains-testnet-rpc.validotgo.com/',
|
|
69
|
+
provider: 'Validotgo'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'https://airchains-var-rpc.apollo-sync.com/',
|
|
73
|
+
provider: 'ApolloSYNC'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'https://junction-testnet-rpc.nodesync.top/',
|
|
77
|
+
provider: 'NodeSync'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: 'https://t-airchains.rpc.utsa.tech/',
|
|
81
|
+
provider: 'UTSA'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
address: 'https://junction-rpc.kzvn.xyz/',
|
|
85
|
+
provider: 'KenZ | DragonVN'
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
address: 'https://rpc.synergynodes.com/',
|
|
89
|
+
provider: 'Synergy Nodes'
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
address: 'https://airchains-rpc.itrocket.net/',
|
|
93
|
+
provider: 'ITRocket'
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
address: 'https://airchains-testnet-rpc.nodesphere.net/',
|
|
97
|
+
provider: 'NodeSphere'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
address: 'https://airchains-testnet-rpc.stakevillage.net/',
|
|
101
|
+
provider: 'Stake Village'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'https://rpc1.airchains.t.cosmostaking.com/',
|
|
105
|
+
provider: 'Cosmostaking'
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
rest: [
|
|
109
|
+
{
|
|
110
|
+
address: 'https://airchains-testnet-api.mekonglabs.tech/',
|
|
111
|
+
provider: 'MeKongLabs'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
address: 'https://airchains-testnet-api.validator247.com/',
|
|
115
|
+
provider: 'Validator247'
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
address: 'https://airchains-api.node9x.com/',
|
|
119
|
+
provider: 'Node9x'
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
address: 'https://airchains-testnet-api.bonynode.online/',
|
|
123
|
+
provider: 'BonyNode'
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
address: 'https://airchains-testnet-api.validotgo.com/',
|
|
127
|
+
provider: 'Validotgo'
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
address: 'https://airchains-var-api.apollo-sync.com/',
|
|
131
|
+
provider: 'ApolloSYNC'
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
address: 'https://junction-testnet-api.nodesync.top/',
|
|
135
|
+
provider: 'NodeSync'
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
address: 'https://t-airchains.api.utsa.tech/',
|
|
139
|
+
provider: 'UTSA'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
address: 'https://junction-api.kzvn.xyz/',
|
|
143
|
+
provider: 'KenZ | DragonVN'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
address: 'https://api.synergynodes.com/',
|
|
147
|
+
provider: 'Synergy Nodes'
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
address: 'https://airchains-api.itrocket.net/',
|
|
151
|
+
provider: 'ITRocket'
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
address: 'https://airchains-testnet-api.nodesphere.net/',
|
|
155
|
+
provider: 'NodeSphere'
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
address: 'https://airchains-testnet.api.stakevillage.net/',
|
|
159
|
+
provider: 'Stake Village'
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
address: 'https://airchains-testnet-rest.cosmonautstakes.com/',
|
|
163
|
+
provider: 'Cosmonaut Stakes'
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
address: 'https://rest1.airchains.t.cosmostaking.com/',
|
|
167
|
+
provider: 'Cosmostaking'
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
grpc: [
|
|
171
|
+
{
|
|
172
|
+
address: 'airchains-testnet-grpc.cosmonautstakes.com:14190',
|
|
173
|
+
provider: 'Cosmonaut Stakes'
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
address: 'airchains-testnet.grpc.stakevillage.net:443',
|
|
177
|
+
provider: 'Stake Village'
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
address: 'grpc1.airchains.t.cosmostaking.com:43090',
|
|
181
|
+
provider: 'Cosmostaking'
|
|
182
|
+
}
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
explorers: [
|
|
186
|
+
{
|
|
187
|
+
kind: 'Nodes.guru',
|
|
188
|
+
url: 'https://testnet.junction.explorers.guru/',
|
|
189
|
+
tx_page: 'https://testnet.junction.explorers.guru/transaction/${txHash}',
|
|
190
|
+
account_page: 'https://testnet.junction.explorers.guru/account/${accountAddress}'
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
kind: 'Validator VN ',
|
|
194
|
+
url: 'https://explorer.validatorvn.com/Airchains-Testnet',
|
|
195
|
+
tx_page: 'https://explorer.validatorvn.com/Airchains-Testnet/tx/${txHash}',
|
|
196
|
+
account_page: 'https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}'
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
kind: 'StakeMe',
|
|
200
|
+
url: 'https://airchains.exploreme.pro/',
|
|
201
|
+
tx_page: 'https://airchains.exploreme.pro/transactions/${txHash}',
|
|
202
|
+
account_page: 'https://airchains.exploreme.pro/account/${accountAddress}'
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
};
|
|
206
|
+
export default info;
|
package/esm/testnet/assets.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as _airchainstestnet from './airchainstestnet';
|
|
2
|
+
import * as _airchainsvaranasitestnet from './airchainsvaranasitestnet';
|
|
2
3
|
import * as _akashtestnet from './akashtestnet';
|
|
3
4
|
import * as _alloratestnet from './alloratestnet';
|
|
4
5
|
import * as _archwaytestnet from './archwaytestnet';
|
|
@@ -128,6 +129,7 @@ import * as _zetachaintestnet from './zetachaintestnet';
|
|
|
128
129
|
import * as _zigchaintestnet from './zigchaintestnet';
|
|
129
130
|
const assets = [
|
|
130
131
|
_airchainstestnet.assets,
|
|
132
|
+
_airchainsvaranasitestnet.assets,
|
|
131
133
|
_akashtestnet.assets,
|
|
132
134
|
_alloratestnet.assets,
|
|
133
135
|
_archwaytestnet.assets,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as _airchainstestnet from './airchainstestnet';
|
|
2
|
+
import * as _airchainsvaranasitestnet from './airchainsvaranasitestnet';
|
|
2
3
|
import * as _akashtestnet from './akashtestnet';
|
|
3
4
|
import * as _alloratestnet from './alloratestnet';
|
|
4
5
|
import * as _archwaytestnet from './archwaytestnet';
|
|
@@ -128,6 +129,7 @@ import * as _zetachaintestnet from './zetachaintestnet';
|
|
|
128
129
|
import * as _zigchaintestnet from './zigchaintestnet';
|
|
129
130
|
const chains = [
|
|
130
131
|
_airchainstestnet.chain,
|
|
132
|
+
_airchainsvaranasitestnet.chain,
|
|
131
133
|
_akashtestnet.chain,
|
|
132
134
|
_alloratestnet.chain,
|
|
133
135
|
_archwaytestnet.chain,
|
package/esm/testnet/named.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * as airchainstestnet from './airchainstestnet';
|
|
2
|
+
export * as airchainsvaranasitestnet from './airchainsvaranasitestnet';
|
|
2
3
|
export * as akashtestnet from './akashtestnet';
|
|
3
4
|
export * as alloratestnet from './alloratestnet';
|
|
4
5
|
export * as archwaytestnet from './archwaytestnet';
|
|
@@ -27,8 +27,8 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
git_repo: 'https://github.com/thesixnetwork/six-protocol',
|
|
30
|
-
recommended_version: 'v3.
|
|
31
|
-
compatible_versions: ['v3.
|
|
30
|
+
recommended_version: 'v3.3.0',
|
|
31
|
+
compatible_versions: ['v3.3.0'],
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'tendermint',
|
|
34
34
|
version: '0.34'
|
package/mainnet/ibc.js
CHANGED
|
@@ -112,6 +112,7 @@ const _milkyway = __importStar(require("./milkyway"));
|
|
|
112
112
|
const _neutaro = __importStar(require("./neutaro"));
|
|
113
113
|
const _neutron = __importStar(require("./neutron"));
|
|
114
114
|
const _nibiru = __importStar(require("./nibiru"));
|
|
115
|
+
const _nillion = __importStar(require("./nillion"));
|
|
115
116
|
const _nim = __importStar(require("./nim"));
|
|
116
117
|
const _noble = __importStar(require("./noble"));
|
|
117
118
|
const _nolus = __importStar(require("./nolus"));
|
|
@@ -263,6 +264,7 @@ const ibc = [
|
|
|
263
264
|
..._neutaro.ibc,
|
|
264
265
|
..._neutron.ibc,
|
|
265
266
|
..._nibiru.ibc,
|
|
267
|
+
..._nillion.ibc,
|
|
266
268
|
..._nim.ibc,
|
|
267
269
|
..._noble.ibc,
|
|
268
270
|
..._nolus.ibc,
|
|
@@ -5,6 +5,7 @@ const info = {
|
|
|
5
5
|
chain_name: 'nillion',
|
|
6
6
|
assets: [{
|
|
7
7
|
description: 'NIL - the native token of Nillion',
|
|
8
|
+
extended_description: 'Nillion is the first Blind Computer – a private computation and storage network. The network uses PETs (Privacy-Enhancing Technologies) to enable computation and storage on data while maintaining privacy, making possible use cases like private personalized AI, encrypted databases, data marketplace, and privacy-preserving applications.\n\n$NIL is the native utility token of the network that is used for:\n-Network fees for blind computation and payments across the Coordination Layer and Petnet\n-Staking to secure the network\n-Governance participation the onchain governance module\n\n$NIL enables access to Nillion modules and services such as:\n-DB: an encrypted database with data split up across multiple nodes. Calculations can still be performed on data while in encrypted form\n-AI: AI-focused privacy technologies that include:\n--AI Virtual Machine (AIVM) – a secure AI inference platform co-developed with Meta for private inference\n--Nada-AI – a library for nilVM, offering an interface for running small AI models\n--nilTEE – uses Trusted Execution Environments (TEEs) to run faster private inference where speed is important\n-nilVM: VM with libraries that simplify program development for AI devs by letting them use Python and Javascript to write web3 programs.',
|
|
8
9
|
denom_units: [{
|
|
9
10
|
denom: 'unil',
|
|
10
11
|
exponent: 0
|
|
@@ -20,7 +21,12 @@ const info = {
|
|
|
20
21
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png',
|
|
21
22
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg'
|
|
22
23
|
}],
|
|
23
|
-
type_asset: 'sdk.coin'
|
|
24
|
+
type_asset: 'sdk.coin',
|
|
25
|
+
socials: {
|
|
26
|
+
website: 'https://nillion.com',
|
|
27
|
+
twitter: 'https://x.com/nillionnetwork'
|
|
28
|
+
},
|
|
29
|
+
coingecko_id: 'nillion'
|
|
24
30
|
}]
|
|
25
31
|
};
|
|
26
32
|
exports.default = info;
|
package/mainnet/nillion/chain.js
CHANGED
|
@@ -75,6 +75,7 @@ const info = {
|
|
|
75
75
|
images: [{
|
|
76
76
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg',
|
|
77
77
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png'
|
|
78
|
-
}]
|
|
78
|
+
}],
|
|
79
|
+
description: 'Nillion is the first Blind Computer – a private computation and storage network. The network uses PETs (Privacy-Enhancing Technologies) to enable computation and storage on data while maintaining privacy, making possible use cases like private personalized AI, encrypted databases, data marketplace, and privacy-preserving applications.\n\n$NIL is the native utility token of the network that is used for:\n-Network fees for blind computation and payments across the Coordination Layer and Petnet\n-Staking to secure the network\n-Governance participation the onchain governance module\n\n$NIL enables access to Nillion modules and services such as:\n-DB: an encrypted database with data split up across multiple nodes. Calculations can still be performed on data while in encrypted form\n-AI: AI-focused privacy technologies that include:\n--AI Virtual Machine (AIVM) – a secure AI inference platform co-developed with Meta for private inference\n--Nada-AI – a library for nilVM, offering an interface for running small AI models\n--nilTEE – uses Trusted Execution Environments (TEEs) to run faster private inference where speed is important\n-nilVM: VM with libraries that simplify program development for AI devs by letting them use Python and Javascript to write web3 programs.'
|
|
79
80
|
};
|
|
80
81
|
exports.default = info;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'nillion',
|
|
7
|
+
client_id: '07-tendermint-2',
|
|
8
|
+
connection_id: 'connection-2'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'osmosis',
|
|
12
|
+
client_id: '07-tendermint-3431',
|
|
13
|
+
connection_id: 'connection-10588'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-2',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-98416',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
exports.default = info;
|
package/mainnet/nillion/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assets = void 0;
|
|
6
|
+
exports.ibc = exports.chain = exports.assets = void 0;
|
|
7
7
|
const assets_1 = __importDefault(require("./assets"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_1 = __importDefault(require("./ibc"));
|
|
9
10
|
exports.assets = assets_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibc = ibc_1.default;
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -2802,6 +2802,35 @@ const info = [
|
|
|
2802
2802
|
}
|
|
2803
2803
|
}]
|
|
2804
2804
|
},
|
|
2805
|
+
{
|
|
2806
|
+
$schema: '../ibc_data.schema.json',
|
|
2807
|
+
chain_1: {
|
|
2808
|
+
chain_name: 'nillion',
|
|
2809
|
+
client_id: '07-tendermint-2',
|
|
2810
|
+
connection_id: 'connection-2'
|
|
2811
|
+
},
|
|
2812
|
+
chain_2: {
|
|
2813
|
+
chain_name: 'osmosis',
|
|
2814
|
+
client_id: '07-tendermint-3431',
|
|
2815
|
+
connection_id: 'connection-10588'
|
|
2816
|
+
},
|
|
2817
|
+
channels: [{
|
|
2818
|
+
chain_1: {
|
|
2819
|
+
channel_id: 'channel-2',
|
|
2820
|
+
port_id: 'transfer'
|
|
2821
|
+
},
|
|
2822
|
+
chain_2: {
|
|
2823
|
+
channel_id: 'channel-98416',
|
|
2824
|
+
port_id: 'transfer'
|
|
2825
|
+
},
|
|
2826
|
+
ordering: 'unordered',
|
|
2827
|
+
version: 'ics20-1',
|
|
2828
|
+
tags: {
|
|
2829
|
+
status: 'live',
|
|
2830
|
+
preferred: true
|
|
2831
|
+
}
|
|
2832
|
+
}]
|
|
2833
|
+
},
|
|
2805
2834
|
{
|
|
2806
2835
|
$schema: '../ibc_data.schema.json',
|
|
2807
2836
|
chain_1: {
|
package/mainnet/six/chain.js
CHANGED
|
@@ -29,8 +29,8 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
git_repo: 'https://github.com/thesixnetwork/six-protocol',
|
|
32
|
-
recommended_version: 'v3.
|
|
33
|
-
compatible_versions: ['v3.
|
|
32
|
+
recommended_version: 'v3.3.0',
|
|
33
|
+
compatible_versions: ['v3.3.0'],
|
|
34
34
|
consensus: {
|
|
35
35
|
type: 'tendermint',
|
|
36
36
|
version: '0.34'
|
|
@@ -45,10 +45,10 @@ const info = {
|
|
|
45
45
|
},
|
|
46
46
|
apis: {
|
|
47
47
|
rpc: [{
|
|
48
|
-
address: 'https://sixnet-rpc.sixprotocol.net
|
|
48
|
+
address: 'https://sixnet-rpc.sixprotocol.net'
|
|
49
49
|
}],
|
|
50
50
|
rest: [{
|
|
51
|
-
address: 'https://sixnet-api.sixprotocol.net
|
|
51
|
+
address: 'https://sixnet-api.sixprotocol.net'
|
|
52
52
|
}]
|
|
53
53
|
},
|
|
54
54
|
explorers: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.164",
|
|
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,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.100",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.100"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "1c4ce7b515dfdb5f84c85f080d06cf7b8aaae5e5"
|
|
47
47
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chain_name: 'airchainsvaranasitestnet',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking token of Airchains Testnet.',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'uamf',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'AMF',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'uamf',
|
|
16
|
+
name: 'Airchains',
|
|
17
|
+
display: 'AMF',
|
|
18
|
+
symbol: 'AMF',
|
|
19
|
+
images: [{
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.png',
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.svg'
|
|
22
|
+
}],
|
|
23
|
+
type_asset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
exports.default = info;
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chain_name: 'airchainsvaranasitestnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://airchains.io/',
|
|
8
|
+
network_type: 'testnet',
|
|
9
|
+
pretty_name: 'Airchains Varanasi Testnet',
|
|
10
|
+
chain_type: 'cosmos',
|
|
11
|
+
chain_id: 'varanasi-1',
|
|
12
|
+
bech32_prefix: 'air',
|
|
13
|
+
daemon_name: 'junctiond',
|
|
14
|
+
node_home: '$HOME/.junctiond',
|
|
15
|
+
key_algos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [{
|
|
19
|
+
denom: 'uamf',
|
|
20
|
+
fixed_min_gas_price: 0,
|
|
21
|
+
low_gas_price: 0.00025,
|
|
22
|
+
average_gas_price: 0.005,
|
|
23
|
+
high_gas_price: 0.01
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
staking_tokens: [{
|
|
28
|
+
denom: 'uamf'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
git_repo: 'https://github.com/airchains-network/junction',
|
|
33
|
+
recommended_version: 'v0.3.1',
|
|
34
|
+
genesis: {
|
|
35
|
+
genesis_url: 'https://raw.githubusercontent.com/airchains-network/junction-resources/refs/heads/main/varanasi-testnet/genesis/genesis.json'
|
|
36
|
+
},
|
|
37
|
+
sdk: {
|
|
38
|
+
type: 'cosmos',
|
|
39
|
+
version: '0.50.9'
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
images: [{
|
|
43
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.png',
|
|
44
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainsvaranasitestnet/images/airchains-logo.svg'
|
|
45
|
+
}],
|
|
46
|
+
description: 'Airchains',
|
|
47
|
+
apis: {
|
|
48
|
+
rpc: [
|
|
49
|
+
{
|
|
50
|
+
address: 'https://rpc1.airchains.t.cosmostaking.com/',
|
|
51
|
+
provider: 'Cosmostaking'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
address: 'https://airchains-testnet-rpc.mekonglabs.tech/',
|
|
55
|
+
provider: 'MeKongLabs'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'https://airchains-testnet-rpc.validator247.com/',
|
|
59
|
+
provider: 'Validator247'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
address: 'https://airchains-rpc.node9x.com/',
|
|
63
|
+
provider: 'Node9x'
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
address: 'https://airchains-testnet-rpc.bonynode.online/',
|
|
67
|
+
provider: 'BonyNode'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
address: 'https://airchains-testnet-rpc.validotgo.com/',
|
|
71
|
+
provider: 'Validotgo'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://airchains-var-rpc.apollo-sync.com/',
|
|
75
|
+
provider: 'ApolloSYNC'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://junction-testnet-rpc.nodesync.top/',
|
|
79
|
+
provider: 'NodeSync'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'https://t-airchains.rpc.utsa.tech/',
|
|
83
|
+
provider: 'UTSA'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://junction-rpc.kzvn.xyz/',
|
|
87
|
+
provider: 'KenZ | DragonVN'
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
address: 'https://rpc.synergynodes.com/',
|
|
91
|
+
provider: 'Synergy Nodes'
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
address: 'https://airchains-rpc.itrocket.net/',
|
|
95
|
+
provider: 'ITRocket'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'https://airchains-testnet-rpc.nodesphere.net/',
|
|
99
|
+
provider: 'NodeSphere'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://airchains-testnet-rpc.stakevillage.net/',
|
|
103
|
+
provider: 'Stake Village'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
address: 'https://rpc1.airchains.t.cosmostaking.com/',
|
|
107
|
+
provider: 'Cosmostaking'
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
rest: [
|
|
111
|
+
{
|
|
112
|
+
address: 'https://airchains-testnet-api.mekonglabs.tech/',
|
|
113
|
+
provider: 'MeKongLabs'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://airchains-testnet-api.validator247.com/',
|
|
117
|
+
provider: 'Validator247'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
address: 'https://airchains-api.node9x.com/',
|
|
121
|
+
provider: 'Node9x'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: 'https://airchains-testnet-api.bonynode.online/',
|
|
125
|
+
provider: 'BonyNode'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
address: 'https://airchains-testnet-api.validotgo.com/',
|
|
129
|
+
provider: 'Validotgo'
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
address: 'https://airchains-var-api.apollo-sync.com/',
|
|
133
|
+
provider: 'ApolloSYNC'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
address: 'https://junction-testnet-api.nodesync.top/',
|
|
137
|
+
provider: 'NodeSync'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
address: 'https://t-airchains.api.utsa.tech/',
|
|
141
|
+
provider: 'UTSA'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
address: 'https://junction-api.kzvn.xyz/',
|
|
145
|
+
provider: 'KenZ | DragonVN'
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
address: 'https://api.synergynodes.com/',
|
|
149
|
+
provider: 'Synergy Nodes'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
address: 'https://airchains-api.itrocket.net/',
|
|
153
|
+
provider: 'ITRocket'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
address: 'https://airchains-testnet-api.nodesphere.net/',
|
|
157
|
+
provider: 'NodeSphere'
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
address: 'https://airchains-testnet.api.stakevillage.net/',
|
|
161
|
+
provider: 'Stake Village'
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
address: 'https://airchains-testnet-rest.cosmonautstakes.com/',
|
|
165
|
+
provider: 'Cosmonaut Stakes'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
address: 'https://rest1.airchains.t.cosmostaking.com/',
|
|
169
|
+
provider: 'Cosmostaking'
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
grpc: [
|
|
173
|
+
{
|
|
174
|
+
address: 'airchains-testnet-grpc.cosmonautstakes.com:14190',
|
|
175
|
+
provider: 'Cosmonaut Stakes'
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
address: 'airchains-testnet.grpc.stakevillage.net:443',
|
|
179
|
+
provider: 'Stake Village'
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
address: 'grpc1.airchains.t.cosmostaking.com:43090',
|
|
183
|
+
provider: 'Cosmostaking'
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
explorers: [
|
|
188
|
+
{
|
|
189
|
+
kind: 'Nodes.guru',
|
|
190
|
+
url: 'https://testnet.junction.explorers.guru/',
|
|
191
|
+
tx_page: 'https://testnet.junction.explorers.guru/transaction/${txHash}',
|
|
192
|
+
account_page: 'https://testnet.junction.explorers.guru/account/${accountAddress}'
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
kind: 'Validator VN ',
|
|
196
|
+
url: 'https://explorer.validatorvn.com/Airchains-Testnet',
|
|
197
|
+
tx_page: 'https://explorer.validatorvn.com/Airchains-Testnet/tx/${txHash}',
|
|
198
|
+
account_page: 'https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}'
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
kind: 'StakeMe',
|
|
202
|
+
url: 'https://airchains.exploreme.pro/',
|
|
203
|
+
tx_page: 'https://airchains.exploreme.pro/transactions/${txHash}',
|
|
204
|
+
account_page: 'https://airchains.exploreme.pro/account/${accountAddress}'
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
};
|
|
208
|
+
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.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/testnet/assets.js
CHANGED
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _airchainstestnet = __importStar(require("./airchainstestnet"));
|
|
27
|
+
const _airchainsvaranasitestnet = __importStar(require("./airchainsvaranasitestnet"));
|
|
27
28
|
const _akashtestnet = __importStar(require("./akashtestnet"));
|
|
28
29
|
const _alloratestnet = __importStar(require("./alloratestnet"));
|
|
29
30
|
const _archwaytestnet = __importStar(require("./archwaytestnet"));
|
|
@@ -153,6 +154,7 @@ const _zetachaintestnet = __importStar(require("./zetachaintestnet"));
|
|
|
153
154
|
const _zigchaintestnet = __importStar(require("./zigchaintestnet"));
|
|
154
155
|
const assets = [
|
|
155
156
|
_airchainstestnet.assets,
|
|
157
|
+
_airchainsvaranasitestnet.assets,
|
|
156
158
|
_akashtestnet.assets,
|
|
157
159
|
_alloratestnet.assets,
|
|
158
160
|
_archwaytestnet.assets,
|
package/testnet/chains.js
CHANGED
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _airchainstestnet = __importStar(require("./airchainstestnet"));
|
|
27
|
+
const _airchainsvaranasitestnet = __importStar(require("./airchainsvaranasitestnet"));
|
|
27
28
|
const _akashtestnet = __importStar(require("./akashtestnet"));
|
|
28
29
|
const _alloratestnet = __importStar(require("./alloratestnet"));
|
|
29
30
|
const _archwaytestnet = __importStar(require("./archwaytestnet"));
|
|
@@ -153,6 +154,7 @@ const _zetachaintestnet = __importStar(require("./zetachaintestnet"));
|
|
|
153
154
|
const _zigchaintestnet = __importStar(require("./zigchaintestnet"));
|
|
154
155
|
const chains = [
|
|
155
156
|
_airchainstestnet.chain,
|
|
157
|
+
_airchainsvaranasitestnet.chain,
|
|
156
158
|
_akashtestnet.chain,
|
|
157
159
|
_alloratestnet.chain,
|
|
158
160
|
_archwaytestnet.chain,
|
package/testnet/named.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * as airchainstestnet from './airchainstestnet';
|
|
2
|
+
export * as airchainsvaranasitestnet from './airchainsvaranasitestnet';
|
|
2
3
|
export * as akashtestnet from './akashtestnet';
|
|
3
4
|
export * as alloratestnet from './alloratestnet';
|
|
4
5
|
export * as archwaytestnet from './archwaytestnet';
|
package/testnet/named.js
CHANGED
|
@@ -23,10 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.zigchaintestnet = exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet2 = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.titannettestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = exports.symphonytestnet3 = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = void 0;
|
|
26
|
+
exports.injectivetestnet = exports.imversedtestnet = exports.impacthubtestnet = exports.hypersigntestnet = exports.humanstestnet = exports.hedgetestnet = exports.gitopiatestnet = exports.galacticatestnet = exports.finschiatestnet = exports.fiammatestnet = exports.fetchhubtestnet = exports.evmostestnet = exports.epixtestnet = exports.empowertestnet = exports.empetestnet = exports.elystestnet = exports.dymensiontestnet1 = exports.dydxtestnet = exports.doravotatestnet = exports.dhealthtestnet = exports.desmostestnet = exports.deardogetestnet = exports.cudostestnet = exports.cosstestnet = exports.cosmwasmtestnet = exports.cosmosicsprovidertestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.coolcattestnet = exports.composabletestnet = exports.chimbatestnet = exports.cheqdtestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.cascadiatestnet = exports.blockxtestnet = exports.bitcannadevnet = exports.bfhevmtestnet = exports.babylontestnet = exports.axelartestnet = exports.autheotestnet = exports.auratestnet = exports.atomonetestnet = exports.artelatestnet = exports.arkeonetworktestnet = exports.archwaytestnet = exports.alloratestnet = exports.akashtestnet = exports.airchainsvaranasitestnet = exports.airchainstestnet = void 0;
|
|
27
|
+
exports.shentutestnet = exports.sgetestnet4 = exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet = exports.sedatestnet = exports.secretnetworktestnet = exports.sagatestnet = exports.qwoyntestnet = exports.quicksilvertestnet = exports.quasartestnet = exports.pryzmtestnet = exports.pockettestnet = exports.planqtestnet = exports.persistencetestnet2 = exports.persistencetestnet = exports.permtestnet = exports.pelltestnet = exports.osmosistestnet = exports.okp4testnet = exports.nyxtestnet = exports.nomictestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.nilliontestnet = exports.nibirutestnet3 = exports.nibirutestnet2 = exports.nibirutestnet = exports.neutrontestnet = exports.neuratestnet = exports.migalootestnet = exports.metanovaversetestnet = exports.marstestnet = exports.mantrachaintestnet2 = exports.mantrachaintestnet = exports.manifesttestnet = exports.lumenxtestnet = exports.likecointestnet = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = exports.kimanetworktestnet = exports.kichaintestnet = exports.junotestnet = exports.jackaltestnet2 = exports.jackaltestnet = exports.iopntestnet = exports.int3facetestnet = void 0;
|
|
28
|
+
exports.zigchaintestnet = exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet2 = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.titannettestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = exports.symphonytestnet3 = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = void 0;
|
|
29
29
|
exports.airchainstestnet = __importStar(require("./airchainstestnet"));
|
|
30
|
+
exports.airchainsvaranasitestnet = __importStar(require("./airchainsvaranasitestnet"));
|
|
30
31
|
exports.akashtestnet = __importStar(require("./akashtestnet"));
|
|
31
32
|
exports.alloratestnet = __importStar(require("./alloratestnet"));
|
|
32
33
|
exports.archwaytestnet = __importStar(require("./archwaytestnet"));
|
|
@@ -29,8 +29,8 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
git_repo: 'https://github.com/thesixnetwork/six-protocol',
|
|
32
|
-
recommended_version: 'v3.
|
|
33
|
-
compatible_versions: ['v3.
|
|
32
|
+
recommended_version: 'v3.3.0',
|
|
33
|
+
compatible_versions: ['v3.3.0'],
|
|
34
34
|
consensus: {
|
|
35
35
|
type: 'tendermint',
|
|
36
36
|
version: '0.34'
|