chain-registry 1.69.69 → 1.69.71
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/aaronetwork/assets.js +9 -1
- package/esm/mainnet/aaronetwork/chain.js +49 -10
- package/esm/mainnet/aaronetwork/ibc.js +30 -0
- package/esm/mainnet/aaronetwork/index.js +2 -0
- package/esm/mainnet/dungeon/chain.js +8 -0
- package/esm/mainnet/elys/assets.js +1 -1
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/osmosis/assets.js +41 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/stride/chain.js +8 -0
- package/mainnet/aaronetwork/assets.js +9 -1
- package/mainnet/aaronetwork/chain.js +49 -10
- package/mainnet/aaronetwork/ibc.d.ts +3 -0
- package/mainnet/aaronetwork/ibc.js +32 -0
- package/mainnet/aaronetwork/index.d.ts +1 -0
- package/mainnet/aaronetwork/index.js +3 -1
- package/mainnet/dungeon/chain.js +8 -0
- package/mainnet/elys/assets.js +1 -1
- package/mainnet/ibc.js +2 -0
- package/mainnet/osmosis/assets.js +41 -0
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/stride/chain.js +8 -0
- package/package.json +4 -4
|
@@ -20,8 +20,16 @@ const info = {
|
|
|
20
20
|
},
|
|
21
21
|
socials: {
|
|
22
22
|
website: 'https://aaronetwork.xyz',
|
|
23
|
-
twitter: 'https://x.com/aaronetwork'
|
|
23
|
+
twitter: 'https://x.com/aaronetwork',
|
|
24
|
+
discord: 'https://discord.gg/HezQu22zxZ'
|
|
24
25
|
},
|
|
26
|
+
keywords: [
|
|
27
|
+
'social',
|
|
28
|
+
'chat',
|
|
29
|
+
'reputation',
|
|
30
|
+
'score',
|
|
31
|
+
'messaging'
|
|
32
|
+
],
|
|
25
33
|
images: [{
|
|
26
34
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png',
|
|
27
35
|
theme: {
|
|
@@ -21,35 +21,74 @@ const info = {
|
|
|
21
21
|
staking: {
|
|
22
22
|
staking_tokens: [{
|
|
23
23
|
denom: 'uaaron'
|
|
24
|
-
}]
|
|
24
|
+
}],
|
|
25
|
+
lock_duration: {
|
|
26
|
+
time: '86400s'
|
|
27
|
+
}
|
|
25
28
|
},
|
|
26
29
|
codebase: {},
|
|
27
30
|
apis: {
|
|
28
|
-
rpc: [
|
|
31
|
+
rpc: [
|
|
32
|
+
{
|
|
29
33
|
address: 'https://mainnet-rpc.aaronetwork.xyz',
|
|
30
34
|
provider: 'Aaron Network Foundation'
|
|
31
|
-
},
|
|
35
|
+
},
|
|
36
|
+
{
|
|
32
37
|
address: 'https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
33
38
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
34
|
-
}
|
|
35
|
-
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
address: 'https://aaron.rpc.nodeshub.online',
|
|
42
|
+
provider: 'NodesHub'
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
rest: [
|
|
46
|
+
{
|
|
36
47
|
address: 'https://mainnet-api.aaronetwork.xyz',
|
|
37
48
|
provider: 'Aaron Network Foundation'
|
|
38
|
-
},
|
|
49
|
+
},
|
|
50
|
+
{
|
|
39
51
|
address: 'https://aaronetwork_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
40
52
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
41
|
-
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
address: 'https://aaron.api.nodeshub.online',
|
|
56
|
+
provider: 'NodesHub'
|
|
57
|
+
}
|
|
58
|
+
]
|
|
42
59
|
},
|
|
43
|
-
explorers: [
|
|
60
|
+
explorers: [
|
|
61
|
+
{
|
|
62
|
+
kind: 'Ping.pub',
|
|
63
|
+
url: 'https://ping.pub/Aaron%20Network',
|
|
64
|
+
tx_page: 'https://ping.pub/Aaron%20Network/tx/${txHash}',
|
|
65
|
+
account_page: 'https://ping.pub/Aaron%20Network/account/${accountAddress}'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
44
68
|
kind: 'Aaron Network',
|
|
45
69
|
url: 'https://explorer.aaronetwork.xyz',
|
|
46
70
|
tx_page: 'https://explorer.aaronetwork.xyz/hash/${txHash}',
|
|
47
71
|
account_page: 'https://explorer.aaronetwork.xyz/address/${accountAddress}'
|
|
48
|
-
},
|
|
72
|
+
},
|
|
73
|
+
{
|
|
49
74
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
50
75
|
url: 'https://explorer.whenmoonwhenlambo.money/aaronetwork',
|
|
51
76
|
tx_page: 'https://explorer.whenmoonwhenlambo.money/aaronetwork/tx/${txHash}',
|
|
52
77
|
account_page: 'https://explorer.whenmoonwhenlambo.money/aaronetwork/account/${accountAddress}'
|
|
53
|
-
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
kind: 'NodesHub',
|
|
81
|
+
url: 'https://explorer.nodeshub.online/aaron',
|
|
82
|
+
tx_page: 'https://explorer.nodeshub.online/aaron/tx/${txHash}',
|
|
83
|
+
account_page: 'https://explorer.nodeshub.online/aaron/${accountAddress}'
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
keywords: [
|
|
87
|
+
'social',
|
|
88
|
+
'chat',
|
|
89
|
+
'reputation',
|
|
90
|
+
'score',
|
|
91
|
+
'messaging'
|
|
92
|
+
]
|
|
54
93
|
};
|
|
55
94
|
export default info;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'aaronetwork',
|
|
5
|
+
client_id: '07-tendermint-9',
|
|
6
|
+
connection_id: 'connection-7'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'osmosis',
|
|
10
|
+
client_id: '07-tendermint-9',
|
|
11
|
+
connection_id: 'connection-2842'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-6',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-91254',
|
|
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;
|
|
@@ -31,6 +31,10 @@ const info = {
|
|
|
31
31
|
{
|
|
32
32
|
address: 'https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
33
33
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
address: 'https://dungeon-rpc.ibs;team',
|
|
37
|
+
provider: 'Inter Blockchain Services'
|
|
34
38
|
}
|
|
35
39
|
],
|
|
36
40
|
rest: [
|
|
@@ -49,6 +53,10 @@ const info = {
|
|
|
49
53
|
{
|
|
50
54
|
address: 'https://dungeon_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
51
55
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'https://dungeon-api.ibs;team',
|
|
59
|
+
provider: 'Inter Blockchain Services'
|
|
52
60
|
}
|
|
53
61
|
],
|
|
54
62
|
grpc: [{
|
|
@@ -28,7 +28,7 @@ const info = {
|
|
|
28
28
|
logo_URIs: {
|
|
29
29
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.png'
|
|
30
30
|
},
|
|
31
|
-
coingecko_id: 'elys',
|
|
31
|
+
coingecko_id: 'elys-network',
|
|
32
32
|
images: [{
|
|
33
33
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.png'
|
|
34
34
|
}],
|
package/esm/mainnet/ibc.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _ethereum from './ethereum';
|
|
2
2
|
import * as _solana from './solana';
|
|
3
|
+
import * as _aaronetwork from './aaronetwork';
|
|
3
4
|
import * as _acrechain from './acrechain';
|
|
4
5
|
import * as _agoric from './agoric';
|
|
5
6
|
import * as _aioz from './aioz';
|
|
@@ -149,6 +150,7 @@ import * as _zenrock from './zenrock';
|
|
|
149
150
|
const ibc = [
|
|
150
151
|
..._ethereum.ibc,
|
|
151
152
|
..._solana.ibc,
|
|
153
|
+
..._aaronetwork.ibc,
|
|
152
154
|
..._acrechain.ibc,
|
|
153
155
|
..._agoric.ibc,
|
|
154
156
|
..._aioz.ibc,
|
|
@@ -22131,6 +22131,47 @@ const info = {
|
|
|
22131
22131
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.svg',
|
|
22132
22132
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.png'
|
|
22133
22133
|
}]
|
|
22134
|
+
},
|
|
22135
|
+
{
|
|
22136
|
+
description: 'Aaron Network is an innovative platform for secure and private messaging, integrated into the blockchain ecosystem. We also offer a unique address reputation scoring system, ensuring that every user can interact with others confidently.',
|
|
22137
|
+
denom_units: [{
|
|
22138
|
+
denom: 'ibc/BE2B0A9FC3A122C92883D3258098D7C6BB02F8F887E8A0BDE58609E7CA2649B2',
|
|
22139
|
+
exponent: 0,
|
|
22140
|
+
aliases: ['uaaron']
|
|
22141
|
+
}, {
|
|
22142
|
+
denom: 'AARON',
|
|
22143
|
+
exponent: 6
|
|
22144
|
+
}],
|
|
22145
|
+
type_asset: 'ics20',
|
|
22146
|
+
base: 'ibc/BE2B0A9FC3A122C92883D3258098D7C6BB02F8F887E8A0BDE58609E7CA2649B2',
|
|
22147
|
+
name: 'Aaron Network',
|
|
22148
|
+
display: 'AARON',
|
|
22149
|
+
symbol: 'AARON',
|
|
22150
|
+
traces: [{
|
|
22151
|
+
type: 'ibc',
|
|
22152
|
+
counterparty: {
|
|
22153
|
+
chain_name: 'aaronetwork',
|
|
22154
|
+
base_denom: 'uaaron',
|
|
22155
|
+
channel_id: 'channel-6'
|
|
22156
|
+
},
|
|
22157
|
+
chain: {
|
|
22158
|
+
channel_id: 'channel-91254',
|
|
22159
|
+
path: 'transfer/channel-91254/uaaron'
|
|
22160
|
+
}
|
|
22161
|
+
}],
|
|
22162
|
+
logo_URIs: {
|
|
22163
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png'
|
|
22164
|
+
},
|
|
22165
|
+
images: [{
|
|
22166
|
+
image_sync: {
|
|
22167
|
+
chain_name: 'aaronetwork',
|
|
22168
|
+
base_denom: 'uaaron'
|
|
22169
|
+
},
|
|
22170
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png',
|
|
22171
|
+
theme: {
|
|
22172
|
+
circle: false
|
|
22173
|
+
}
|
|
22174
|
+
}]
|
|
22134
22175
|
}
|
|
22135
22176
|
]
|
|
22136
22177
|
};
|
|
@@ -29,6 +29,35 @@ const info = [
|
|
|
29
29
|
}
|
|
30
30
|
}]
|
|
31
31
|
},
|
|
32
|
+
{
|
|
33
|
+
$schema: '../ibc_data.schema.json',
|
|
34
|
+
chain_1: {
|
|
35
|
+
chain_name: 'aaronetwork',
|
|
36
|
+
client_id: '07-tendermint-9',
|
|
37
|
+
connection_id: 'connection-7'
|
|
38
|
+
},
|
|
39
|
+
chain_2: {
|
|
40
|
+
chain_name: 'osmosis',
|
|
41
|
+
client_id: '07-tendermint-9',
|
|
42
|
+
connection_id: 'connection-2842'
|
|
43
|
+
},
|
|
44
|
+
channels: [{
|
|
45
|
+
chain_1: {
|
|
46
|
+
channel_id: 'channel-6',
|
|
47
|
+
port_id: 'transfer'
|
|
48
|
+
},
|
|
49
|
+
chain_2: {
|
|
50
|
+
channel_id: 'channel-91254',
|
|
51
|
+
port_id: 'transfer'
|
|
52
|
+
},
|
|
53
|
+
ordering: 'unordered',
|
|
54
|
+
version: 'ics20-1',
|
|
55
|
+
tags: {
|
|
56
|
+
status: 'live',
|
|
57
|
+
preferred: true
|
|
58
|
+
}
|
|
59
|
+
}]
|
|
60
|
+
},
|
|
32
61
|
{
|
|
33
62
|
$schema: '../ibc_data.schema.json',
|
|
34
63
|
chain_1: {
|
|
@@ -197,6 +197,10 @@ const info = {
|
|
|
197
197
|
{
|
|
198
198
|
address: 'https://public.stakewolle.com/cosmos/stride/rpc',
|
|
199
199
|
provider: 'Stakewolle'
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
address: 'https://stride-rpc.ibs.team',
|
|
203
|
+
provider: 'Inter Blockchain Services'
|
|
200
204
|
}
|
|
201
205
|
],
|
|
202
206
|
rest: [
|
|
@@ -263,6 +267,10 @@ const info = {
|
|
|
263
267
|
{
|
|
264
268
|
address: 'https://public.stakewolle.com/cosmos/stride/rest',
|
|
265
269
|
provider: 'Stakewolle'
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
address: 'https://stride-api.ibs.team',
|
|
273
|
+
provider: 'Inter Blockchain Services'
|
|
266
274
|
}
|
|
267
275
|
],
|
|
268
276
|
grpc: [
|
|
@@ -22,8 +22,16 @@ const info = {
|
|
|
22
22
|
},
|
|
23
23
|
socials: {
|
|
24
24
|
website: 'https://aaronetwork.xyz',
|
|
25
|
-
twitter: 'https://x.com/aaronetwork'
|
|
25
|
+
twitter: 'https://x.com/aaronetwork',
|
|
26
|
+
discord: 'https://discord.gg/HezQu22zxZ'
|
|
26
27
|
},
|
|
28
|
+
keywords: [
|
|
29
|
+
'social',
|
|
30
|
+
'chat',
|
|
31
|
+
'reputation',
|
|
32
|
+
'score',
|
|
33
|
+
'messaging'
|
|
34
|
+
],
|
|
27
35
|
images: [{
|
|
28
36
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png',
|
|
29
37
|
theme: {
|
|
@@ -23,35 +23,74 @@ const info = {
|
|
|
23
23
|
staking: {
|
|
24
24
|
staking_tokens: [{
|
|
25
25
|
denom: 'uaaron'
|
|
26
|
-
}]
|
|
26
|
+
}],
|
|
27
|
+
lock_duration: {
|
|
28
|
+
time: '86400s'
|
|
29
|
+
}
|
|
27
30
|
},
|
|
28
31
|
codebase: {},
|
|
29
32
|
apis: {
|
|
30
|
-
rpc: [
|
|
33
|
+
rpc: [
|
|
34
|
+
{
|
|
31
35
|
address: 'https://mainnet-rpc.aaronetwork.xyz',
|
|
32
36
|
provider: 'Aaron Network Foundation'
|
|
33
|
-
},
|
|
37
|
+
},
|
|
38
|
+
{
|
|
34
39
|
address: 'https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
35
40
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
36
|
-
}
|
|
37
|
-
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
address: 'https://aaron.rpc.nodeshub.online',
|
|
44
|
+
provider: 'NodesHub'
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
rest: [
|
|
48
|
+
{
|
|
38
49
|
address: 'https://mainnet-api.aaronetwork.xyz',
|
|
39
50
|
provider: 'Aaron Network Foundation'
|
|
40
|
-
},
|
|
51
|
+
},
|
|
52
|
+
{
|
|
41
53
|
address: 'https://aaronetwork_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
42
54
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
43
|
-
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
address: 'https://aaron.api.nodeshub.online',
|
|
58
|
+
provider: 'NodesHub'
|
|
59
|
+
}
|
|
60
|
+
]
|
|
44
61
|
},
|
|
45
|
-
explorers: [
|
|
62
|
+
explorers: [
|
|
63
|
+
{
|
|
64
|
+
kind: 'Ping.pub',
|
|
65
|
+
url: 'https://ping.pub/Aaron%20Network',
|
|
66
|
+
tx_page: 'https://ping.pub/Aaron%20Network/tx/${txHash}',
|
|
67
|
+
account_page: 'https://ping.pub/Aaron%20Network/account/${accountAddress}'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
46
70
|
kind: 'Aaron Network',
|
|
47
71
|
url: 'https://explorer.aaronetwork.xyz',
|
|
48
72
|
tx_page: 'https://explorer.aaronetwork.xyz/hash/${txHash}',
|
|
49
73
|
account_page: 'https://explorer.aaronetwork.xyz/address/${accountAddress}'
|
|
50
|
-
},
|
|
74
|
+
},
|
|
75
|
+
{
|
|
51
76
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
52
77
|
url: 'https://explorer.whenmoonwhenlambo.money/aaronetwork',
|
|
53
78
|
tx_page: 'https://explorer.whenmoonwhenlambo.money/aaronetwork/tx/${txHash}',
|
|
54
79
|
account_page: 'https://explorer.whenmoonwhenlambo.money/aaronetwork/account/${accountAddress}'
|
|
55
|
-
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
kind: 'NodesHub',
|
|
83
|
+
url: 'https://explorer.nodeshub.online/aaron',
|
|
84
|
+
tx_page: 'https://explorer.nodeshub.online/aaron/tx/${txHash}',
|
|
85
|
+
account_page: 'https://explorer.nodeshub.online/aaron/${accountAddress}'
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
keywords: [
|
|
89
|
+
'social',
|
|
90
|
+
'chat',
|
|
91
|
+
'reputation',
|
|
92
|
+
'score',
|
|
93
|
+
'messaging'
|
|
94
|
+
]
|
|
56
95
|
};
|
|
57
96
|
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: 'aaronetwork',
|
|
7
|
+
client_id: '07-tendermint-9',
|
|
8
|
+
connection_id: 'connection-7'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'osmosis',
|
|
12
|
+
client_id: '07-tendermint-9',
|
|
13
|
+
connection_id: 'connection-2842'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-6',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-91254',
|
|
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;
|
|
@@ -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/dungeon/chain.js
CHANGED
|
@@ -33,6 +33,10 @@ const info = {
|
|
|
33
33
|
{
|
|
34
34
|
address: 'https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
35
35
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
address: 'https://dungeon-rpc.ibs;team',
|
|
39
|
+
provider: 'Inter Blockchain Services'
|
|
36
40
|
}
|
|
37
41
|
],
|
|
38
42
|
rest: [
|
|
@@ -51,6 +55,10 @@ const info = {
|
|
|
51
55
|
{
|
|
52
56
|
address: 'https://dungeon_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
53
57
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'https://dungeon-api.ibs;team',
|
|
61
|
+
provider: 'Inter Blockchain Services'
|
|
54
62
|
}
|
|
55
63
|
],
|
|
56
64
|
grpc: [{
|
package/mainnet/elys/assets.js
CHANGED
|
@@ -30,7 +30,7 @@ const info = {
|
|
|
30
30
|
logo_URIs: {
|
|
31
31
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.png'
|
|
32
32
|
},
|
|
33
|
-
coingecko_id: 'elys',
|
|
33
|
+
coingecko_id: 'elys-network',
|
|
34
34
|
images: [{
|
|
35
35
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.png'
|
|
36
36
|
}],
|
package/mainnet/ibc.js
CHANGED
|
@@ -25,6 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _ethereum = __importStar(require("./ethereum"));
|
|
27
27
|
const _solana = __importStar(require("./solana"));
|
|
28
|
+
const _aaronetwork = __importStar(require("./aaronetwork"));
|
|
28
29
|
const _acrechain = __importStar(require("./acrechain"));
|
|
29
30
|
const _agoric = __importStar(require("./agoric"));
|
|
30
31
|
const _aioz = __importStar(require("./aioz"));
|
|
@@ -174,6 +175,7 @@ const _zenrock = __importStar(require("./zenrock"));
|
|
|
174
175
|
const ibc = [
|
|
175
176
|
..._ethereum.ibc,
|
|
176
177
|
..._solana.ibc,
|
|
178
|
+
..._aaronetwork.ibc,
|
|
177
179
|
..._acrechain.ibc,
|
|
178
180
|
..._agoric.ibc,
|
|
179
181
|
..._aioz.ibc,
|
|
@@ -22133,6 +22133,47 @@ const info = {
|
|
|
22133
22133
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.svg',
|
|
22134
22134
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.png'
|
|
22135
22135
|
}]
|
|
22136
|
+
},
|
|
22137
|
+
{
|
|
22138
|
+
description: 'Aaron Network is an innovative platform for secure and private messaging, integrated into the blockchain ecosystem. We also offer a unique address reputation scoring system, ensuring that every user can interact with others confidently.',
|
|
22139
|
+
denom_units: [{
|
|
22140
|
+
denom: 'ibc/BE2B0A9FC3A122C92883D3258098D7C6BB02F8F887E8A0BDE58609E7CA2649B2',
|
|
22141
|
+
exponent: 0,
|
|
22142
|
+
aliases: ['uaaron']
|
|
22143
|
+
}, {
|
|
22144
|
+
denom: 'AARON',
|
|
22145
|
+
exponent: 6
|
|
22146
|
+
}],
|
|
22147
|
+
type_asset: 'ics20',
|
|
22148
|
+
base: 'ibc/BE2B0A9FC3A122C92883D3258098D7C6BB02F8F887E8A0BDE58609E7CA2649B2',
|
|
22149
|
+
name: 'Aaron Network',
|
|
22150
|
+
display: 'AARON',
|
|
22151
|
+
symbol: 'AARON',
|
|
22152
|
+
traces: [{
|
|
22153
|
+
type: 'ibc',
|
|
22154
|
+
counterparty: {
|
|
22155
|
+
chain_name: 'aaronetwork',
|
|
22156
|
+
base_denom: 'uaaron',
|
|
22157
|
+
channel_id: 'channel-6'
|
|
22158
|
+
},
|
|
22159
|
+
chain: {
|
|
22160
|
+
channel_id: 'channel-91254',
|
|
22161
|
+
path: 'transfer/channel-91254/uaaron'
|
|
22162
|
+
}
|
|
22163
|
+
}],
|
|
22164
|
+
logo_URIs: {
|
|
22165
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png'
|
|
22166
|
+
},
|
|
22167
|
+
images: [{
|
|
22168
|
+
image_sync: {
|
|
22169
|
+
chain_name: 'aaronetwork',
|
|
22170
|
+
base_denom: 'uaaron'
|
|
22171
|
+
},
|
|
22172
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png',
|
|
22173
|
+
theme: {
|
|
22174
|
+
circle: false
|
|
22175
|
+
}
|
|
22176
|
+
}]
|
|
22136
22177
|
}
|
|
22137
22178
|
]
|
|
22138
22179
|
};
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -31,6 +31,35 @@ const info = [
|
|
|
31
31
|
}
|
|
32
32
|
}]
|
|
33
33
|
},
|
|
34
|
+
{
|
|
35
|
+
$schema: '../ibc_data.schema.json',
|
|
36
|
+
chain_1: {
|
|
37
|
+
chain_name: 'aaronetwork',
|
|
38
|
+
client_id: '07-tendermint-9',
|
|
39
|
+
connection_id: 'connection-7'
|
|
40
|
+
},
|
|
41
|
+
chain_2: {
|
|
42
|
+
chain_name: 'osmosis',
|
|
43
|
+
client_id: '07-tendermint-9',
|
|
44
|
+
connection_id: 'connection-2842'
|
|
45
|
+
},
|
|
46
|
+
channels: [{
|
|
47
|
+
chain_1: {
|
|
48
|
+
channel_id: 'channel-6',
|
|
49
|
+
port_id: 'transfer'
|
|
50
|
+
},
|
|
51
|
+
chain_2: {
|
|
52
|
+
channel_id: 'channel-91254',
|
|
53
|
+
port_id: 'transfer'
|
|
54
|
+
},
|
|
55
|
+
ordering: 'unordered',
|
|
56
|
+
version: 'ics20-1',
|
|
57
|
+
tags: {
|
|
58
|
+
status: 'live',
|
|
59
|
+
preferred: true
|
|
60
|
+
}
|
|
61
|
+
}]
|
|
62
|
+
},
|
|
34
63
|
{
|
|
35
64
|
$schema: '../ibc_data.schema.json',
|
|
36
65
|
chain_1: {
|
package/mainnet/stride/chain.js
CHANGED
|
@@ -199,6 +199,10 @@ const info = {
|
|
|
199
199
|
{
|
|
200
200
|
address: 'https://public.stakewolle.com/cosmos/stride/rpc',
|
|
201
201
|
provider: 'Stakewolle'
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
address: 'https://stride-rpc.ibs.team',
|
|
205
|
+
provider: 'Inter Blockchain Services'
|
|
202
206
|
}
|
|
203
207
|
],
|
|
204
208
|
rest: [
|
|
@@ -265,6 +269,10 @@ const info = {
|
|
|
265
269
|
{
|
|
266
270
|
address: 'https://public.stakewolle.com/cosmos/stride/rest',
|
|
267
271
|
provider: 'Stakewolle'
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
address: 'https://stride-api.ibs.team',
|
|
275
|
+
provider: 'Inter Blockchain Services'
|
|
268
276
|
}
|
|
269
277
|
],
|
|
270
278
|
grpc: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.71",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/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.41",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.41"
|
|
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": "e02d1731945dc7695be2a9590c567b4864615be9"
|
|
47
47
|
}
|