chain-registry 1.69.200 → 1.69.202
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/agoric/chain.js +6 -0
- package/esm/mainnet/arkeo/chain.js +35 -8
- package/esm/mainnet/dymension/chain.js +1 -0
- package/esm/mainnet/elys/chain.js +7 -7
- package/esm/mainnet/milkyway/chain.js +6 -1
- package/esm/mainnet/omniflixhub/assets.js +48 -0
- package/esm/mainnet/planq/assets.js +24 -0
- package/esm/mainnet/secretnetwork/chain.js +6 -0
- package/esm/noncosmos/forex/assets.js +17 -3
- package/mainnet/agoric/chain.js +6 -0
- package/mainnet/arkeo/chain.js +35 -8
- package/mainnet/dymension/chain.js +1 -0
- package/mainnet/elys/chain.js +7 -7
- package/mainnet/milkyway/chain.js +6 -1
- package/mainnet/omniflixhub/assets.js +48 -0
- package/mainnet/planq/assets.js +24 -0
- package/mainnet/secretnetwork/chain.js +6 -0
- package/noncosmos/forex/assets.js +17 -3
- package/package.json +4 -4
|
@@ -240,6 +240,12 @@ const info = {
|
|
|
240
240
|
url: 'https://explorer.stavr.tech/Agoric',
|
|
241
241
|
tx_page: 'https://explorer.stavr.tech/Agoric/tx/${txHash}',
|
|
242
242
|
account_page: 'https://explorer.stavr.tech/Agoric/account/${accountAddress}'
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
kind: 'Valopers',
|
|
246
|
+
url: 'https://agoric.valopers.com/',
|
|
247
|
+
tx_page: 'https://agoric.valopers.com/transactions/${txHash}',
|
|
248
|
+
account_page: 'https://agoric.valopers.com/account/${accountAddress}'
|
|
243
249
|
}
|
|
244
250
|
],
|
|
245
251
|
images: [{
|
|
@@ -45,32 +45,59 @@ const info = {
|
|
|
45
45
|
}
|
|
46
46
|
}],
|
|
47
47
|
apis: {
|
|
48
|
-
rpc: [
|
|
48
|
+
rpc: [
|
|
49
|
+
{
|
|
49
50
|
address: 'https://rpc-seed.arkeo.network',
|
|
50
51
|
provider: 'Arkeo'
|
|
51
|
-
},
|
|
52
|
+
},
|
|
53
|
+
{
|
|
52
54
|
address: 'https://arkeo-mainnet-rpc.autostake.com:443',
|
|
53
55
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'https://rpc.arkeo.roomit.xyz',
|
|
59
|
+
provider: 'Roomit'
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
rest: [
|
|
63
|
+
{
|
|
56
64
|
address: 'https://rest-seed.arkeo.network',
|
|
57
65
|
provider: 'Arkeo'
|
|
58
|
-
},
|
|
66
|
+
},
|
|
67
|
+
{
|
|
59
68
|
address: 'https://arkeo-mainnet-lcd.autostake.com:443',
|
|
60
69
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'https://api.arkeo.roomit.xyz',
|
|
73
|
+
provider: 'Roomit'
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
grpc: [{
|
|
77
|
+
address: 'grpc.arkeo.roomit.xyz:8443',
|
|
78
|
+
provider: 'Roomit'
|
|
61
79
|
}]
|
|
62
80
|
},
|
|
63
|
-
explorers: [
|
|
81
|
+
explorers: [
|
|
82
|
+
{
|
|
64
83
|
kind: 'stakevillage',
|
|
65
84
|
url: 'https://exp.stakevillage.net/arkeo-mainnet',
|
|
66
85
|
tx_page: 'https://exp.stakevillage.net/arkeo-mainnet/tx/${txHash}',
|
|
67
86
|
account_page: 'https://exp.stakevillage.net/arkeo-mainnet/account/${accountAddress}'
|
|
68
|
-
},
|
|
87
|
+
},
|
|
88
|
+
{
|
|
69
89
|
kind: 'Valopers',
|
|
70
90
|
url: 'https://arkeo.valopers.com/',
|
|
71
91
|
tx_page: 'https://arkeo.valopers.com/transactions/${txHash}',
|
|
72
92
|
account_page: 'https://arkeo.valopers.com/account/${accountAddress}'
|
|
73
|
-
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
kind: 'Roomit',
|
|
96
|
+
url: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet',
|
|
97
|
+
tx_page: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/transactions/${txHash}',
|
|
98
|
+
account_page: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/account/${accountAddress}'
|
|
99
|
+
}
|
|
100
|
+
],
|
|
74
101
|
keywords: [
|
|
75
102
|
'validator',
|
|
76
103
|
'node',
|
|
@@ -146,12 +146,12 @@ const info = {
|
|
|
146
146
|
provider: 'Node39'
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
|
-
address: 'https://elys.rpc.vnodesv.net:443',
|
|
150
|
-
provider: 'vNodes[V]
|
|
149
|
+
address: 'https://elys.rpc.mtl.vnodesv.net:443',
|
|
150
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
address: 'https://elys.rpc.fr.vnodesv.net:443',
|
|
154
|
-
provider: 'vNodes[V]
|
|
154
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
address: 'https://elys-rpc.kleomedes.network/',
|
|
@@ -236,12 +236,12 @@ const info = {
|
|
|
236
236
|
provider: 'Node39'
|
|
237
237
|
},
|
|
238
238
|
{
|
|
239
|
-
address: 'https://elys.rest.vnodesv.net:443',
|
|
240
|
-
provider: 'vNodes[V]
|
|
239
|
+
address: 'https://elys.rest.mtl.vnodesv.net:443',
|
|
240
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
241
241
|
},
|
|
242
242
|
{
|
|
243
243
|
address: 'https://elys.rest.fr.vnodesv.net:443',
|
|
244
|
-
provider: 'vNodes[V]
|
|
244
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
247
|
address: 'https://elys-api.kleomedes.network/',
|
|
@@ -315,7 +315,7 @@ const info = {
|
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
address: 'https://elys.grpc.fr.vnodesv.net:443',
|
|
318
|
-
provider: 'vNodes[V]
|
|
318
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
319
319
|
}
|
|
320
320
|
]
|
|
321
321
|
},
|
|
@@ -154,7 +154,12 @@ const info = {
|
|
|
154
154
|
provider: 'MilkyWay Labs'
|
|
155
155
|
}]
|
|
156
156
|
},
|
|
157
|
-
explorers: [
|
|
157
|
+
explorers: [{
|
|
158
|
+
kind: 'Valopers',
|
|
159
|
+
url: 'https://milkyway.valopers.com/',
|
|
160
|
+
tx_page: 'https://milkyway.valopers.com/transactions/${txHash}',
|
|
161
|
+
account_page: 'https://milkyway.valopers.com/account/${accountAddress}'
|
|
162
|
+
}],
|
|
158
163
|
keywords: ['liquid staking', 'restaking']
|
|
159
164
|
};
|
|
160
165
|
export default info;
|
|
@@ -322,6 +322,54 @@ const info = {
|
|
|
322
322
|
}
|
|
323
323
|
}],
|
|
324
324
|
type_asset: 'sdk.coin'
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
description: 'Rewards token designed to incentivize participation in Coreum Community DAO',
|
|
328
|
+
extended_description: 'The Coreum Community DAO (CCD) token incentivizes and rewards members for their contributions and support in community growth and educational initiatives.',
|
|
329
|
+
denom_units: [{
|
|
330
|
+
denom: 'ibc/1F8E19CD32FC6B2DBA825E7C3B370004BF5041BAB1099FC1BEBD6054FD5E8D08',
|
|
331
|
+
exponent: 0,
|
|
332
|
+
aliases: ['uccd-core1hnwd78wappjmgygyzr9mwspm7uzytrkcp9pfvv']
|
|
333
|
+
}, {
|
|
334
|
+
denom: 'ccd',
|
|
335
|
+
exponent: 6
|
|
336
|
+
}],
|
|
337
|
+
type_asset: 'ics20',
|
|
338
|
+
base: 'ibc/1F8E19CD32FC6B2DBA825E7C3B370004BF5041BAB1099FC1BEBD6054FD5E8D08',
|
|
339
|
+
name: 'Coreum Community DAO Token',
|
|
340
|
+
display: 'ccd',
|
|
341
|
+
symbol: 'CCD',
|
|
342
|
+
traces: [{
|
|
343
|
+
type: 'ibc',
|
|
344
|
+
counterparty: {
|
|
345
|
+
chain_name: 'osmosis',
|
|
346
|
+
base_denom: 'ibc/BA368CD4ED32975C333F69DA8FE0AB482D2E0F3C04227053EEB9B597A6789F6E',
|
|
347
|
+
channel_id: 'channel-199'
|
|
348
|
+
},
|
|
349
|
+
chain: {
|
|
350
|
+
channel_id: 'channel-1',
|
|
351
|
+
path: 'transfer/channel-1/transfer/channel-2188/uccd-core1hnwd78wappjmgygyzr9mwspm7uzytrkcp9pfvv'
|
|
352
|
+
}
|
|
353
|
+
}],
|
|
354
|
+
logo_URIs: {
|
|
355
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.png',
|
|
356
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.svg'
|
|
357
|
+
},
|
|
358
|
+
images: [{
|
|
359
|
+
image_sync: {
|
|
360
|
+
chain_name: 'coreum',
|
|
361
|
+
base_denom: 'uccd-core1hnwd78wappjmgygyzr9mwspm7uzytrkcp9pfvv'
|
|
362
|
+
},
|
|
363
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.png',
|
|
364
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.svg',
|
|
365
|
+
theme: {
|
|
366
|
+
primary_color_hex: '#a50dda'
|
|
367
|
+
}
|
|
368
|
+
}],
|
|
369
|
+
socials: {
|
|
370
|
+
website: 'https://coreumcommunitydao.com/',
|
|
371
|
+
twitter: 'https://x.com/Cor3_Community'
|
|
372
|
+
}
|
|
325
373
|
}
|
|
326
374
|
]
|
|
327
375
|
};
|
|
@@ -183,6 +183,14 @@ const info = {
|
|
|
183
183
|
name: 'Astonic USD',
|
|
184
184
|
display: 'ausd',
|
|
185
185
|
symbol: 'aUSD',
|
|
186
|
+
traces: [{
|
|
187
|
+
type: 'synthetic',
|
|
188
|
+
counterparty: {
|
|
189
|
+
chain_name: 'forex',
|
|
190
|
+
base_denom: 'USD'
|
|
191
|
+
},
|
|
192
|
+
provider: 'Astonic'
|
|
193
|
+
}],
|
|
186
194
|
logo_URIs: {
|
|
187
195
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/ausd.png'
|
|
188
196
|
},
|
|
@@ -209,6 +217,14 @@ const info = {
|
|
|
209
217
|
name: 'Astonic EUR',
|
|
210
218
|
display: 'aeur',
|
|
211
219
|
symbol: 'aEUR',
|
|
220
|
+
traces: [{
|
|
221
|
+
type: 'synthetic',
|
|
222
|
+
counterparty: {
|
|
223
|
+
chain_name: 'forex',
|
|
224
|
+
base_denom: 'EUR'
|
|
225
|
+
},
|
|
226
|
+
provider: 'Astonic'
|
|
227
|
+
}],
|
|
212
228
|
logo_URIs: {
|
|
213
229
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/aeur.png'
|
|
214
230
|
},
|
|
@@ -235,6 +251,14 @@ const info = {
|
|
|
235
251
|
name: 'Astonic BRL',
|
|
236
252
|
display: 'abrl',
|
|
237
253
|
symbol: 'aBRL',
|
|
254
|
+
traces: [{
|
|
255
|
+
type: 'synthetic',
|
|
256
|
+
counterparty: {
|
|
257
|
+
chain_name: 'forex',
|
|
258
|
+
base_denom: 'BRL'
|
|
259
|
+
},
|
|
260
|
+
provider: 'Astonic'
|
|
261
|
+
}],
|
|
238
262
|
logo_URIs: {
|
|
239
263
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/abrl.png'
|
|
240
264
|
},
|
|
@@ -151,6 +151,12 @@ const info = {
|
|
|
151
151
|
url: 'https://mainnet.whispernode.com/secret',
|
|
152
152
|
tx_page: 'https://mainnet.whispernode.com/secret/tx/${txHash}',
|
|
153
153
|
account_page: 'https://mainnet.whispernode.com/secret/account/${accountAddress}'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
kind: 'Valopers',
|
|
157
|
+
url: 'https://secret.valopers.com/',
|
|
158
|
+
tx_page: 'https://secret.valopers.com/transactions/${txHash}',
|
|
159
|
+
account_page: 'https://secret.valopers.com/account/${accountAddress}'
|
|
154
160
|
}
|
|
155
161
|
],
|
|
156
162
|
images: [{
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../../assetlist.schema.json',
|
|
3
3
|
chain_name: 'forex',
|
|
4
|
-
assets: [
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
5
6
|
type_asset: 'unknown',
|
|
6
7
|
denom_units: [{
|
|
7
8
|
denom: 'USD',
|
|
@@ -11,7 +12,8 @@ const info = {
|
|
|
11
12
|
display: 'USD',
|
|
12
13
|
name: 'United States Dollar',
|
|
13
14
|
symbol: 'USD'
|
|
14
|
-
},
|
|
15
|
+
},
|
|
16
|
+
{
|
|
15
17
|
type_asset: 'unknown',
|
|
16
18
|
denom_units: [{
|
|
17
19
|
denom: 'EUR',
|
|
@@ -21,6 +23,18 @@ const info = {
|
|
|
21
23
|
display: 'EUR',
|
|
22
24
|
name: 'Euro',
|
|
23
25
|
symbol: 'EUR'
|
|
24
|
-
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
type_asset: 'unknown',
|
|
29
|
+
denom_units: [{
|
|
30
|
+
denom: 'BRL',
|
|
31
|
+
exponent: 0
|
|
32
|
+
}],
|
|
33
|
+
base: 'BRL',
|
|
34
|
+
display: 'BRL',
|
|
35
|
+
name: 'Brazilian Real',
|
|
36
|
+
symbol: 'BRL'
|
|
37
|
+
}
|
|
38
|
+
]
|
|
25
39
|
};
|
|
26
40
|
export default info;
|
package/mainnet/agoric/chain.js
CHANGED
|
@@ -242,6 +242,12 @@ const info = {
|
|
|
242
242
|
url: 'https://explorer.stavr.tech/Agoric',
|
|
243
243
|
tx_page: 'https://explorer.stavr.tech/Agoric/tx/${txHash}',
|
|
244
244
|
account_page: 'https://explorer.stavr.tech/Agoric/account/${accountAddress}'
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
kind: 'Valopers',
|
|
248
|
+
url: 'https://agoric.valopers.com/',
|
|
249
|
+
tx_page: 'https://agoric.valopers.com/transactions/${txHash}',
|
|
250
|
+
account_page: 'https://agoric.valopers.com/account/${accountAddress}'
|
|
245
251
|
}
|
|
246
252
|
],
|
|
247
253
|
images: [{
|
package/mainnet/arkeo/chain.js
CHANGED
|
@@ -47,32 +47,59 @@ const info = {
|
|
|
47
47
|
}
|
|
48
48
|
}],
|
|
49
49
|
apis: {
|
|
50
|
-
rpc: [
|
|
50
|
+
rpc: [
|
|
51
|
+
{
|
|
51
52
|
address: 'https://rpc-seed.arkeo.network',
|
|
52
53
|
provider: 'Arkeo'
|
|
53
|
-
},
|
|
54
|
+
},
|
|
55
|
+
{
|
|
54
56
|
address: 'https://arkeo-mainnet-rpc.autostake.com:443',
|
|
55
57
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'https://rpc.arkeo.roomit.xyz',
|
|
61
|
+
provider: 'Roomit'
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
rest: [
|
|
65
|
+
{
|
|
58
66
|
address: 'https://rest-seed.arkeo.network',
|
|
59
67
|
provider: 'Arkeo'
|
|
60
|
-
},
|
|
68
|
+
},
|
|
69
|
+
{
|
|
61
70
|
address: 'https://arkeo-mainnet-lcd.autostake.com:443',
|
|
62
71
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://api.arkeo.roomit.xyz',
|
|
75
|
+
provider: 'Roomit'
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
grpc: [{
|
|
79
|
+
address: 'grpc.arkeo.roomit.xyz:8443',
|
|
80
|
+
provider: 'Roomit'
|
|
63
81
|
}]
|
|
64
82
|
},
|
|
65
|
-
explorers: [
|
|
83
|
+
explorers: [
|
|
84
|
+
{
|
|
66
85
|
kind: 'stakevillage',
|
|
67
86
|
url: 'https://exp.stakevillage.net/arkeo-mainnet',
|
|
68
87
|
tx_page: 'https://exp.stakevillage.net/arkeo-mainnet/tx/${txHash}',
|
|
69
88
|
account_page: 'https://exp.stakevillage.net/arkeo-mainnet/account/${accountAddress}'
|
|
70
|
-
},
|
|
89
|
+
},
|
|
90
|
+
{
|
|
71
91
|
kind: 'Valopers',
|
|
72
92
|
url: 'https://arkeo.valopers.com/',
|
|
73
93
|
tx_page: 'https://arkeo.valopers.com/transactions/${txHash}',
|
|
74
94
|
account_page: 'https://arkeo.valopers.com/account/${accountAddress}'
|
|
75
|
-
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
kind: 'Roomit',
|
|
98
|
+
url: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet',
|
|
99
|
+
tx_page: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/transactions/${txHash}',
|
|
100
|
+
account_page: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/account/${accountAddress}'
|
|
101
|
+
}
|
|
102
|
+
],
|
|
76
103
|
keywords: [
|
|
77
104
|
'validator',
|
|
78
105
|
'node',
|
package/mainnet/elys/chain.js
CHANGED
|
@@ -148,12 +148,12 @@ const info = {
|
|
|
148
148
|
provider: 'Node39'
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
|
-
address: 'https://elys.rpc.vnodesv.net:443',
|
|
152
|
-
provider: 'vNodes[V]
|
|
151
|
+
address: 'https://elys.rpc.mtl.vnodesv.net:443',
|
|
152
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
address: 'https://elys.rpc.fr.vnodesv.net:443',
|
|
156
|
-
provider: 'vNodes[V]
|
|
156
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
159
|
address: 'https://elys-rpc.kleomedes.network/',
|
|
@@ -238,12 +238,12 @@ const info = {
|
|
|
238
238
|
provider: 'Node39'
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
|
-
address: 'https://elys.rest.vnodesv.net:443',
|
|
242
|
-
provider: 'vNodes[V]
|
|
241
|
+
address: 'https://elys.rest.mtl.vnodesv.net:443',
|
|
242
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
address: 'https://elys.rest.fr.vnodesv.net:443',
|
|
246
|
-
provider: 'vNodes[V]
|
|
246
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
address: 'https://elys-api.kleomedes.network/',
|
|
@@ -317,7 +317,7 @@ const info = {
|
|
|
317
317
|
},
|
|
318
318
|
{
|
|
319
319
|
address: 'https://elys.grpc.fr.vnodesv.net:443',
|
|
320
|
-
provider: 'vNodes[V]
|
|
320
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
321
321
|
}
|
|
322
322
|
]
|
|
323
323
|
},
|
|
@@ -156,7 +156,12 @@ const info = {
|
|
|
156
156
|
provider: 'MilkyWay Labs'
|
|
157
157
|
}]
|
|
158
158
|
},
|
|
159
|
-
explorers: [
|
|
159
|
+
explorers: [{
|
|
160
|
+
kind: 'Valopers',
|
|
161
|
+
url: 'https://milkyway.valopers.com/',
|
|
162
|
+
tx_page: 'https://milkyway.valopers.com/transactions/${txHash}',
|
|
163
|
+
account_page: 'https://milkyway.valopers.com/account/${accountAddress}'
|
|
164
|
+
}],
|
|
160
165
|
keywords: ['liquid staking', 'restaking']
|
|
161
166
|
};
|
|
162
167
|
exports.default = info;
|
|
@@ -324,6 +324,54 @@ const info = {
|
|
|
324
324
|
}
|
|
325
325
|
}],
|
|
326
326
|
type_asset: 'sdk.coin'
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
description: 'Rewards token designed to incentivize participation in Coreum Community DAO',
|
|
330
|
+
extended_description: 'The Coreum Community DAO (CCD) token incentivizes and rewards members for their contributions and support in community growth and educational initiatives.',
|
|
331
|
+
denom_units: [{
|
|
332
|
+
denom: 'ibc/1F8E19CD32FC6B2DBA825E7C3B370004BF5041BAB1099FC1BEBD6054FD5E8D08',
|
|
333
|
+
exponent: 0,
|
|
334
|
+
aliases: ['uccd-core1hnwd78wappjmgygyzr9mwspm7uzytrkcp9pfvv']
|
|
335
|
+
}, {
|
|
336
|
+
denom: 'ccd',
|
|
337
|
+
exponent: 6
|
|
338
|
+
}],
|
|
339
|
+
type_asset: 'ics20',
|
|
340
|
+
base: 'ibc/1F8E19CD32FC6B2DBA825E7C3B370004BF5041BAB1099FC1BEBD6054FD5E8D08',
|
|
341
|
+
name: 'Coreum Community DAO Token',
|
|
342
|
+
display: 'ccd',
|
|
343
|
+
symbol: 'CCD',
|
|
344
|
+
traces: [{
|
|
345
|
+
type: 'ibc',
|
|
346
|
+
counterparty: {
|
|
347
|
+
chain_name: 'osmosis',
|
|
348
|
+
base_denom: 'ibc/BA368CD4ED32975C333F69DA8FE0AB482D2E0F3C04227053EEB9B597A6789F6E',
|
|
349
|
+
channel_id: 'channel-199'
|
|
350
|
+
},
|
|
351
|
+
chain: {
|
|
352
|
+
channel_id: 'channel-1',
|
|
353
|
+
path: 'transfer/channel-1/transfer/channel-2188/uccd-core1hnwd78wappjmgygyzr9mwspm7uzytrkcp9pfvv'
|
|
354
|
+
}
|
|
355
|
+
}],
|
|
356
|
+
logo_URIs: {
|
|
357
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.png',
|
|
358
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.svg'
|
|
359
|
+
},
|
|
360
|
+
images: [{
|
|
361
|
+
image_sync: {
|
|
362
|
+
chain_name: 'coreum',
|
|
363
|
+
base_denom: 'uccd-core1hnwd78wappjmgygyzr9mwspm7uzytrkcp9pfvv'
|
|
364
|
+
},
|
|
365
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.png',
|
|
366
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/ccd.svg',
|
|
367
|
+
theme: {
|
|
368
|
+
primary_color_hex: '#a50dda'
|
|
369
|
+
}
|
|
370
|
+
}],
|
|
371
|
+
socials: {
|
|
372
|
+
website: 'https://coreumcommunitydao.com/',
|
|
373
|
+
twitter: 'https://x.com/Cor3_Community'
|
|
374
|
+
}
|
|
327
375
|
}
|
|
328
376
|
]
|
|
329
377
|
};
|
package/mainnet/planq/assets.js
CHANGED
|
@@ -185,6 +185,14 @@ const info = {
|
|
|
185
185
|
name: 'Astonic USD',
|
|
186
186
|
display: 'ausd',
|
|
187
187
|
symbol: 'aUSD',
|
|
188
|
+
traces: [{
|
|
189
|
+
type: 'synthetic',
|
|
190
|
+
counterparty: {
|
|
191
|
+
chain_name: 'forex',
|
|
192
|
+
base_denom: 'USD'
|
|
193
|
+
},
|
|
194
|
+
provider: 'Astonic'
|
|
195
|
+
}],
|
|
188
196
|
logo_URIs: {
|
|
189
197
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/ausd.png'
|
|
190
198
|
},
|
|
@@ -211,6 +219,14 @@ const info = {
|
|
|
211
219
|
name: 'Astonic EUR',
|
|
212
220
|
display: 'aeur',
|
|
213
221
|
symbol: 'aEUR',
|
|
222
|
+
traces: [{
|
|
223
|
+
type: 'synthetic',
|
|
224
|
+
counterparty: {
|
|
225
|
+
chain_name: 'forex',
|
|
226
|
+
base_denom: 'EUR'
|
|
227
|
+
},
|
|
228
|
+
provider: 'Astonic'
|
|
229
|
+
}],
|
|
214
230
|
logo_URIs: {
|
|
215
231
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/aeur.png'
|
|
216
232
|
},
|
|
@@ -237,6 +253,14 @@ const info = {
|
|
|
237
253
|
name: 'Astonic BRL',
|
|
238
254
|
display: 'abrl',
|
|
239
255
|
symbol: 'aBRL',
|
|
256
|
+
traces: [{
|
|
257
|
+
type: 'synthetic',
|
|
258
|
+
counterparty: {
|
|
259
|
+
chain_name: 'forex',
|
|
260
|
+
base_denom: 'BRL'
|
|
261
|
+
},
|
|
262
|
+
provider: 'Astonic'
|
|
263
|
+
}],
|
|
240
264
|
logo_URIs: {
|
|
241
265
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/abrl.png'
|
|
242
266
|
},
|
|
@@ -153,6 +153,12 @@ const info = {
|
|
|
153
153
|
url: 'https://mainnet.whispernode.com/secret',
|
|
154
154
|
tx_page: 'https://mainnet.whispernode.com/secret/tx/${txHash}',
|
|
155
155
|
account_page: 'https://mainnet.whispernode.com/secret/account/${accountAddress}'
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
kind: 'Valopers',
|
|
159
|
+
url: 'https://secret.valopers.com/',
|
|
160
|
+
tx_page: 'https://secret.valopers.com/transactions/${txHash}',
|
|
161
|
+
account_page: 'https://secret.valopers.com/account/${accountAddress}'
|
|
156
162
|
}
|
|
157
163
|
],
|
|
158
164
|
images: [{
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const info = {
|
|
4
4
|
$schema: '../../assetlist.schema.json',
|
|
5
5
|
chain_name: 'forex',
|
|
6
|
-
assets: [
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
7
8
|
type_asset: 'unknown',
|
|
8
9
|
denom_units: [{
|
|
9
10
|
denom: 'USD',
|
|
@@ -13,7 +14,8 @@ const info = {
|
|
|
13
14
|
display: 'USD',
|
|
14
15
|
name: 'United States Dollar',
|
|
15
16
|
symbol: 'USD'
|
|
16
|
-
},
|
|
17
|
+
},
|
|
18
|
+
{
|
|
17
19
|
type_asset: 'unknown',
|
|
18
20
|
denom_units: [{
|
|
19
21
|
denom: 'EUR',
|
|
@@ -23,6 +25,18 @@ const info = {
|
|
|
23
25
|
display: 'EUR',
|
|
24
26
|
name: 'Euro',
|
|
25
27
|
symbol: 'EUR'
|
|
26
|
-
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
type_asset: 'unknown',
|
|
31
|
+
denom_units: [{
|
|
32
|
+
denom: 'BRL',
|
|
33
|
+
exponent: 0
|
|
34
|
+
}],
|
|
35
|
+
base: 'BRL',
|
|
36
|
+
display: 'BRL',
|
|
37
|
+
name: 'Brazilian Real',
|
|
38
|
+
symbol: 'BRL'
|
|
39
|
+
}
|
|
40
|
+
]
|
|
27
41
|
};
|
|
28
42
|
exports.default = info;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.202",
|
|
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.129",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.129"
|
|
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": "89ca9956f8666e02702d5468ff1a64c5f64d8ab8"
|
|
47
47
|
}
|