@chain-registry/juno 1.64.17 → 1.64.18
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/asset_list.js +610 -172
- package/assets.js +304 -76
- package/esm/asset_list.js +610 -172
- package/esm/assets.js +304 -76
- package/package.json +4 -4
package/assets.js
CHANGED
|
@@ -24,7 +24,10 @@ const assets = {
|
|
|
24
24
|
coingecko_id: 'juno-network',
|
|
25
25
|
images: [{
|
|
26
26
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
|
|
27
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
|
|
27
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg',
|
|
28
|
+
theme: {
|
|
29
|
+
primary_color_hex: '#fa7b7b'
|
|
30
|
+
}
|
|
28
31
|
}],
|
|
29
32
|
socials: {
|
|
30
33
|
website: 'https://junonetwork.io/',
|
|
@@ -62,7 +65,10 @@ const assets = {
|
|
|
62
65
|
base_denom: 'uatom'
|
|
63
66
|
},
|
|
64
67
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
65
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
69
|
+
theme: {
|
|
70
|
+
primary_color_hex: '#272d45'
|
|
71
|
+
}
|
|
66
72
|
}],
|
|
67
73
|
logo_URIs: {
|
|
68
74
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
@@ -91,7 +97,10 @@ const assets = {
|
|
|
91
97
|
coingecko_id: 'neta',
|
|
92
98
|
images: [{
|
|
93
99
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png',
|
|
94
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg'
|
|
100
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg',
|
|
101
|
+
theme: {
|
|
102
|
+
primary_color_hex: '#f87b7b'
|
|
103
|
+
}
|
|
95
104
|
}]
|
|
96
105
|
},
|
|
97
106
|
{
|
|
@@ -115,7 +124,10 @@ const assets = {
|
|
|
115
124
|
},
|
|
116
125
|
images: [{
|
|
117
126
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png',
|
|
118
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg'
|
|
127
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg',
|
|
128
|
+
theme: {
|
|
129
|
+
primary_color_hex: '#040404'
|
|
130
|
+
}
|
|
119
131
|
}]
|
|
120
132
|
},
|
|
121
133
|
{
|
|
@@ -139,7 +151,10 @@ const assets = {
|
|
|
139
151
|
},
|
|
140
152
|
images: [{
|
|
141
153
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png',
|
|
142
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg'
|
|
154
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg',
|
|
155
|
+
theme: {
|
|
156
|
+
primary_color_hex: '#e2877e'
|
|
157
|
+
}
|
|
143
158
|
}]
|
|
144
159
|
},
|
|
145
160
|
{
|
|
@@ -164,7 +179,10 @@ const assets = {
|
|
|
164
179
|
coingecko_id: 'racoon',
|
|
165
180
|
images: [{
|
|
166
181
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png',
|
|
167
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg'
|
|
182
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg',
|
|
183
|
+
theme: {
|
|
184
|
+
primary_color_hex: '#070f0e'
|
|
185
|
+
}
|
|
168
186
|
}]
|
|
169
187
|
},
|
|
170
188
|
{
|
|
@@ -188,7 +206,10 @@ const assets = {
|
|
|
188
206
|
},
|
|
189
207
|
images: [{
|
|
190
208
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png',
|
|
191
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg'
|
|
209
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg',
|
|
210
|
+
theme: {
|
|
211
|
+
primary_color_hex: '#040404'
|
|
212
|
+
}
|
|
192
213
|
}]
|
|
193
214
|
},
|
|
194
215
|
{
|
|
@@ -210,7 +231,10 @@ const assets = {
|
|
|
210
231
|
},
|
|
211
232
|
images: [{
|
|
212
233
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png',
|
|
213
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg'
|
|
234
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg',
|
|
235
|
+
theme: {
|
|
236
|
+
primary_color_hex: '#fae204'
|
|
237
|
+
}
|
|
214
238
|
}]
|
|
215
239
|
},
|
|
216
240
|
{
|
|
@@ -234,7 +258,10 @@ const assets = {
|
|
|
234
258
|
},
|
|
235
259
|
images: [{
|
|
236
260
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png',
|
|
237
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg'
|
|
261
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg',
|
|
262
|
+
theme: {
|
|
263
|
+
primary_color_hex: '#f07c92'
|
|
264
|
+
}
|
|
238
265
|
}]
|
|
239
266
|
},
|
|
240
267
|
{
|
|
@@ -256,7 +283,10 @@ const assets = {
|
|
|
256
283
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png'
|
|
257
284
|
},
|
|
258
285
|
images: [{
|
|
259
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png'
|
|
286
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png',
|
|
287
|
+
theme: {
|
|
288
|
+
primary_color_hex: '#402e5d'
|
|
289
|
+
}
|
|
260
290
|
}]
|
|
261
291
|
},
|
|
262
292
|
{
|
|
@@ -300,7 +330,10 @@ const assets = {
|
|
|
300
330
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png'
|
|
301
331
|
},
|
|
302
332
|
images: [{
|
|
303
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png'
|
|
333
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png',
|
|
334
|
+
theme: {
|
|
335
|
+
primary_color_hex: '#f3baaf'
|
|
336
|
+
}
|
|
304
337
|
}]
|
|
305
338
|
},
|
|
306
339
|
{
|
|
@@ -324,7 +357,10 @@ const assets = {
|
|
|
324
357
|
},
|
|
325
358
|
images: [{
|
|
326
359
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.png',
|
|
327
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg'
|
|
360
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg',
|
|
361
|
+
theme: {
|
|
362
|
+
primary_color_hex: '#263a70'
|
|
363
|
+
}
|
|
328
364
|
}]
|
|
329
365
|
},
|
|
330
366
|
{
|
|
@@ -348,7 +384,10 @@ const assets = {
|
|
|
348
384
|
},
|
|
349
385
|
images: [{
|
|
350
386
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png',
|
|
351
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg'
|
|
387
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg',
|
|
388
|
+
theme: {
|
|
389
|
+
primary_color_hex: '#501cad'
|
|
390
|
+
}
|
|
352
391
|
}]
|
|
353
392
|
},
|
|
354
393
|
{
|
|
@@ -372,7 +411,10 @@ const assets = {
|
|
|
372
411
|
},
|
|
373
412
|
images: [{
|
|
374
413
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png',
|
|
375
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg'
|
|
414
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg',
|
|
415
|
+
theme: {
|
|
416
|
+
primary_color_hex: '#521caf'
|
|
417
|
+
}
|
|
376
418
|
}]
|
|
377
419
|
},
|
|
378
420
|
{
|
|
@@ -396,7 +438,10 @@ const assets = {
|
|
|
396
438
|
},
|
|
397
439
|
images: [{
|
|
398
440
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png',
|
|
399
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg'
|
|
441
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg',
|
|
442
|
+
theme: {
|
|
443
|
+
primary_color_hex: '#040404'
|
|
444
|
+
}
|
|
400
445
|
}]
|
|
401
446
|
},
|
|
402
447
|
{
|
|
@@ -420,7 +465,10 @@ const assets = {
|
|
|
420
465
|
},
|
|
421
466
|
images: [{
|
|
422
467
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png',
|
|
423
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg'
|
|
468
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg',
|
|
469
|
+
theme: {
|
|
470
|
+
primary_color_hex: '#26363f'
|
|
471
|
+
}
|
|
424
472
|
}]
|
|
425
473
|
},
|
|
426
474
|
{
|
|
@@ -444,7 +492,10 @@ const assets = {
|
|
|
444
492
|
},
|
|
445
493
|
images: [{
|
|
446
494
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png',
|
|
447
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg'
|
|
495
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg',
|
|
496
|
+
theme: {
|
|
497
|
+
primary_color_hex: '#254454'
|
|
498
|
+
}
|
|
448
499
|
}]
|
|
449
500
|
},
|
|
450
501
|
{
|
|
@@ -468,7 +519,10 @@ const assets = {
|
|
|
468
519
|
},
|
|
469
520
|
images: [{
|
|
470
521
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png',
|
|
471
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg'
|
|
522
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg',
|
|
523
|
+
theme: {
|
|
524
|
+
primary_color_hex: '#1c1c1b'
|
|
525
|
+
}
|
|
472
526
|
}]
|
|
473
527
|
},
|
|
474
528
|
{
|
|
@@ -492,7 +546,10 @@ const assets = {
|
|
|
492
546
|
},
|
|
493
547
|
images: [{
|
|
494
548
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png',
|
|
495
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg'
|
|
549
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg',
|
|
550
|
+
theme: {
|
|
551
|
+
primary_color_hex: '#2d2c2d'
|
|
552
|
+
}
|
|
496
553
|
}]
|
|
497
554
|
},
|
|
498
555
|
{
|
|
@@ -514,7 +571,10 @@ const assets = {
|
|
|
514
571
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png'
|
|
515
572
|
},
|
|
516
573
|
images: [{
|
|
517
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png'
|
|
574
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png',
|
|
575
|
+
theme: {
|
|
576
|
+
primary_color_hex: '#32255f'
|
|
577
|
+
}
|
|
518
578
|
}]
|
|
519
579
|
},
|
|
520
580
|
{
|
|
@@ -537,7 +597,10 @@ const assets = {
|
|
|
537
597
|
},
|
|
538
598
|
coingecko_id: 'loop',
|
|
539
599
|
images: [{
|
|
540
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png'
|
|
600
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png',
|
|
601
|
+
theme: {
|
|
602
|
+
primary_color_hex: '#2d2c45'
|
|
603
|
+
}
|
|
541
604
|
}]
|
|
542
605
|
},
|
|
543
606
|
{
|
|
@@ -560,7 +623,10 @@ const assets = {
|
|
|
560
623
|
},
|
|
561
624
|
coingecko_id: 'fanfury',
|
|
562
625
|
images: [{
|
|
563
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png'
|
|
626
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png',
|
|
627
|
+
theme: {
|
|
628
|
+
primary_color_hex: '#14045c'
|
|
629
|
+
}
|
|
564
630
|
}]
|
|
565
631
|
},
|
|
566
632
|
{
|
|
@@ -585,7 +651,10 @@ const assets = {
|
|
|
585
651
|
coingecko_id: 'posthuman',
|
|
586
652
|
images: [{
|
|
587
653
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png',
|
|
588
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg'
|
|
654
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg',
|
|
655
|
+
theme: {
|
|
656
|
+
primary_color_hex: '#bbc2c6'
|
|
657
|
+
}
|
|
589
658
|
}],
|
|
590
659
|
socials: {
|
|
591
660
|
website: 'https://posthuman.digital/',
|
|
@@ -613,7 +682,10 @@ const assets = {
|
|
|
613
682
|
},
|
|
614
683
|
images: [{
|
|
615
684
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png',
|
|
616
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg'
|
|
685
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg',
|
|
686
|
+
theme: {
|
|
687
|
+
primary_color_hex: '#08d890'
|
|
688
|
+
}
|
|
617
689
|
}]
|
|
618
690
|
},
|
|
619
691
|
{
|
|
@@ -635,7 +707,10 @@ const assets = {
|
|
|
635
707
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png'
|
|
636
708
|
},
|
|
637
709
|
images: [{
|
|
638
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png'
|
|
710
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png',
|
|
711
|
+
theme: {
|
|
712
|
+
primary_color_hex: '#e40404'
|
|
713
|
+
}
|
|
639
714
|
}]
|
|
640
715
|
},
|
|
641
716
|
{
|
|
@@ -657,7 +732,10 @@ const assets = {
|
|
|
657
732
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png'
|
|
658
733
|
},
|
|
659
734
|
images: [{
|
|
660
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png'
|
|
735
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png',
|
|
736
|
+
theme: {
|
|
737
|
+
primary_color_hex: '#041ce4'
|
|
738
|
+
}
|
|
661
739
|
}]
|
|
662
740
|
},
|
|
663
741
|
{
|
|
@@ -682,7 +760,10 @@ const assets = {
|
|
|
682
760
|
coingecko_id: 'wynd',
|
|
683
761
|
images: [{
|
|
684
762
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png',
|
|
685
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg'
|
|
763
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg',
|
|
764
|
+
theme: {
|
|
765
|
+
primary_color_hex: '#6bcc95'
|
|
766
|
+
}
|
|
686
767
|
}]
|
|
687
768
|
},
|
|
688
769
|
{
|
|
@@ -704,7 +785,10 @@ const assets = {
|
|
|
704
785
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png'
|
|
705
786
|
},
|
|
706
787
|
images: [{
|
|
707
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png'
|
|
788
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png',
|
|
789
|
+
theme: {
|
|
790
|
+
primary_color_hex: '#046fc6'
|
|
791
|
+
}
|
|
708
792
|
}]
|
|
709
793
|
},
|
|
710
794
|
{
|
|
@@ -728,7 +812,10 @@ const assets = {
|
|
|
728
812
|
},
|
|
729
813
|
images: [{
|
|
730
814
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png',
|
|
731
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg'
|
|
815
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg',
|
|
816
|
+
theme: {
|
|
817
|
+
primary_color_hex: '#050505'
|
|
818
|
+
}
|
|
732
819
|
}]
|
|
733
820
|
},
|
|
734
821
|
{
|
|
@@ -750,7 +837,10 @@ const assets = {
|
|
|
750
837
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png'
|
|
751
838
|
},
|
|
752
839
|
images: [{
|
|
753
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png'
|
|
840
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png',
|
|
841
|
+
theme: {
|
|
842
|
+
primary_color_hex: '#c5c2c2'
|
|
843
|
+
}
|
|
754
844
|
}]
|
|
755
845
|
},
|
|
756
846
|
{
|
|
@@ -772,7 +862,10 @@ const assets = {
|
|
|
772
862
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png'
|
|
773
863
|
},
|
|
774
864
|
images: [{
|
|
775
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png'
|
|
865
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png',
|
|
866
|
+
theme: {
|
|
867
|
+
primary_color_hex: '#ee8179'
|
|
868
|
+
}
|
|
776
869
|
}]
|
|
777
870
|
},
|
|
778
871
|
{
|
|
@@ -794,7 +887,10 @@ const assets = {
|
|
|
794
887
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png'
|
|
795
888
|
},
|
|
796
889
|
images: [{
|
|
797
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png'
|
|
890
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png',
|
|
891
|
+
theme: {
|
|
892
|
+
primary_color_hex: '#25221f'
|
|
893
|
+
}
|
|
798
894
|
}]
|
|
799
895
|
},
|
|
800
896
|
{
|
|
@@ -816,7 +912,10 @@ const assets = {
|
|
|
816
912
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png'
|
|
817
913
|
},
|
|
818
914
|
images: [{
|
|
819
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png'
|
|
915
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png',
|
|
916
|
+
theme: {
|
|
917
|
+
primary_color_hex: '#e30d2c'
|
|
918
|
+
}
|
|
820
919
|
}]
|
|
821
920
|
},
|
|
822
921
|
{
|
|
@@ -838,7 +937,10 @@ const assets = {
|
|
|
838
937
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png'
|
|
839
938
|
},
|
|
840
939
|
images: [{
|
|
841
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png'
|
|
940
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png',
|
|
941
|
+
theme: {
|
|
942
|
+
primary_color_hex: '#ee5f06'
|
|
943
|
+
}
|
|
842
944
|
}]
|
|
843
945
|
},
|
|
844
946
|
{
|
|
@@ -860,7 +962,10 @@ const assets = {
|
|
|
860
962
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png'
|
|
861
963
|
},
|
|
862
964
|
images: [{
|
|
863
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png'
|
|
965
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png',
|
|
966
|
+
theme: {
|
|
967
|
+
primary_color_hex: '#07d7ac'
|
|
968
|
+
}
|
|
864
969
|
}]
|
|
865
970
|
},
|
|
866
971
|
{
|
|
@@ -884,7 +989,10 @@ const assets = {
|
|
|
884
989
|
},
|
|
885
990
|
images: [{
|
|
886
991
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png',
|
|
887
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg'
|
|
992
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg',
|
|
993
|
+
theme: {
|
|
994
|
+
primary_color_hex: '#dadbce'
|
|
995
|
+
}
|
|
888
996
|
}]
|
|
889
997
|
},
|
|
890
998
|
{
|
|
@@ -906,7 +1014,10 @@ const assets = {
|
|
|
906
1014
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png'
|
|
907
1015
|
},
|
|
908
1016
|
images: [{
|
|
909
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png'
|
|
1017
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png',
|
|
1018
|
+
theme: {
|
|
1019
|
+
primary_color_hex: '#240454'
|
|
1020
|
+
}
|
|
910
1021
|
}]
|
|
911
1022
|
},
|
|
912
1023
|
{
|
|
@@ -930,7 +1041,10 @@ const assets = {
|
|
|
930
1041
|
},
|
|
931
1042
|
images: [{
|
|
932
1043
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png',
|
|
933
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg'
|
|
1044
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg',
|
|
1045
|
+
theme: {
|
|
1046
|
+
primary_color_hex: '#fbfbfb'
|
|
1047
|
+
}
|
|
934
1048
|
}]
|
|
935
1049
|
},
|
|
936
1050
|
{
|
|
@@ -952,7 +1066,10 @@ const assets = {
|
|
|
952
1066
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png'
|
|
953
1067
|
},
|
|
954
1068
|
images: [{
|
|
955
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png'
|
|
1069
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png',
|
|
1070
|
+
theme: {
|
|
1071
|
+
primary_color_hex: '#eea95d'
|
|
1072
|
+
}
|
|
956
1073
|
}]
|
|
957
1074
|
},
|
|
958
1075
|
{
|
|
@@ -974,7 +1091,10 @@ const assets = {
|
|
|
974
1091
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png'
|
|
975
1092
|
},
|
|
976
1093
|
images: [{
|
|
977
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png'
|
|
1094
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png',
|
|
1095
|
+
theme: {
|
|
1096
|
+
primary_color_hex: '#0b1d33'
|
|
1097
|
+
}
|
|
978
1098
|
}]
|
|
979
1099
|
},
|
|
980
1100
|
{
|
|
@@ -996,7 +1116,10 @@ const assets = {
|
|
|
996
1116
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png'
|
|
997
1117
|
},
|
|
998
1118
|
images: [{
|
|
999
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png'
|
|
1119
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png',
|
|
1120
|
+
theme: {
|
|
1121
|
+
primary_color_hex: '#38b5c5'
|
|
1122
|
+
}
|
|
1000
1123
|
}]
|
|
1001
1124
|
},
|
|
1002
1125
|
{
|
|
@@ -1018,7 +1141,10 @@ const assets = {
|
|
|
1018
1141
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png'
|
|
1019
1142
|
},
|
|
1020
1143
|
images: [{
|
|
1021
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png'
|
|
1144
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png',
|
|
1145
|
+
theme: {
|
|
1146
|
+
primary_color_hex: '#04040c'
|
|
1147
|
+
}
|
|
1022
1148
|
}]
|
|
1023
1149
|
},
|
|
1024
1150
|
{
|
|
@@ -1040,7 +1166,10 @@ const assets = {
|
|
|
1040
1166
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png'
|
|
1041
1167
|
},
|
|
1042
1168
|
images: [{
|
|
1043
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png'
|
|
1169
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png',
|
|
1170
|
+
theme: {
|
|
1171
|
+
primary_color_hex: '#cbdb44'
|
|
1172
|
+
}
|
|
1044
1173
|
}]
|
|
1045
1174
|
},
|
|
1046
1175
|
{
|
|
@@ -1062,7 +1191,10 @@ const assets = {
|
|
|
1062
1191
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png'
|
|
1063
1192
|
},
|
|
1064
1193
|
images: [{
|
|
1065
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png'
|
|
1194
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png',
|
|
1195
|
+
theme: {
|
|
1196
|
+
primary_color_hex: '#299544'
|
|
1197
|
+
}
|
|
1066
1198
|
}]
|
|
1067
1199
|
},
|
|
1068
1200
|
{
|
|
@@ -1084,7 +1216,10 @@ const assets = {
|
|
|
1084
1216
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png'
|
|
1085
1217
|
},
|
|
1086
1218
|
images: [{
|
|
1087
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png'
|
|
1219
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png',
|
|
1220
|
+
theme: {
|
|
1221
|
+
primary_color_hex: '#5561aa'
|
|
1222
|
+
}
|
|
1088
1223
|
}]
|
|
1089
1224
|
},
|
|
1090
1225
|
{
|
|
@@ -1106,7 +1241,10 @@ const assets = {
|
|
|
1106
1241
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png'
|
|
1107
1242
|
},
|
|
1108
1243
|
images: [{
|
|
1109
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png'
|
|
1244
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png',
|
|
1245
|
+
theme: {
|
|
1246
|
+
primary_color_hex: '#04040c'
|
|
1247
|
+
}
|
|
1110
1248
|
}]
|
|
1111
1249
|
},
|
|
1112
1250
|
{
|
|
@@ -1128,7 +1266,10 @@ const assets = {
|
|
|
1128
1266
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png'
|
|
1129
1267
|
},
|
|
1130
1268
|
images: [{
|
|
1131
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png'
|
|
1269
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png',
|
|
1270
|
+
theme: {
|
|
1271
|
+
primary_color_hex: '#e0372c'
|
|
1272
|
+
}
|
|
1132
1273
|
}]
|
|
1133
1274
|
},
|
|
1134
1275
|
{
|
|
@@ -1150,7 +1291,10 @@ const assets = {
|
|
|
1150
1291
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png'
|
|
1151
1292
|
},
|
|
1152
1293
|
images: [{
|
|
1153
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png'
|
|
1294
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png',
|
|
1295
|
+
theme: {
|
|
1296
|
+
primary_color_hex: '#469743'
|
|
1297
|
+
}
|
|
1154
1298
|
}]
|
|
1155
1299
|
},
|
|
1156
1300
|
{
|
|
@@ -1172,7 +1316,10 @@ const assets = {
|
|
|
1172
1316
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png'
|
|
1173
1317
|
},
|
|
1174
1318
|
images: [{
|
|
1175
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png'
|
|
1319
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png',
|
|
1320
|
+
theme: {
|
|
1321
|
+
primary_color_hex: '#04ccab'
|
|
1322
|
+
}
|
|
1176
1323
|
}]
|
|
1177
1324
|
},
|
|
1178
1325
|
{
|
|
@@ -1194,7 +1341,10 @@ const assets = {
|
|
|
1194
1341
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png'
|
|
1195
1342
|
},
|
|
1196
1343
|
images: [{
|
|
1197
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png'
|
|
1344
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png',
|
|
1345
|
+
theme: {
|
|
1346
|
+
primary_color_hex: '#4d5264'
|
|
1347
|
+
}
|
|
1198
1348
|
}]
|
|
1199
1349
|
},
|
|
1200
1350
|
{
|
|
@@ -1216,7 +1366,10 @@ const assets = {
|
|
|
1216
1366
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png'
|
|
1217
1367
|
},
|
|
1218
1368
|
images: [{
|
|
1219
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png'
|
|
1369
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png',
|
|
1370
|
+
theme: {
|
|
1371
|
+
primary_color_hex: '#f49c4c'
|
|
1372
|
+
}
|
|
1220
1373
|
}]
|
|
1221
1374
|
},
|
|
1222
1375
|
{
|
|
@@ -1238,7 +1391,10 @@ const assets = {
|
|
|
1238
1391
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png'
|
|
1239
1392
|
},
|
|
1240
1393
|
images: [{
|
|
1241
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png'
|
|
1394
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png',
|
|
1395
|
+
theme: {
|
|
1396
|
+
primary_color_hex: '#d6a84f'
|
|
1397
|
+
}
|
|
1242
1398
|
}]
|
|
1243
1399
|
},
|
|
1244
1400
|
{
|
|
@@ -1260,7 +1416,10 @@ const assets = {
|
|
|
1260
1416
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png'
|
|
1261
1417
|
},
|
|
1262
1418
|
images: [{
|
|
1263
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png'
|
|
1419
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png',
|
|
1420
|
+
theme: {
|
|
1421
|
+
primary_color_hex: '#f3c79e'
|
|
1422
|
+
}
|
|
1264
1423
|
}]
|
|
1265
1424
|
},
|
|
1266
1425
|
{
|
|
@@ -1282,7 +1441,10 @@ const assets = {
|
|
|
1282
1441
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png'
|
|
1283
1442
|
},
|
|
1284
1443
|
images: [{
|
|
1285
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png'
|
|
1444
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png',
|
|
1445
|
+
theme: {
|
|
1446
|
+
primary_color_hex: '#140c44'
|
|
1447
|
+
}
|
|
1286
1448
|
}]
|
|
1287
1449
|
},
|
|
1288
1450
|
{
|
|
@@ -1304,7 +1466,10 @@ const assets = {
|
|
|
1304
1466
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png'
|
|
1305
1467
|
},
|
|
1306
1468
|
images: [{
|
|
1307
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png'
|
|
1469
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png',
|
|
1470
|
+
theme: {
|
|
1471
|
+
primary_color_hex: '#695335'
|
|
1472
|
+
}
|
|
1308
1473
|
}]
|
|
1309
1474
|
},
|
|
1310
1475
|
{
|
|
@@ -1326,7 +1491,10 @@ const assets = {
|
|
|
1326
1491
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png'
|
|
1327
1492
|
},
|
|
1328
1493
|
images: [{
|
|
1329
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png'
|
|
1494
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png',
|
|
1495
|
+
theme: {
|
|
1496
|
+
primary_color_hex: '#e5e5e5'
|
|
1497
|
+
}
|
|
1330
1498
|
}]
|
|
1331
1499
|
},
|
|
1332
1500
|
{
|
|
@@ -1348,7 +1516,10 @@ const assets = {
|
|
|
1348
1516
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png'
|
|
1349
1517
|
},
|
|
1350
1518
|
images: [{
|
|
1351
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png'
|
|
1519
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png',
|
|
1520
|
+
theme: {
|
|
1521
|
+
primary_color_hex: '#040404'
|
|
1522
|
+
}
|
|
1352
1523
|
}]
|
|
1353
1524
|
},
|
|
1354
1525
|
{
|
|
@@ -1370,7 +1541,10 @@ const assets = {
|
|
|
1370
1541
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png'
|
|
1371
1542
|
},
|
|
1372
1543
|
images: [{
|
|
1373
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png'
|
|
1544
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png',
|
|
1545
|
+
theme: {
|
|
1546
|
+
primary_color_hex: '#5b2e96'
|
|
1547
|
+
}
|
|
1374
1548
|
}]
|
|
1375
1549
|
},
|
|
1376
1550
|
{
|
|
@@ -1392,7 +1566,10 @@ const assets = {
|
|
|
1392
1566
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png'
|
|
1393
1567
|
},
|
|
1394
1568
|
images: [{
|
|
1395
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png'
|
|
1569
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png',
|
|
1570
|
+
theme: {
|
|
1571
|
+
primary_color_hex: '#21538f'
|
|
1572
|
+
}
|
|
1396
1573
|
}]
|
|
1397
1574
|
},
|
|
1398
1575
|
{
|
|
@@ -1414,7 +1591,10 @@ const assets = {
|
|
|
1414
1591
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png'
|
|
1415
1592
|
},
|
|
1416
1593
|
images: [{
|
|
1417
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png'
|
|
1594
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png',
|
|
1595
|
+
theme: {
|
|
1596
|
+
primary_color_hex: '#e9bc37'
|
|
1597
|
+
}
|
|
1418
1598
|
}]
|
|
1419
1599
|
},
|
|
1420
1600
|
{
|
|
@@ -1436,7 +1616,10 @@ const assets = {
|
|
|
1436
1616
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png'
|
|
1437
1617
|
},
|
|
1438
1618
|
images: [{
|
|
1439
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png'
|
|
1619
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png',
|
|
1620
|
+
theme: {
|
|
1621
|
+
primary_color_hex: '#040404'
|
|
1622
|
+
}
|
|
1440
1623
|
}]
|
|
1441
1624
|
},
|
|
1442
1625
|
{
|
|
@@ -1460,7 +1643,10 @@ const assets = {
|
|
|
1460
1643
|
},
|
|
1461
1644
|
images: [{
|
|
1462
1645
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png',
|
|
1463
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.svg'
|
|
1646
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.svg',
|
|
1647
|
+
theme: {
|
|
1648
|
+
primary_color_hex: '#dc542c'
|
|
1649
|
+
}
|
|
1464
1650
|
}]
|
|
1465
1651
|
},
|
|
1466
1652
|
{
|
|
@@ -1480,7 +1666,10 @@ const assets = {
|
|
|
1480
1666
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png'
|
|
1481
1667
|
},
|
|
1482
1668
|
images: [{
|
|
1483
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png'
|
|
1669
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png',
|
|
1670
|
+
theme: {
|
|
1671
|
+
primary_color_hex: '#040405'
|
|
1672
|
+
}
|
|
1484
1673
|
}]
|
|
1485
1674
|
},
|
|
1486
1675
|
{
|
|
@@ -1500,7 +1689,10 @@ const assets = {
|
|
|
1500
1689
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png'
|
|
1501
1690
|
},
|
|
1502
1691
|
images: [{
|
|
1503
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png'
|
|
1692
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png',
|
|
1693
|
+
theme: {
|
|
1694
|
+
primary_color_hex: '#dfe0e0'
|
|
1695
|
+
}
|
|
1504
1696
|
}]
|
|
1505
1697
|
},
|
|
1506
1698
|
{
|
|
@@ -1544,7 +1736,10 @@ const assets = {
|
|
|
1544
1736
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png'
|
|
1545
1737
|
},
|
|
1546
1738
|
images: [{
|
|
1547
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png'
|
|
1739
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png',
|
|
1740
|
+
theme: {
|
|
1741
|
+
primary_color_hex: '#7bbc43'
|
|
1742
|
+
}
|
|
1548
1743
|
}]
|
|
1549
1744
|
},
|
|
1550
1745
|
{
|
|
@@ -1566,7 +1761,10 @@ const assets = {
|
|
|
1566
1761
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png'
|
|
1567
1762
|
},
|
|
1568
1763
|
images: [{
|
|
1569
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png'
|
|
1764
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png',
|
|
1765
|
+
theme: {
|
|
1766
|
+
primary_color_hex: '#ef6d1d'
|
|
1767
|
+
}
|
|
1570
1768
|
}]
|
|
1571
1769
|
},
|
|
1572
1770
|
{
|
|
@@ -1588,7 +1786,10 @@ const assets = {
|
|
|
1588
1786
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/minerva.png'
|
|
1589
1787
|
},
|
|
1590
1788
|
images: [{
|
|
1591
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/minerva.png'
|
|
1789
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/minerva.png',
|
|
1790
|
+
theme: {
|
|
1791
|
+
primary_color_hex: '#744c2f'
|
|
1792
|
+
}
|
|
1592
1793
|
}]
|
|
1593
1794
|
},
|
|
1594
1795
|
{
|
|
@@ -1610,7 +1811,10 @@ const assets = {
|
|
|
1610
1811
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png'
|
|
1611
1812
|
},
|
|
1612
1813
|
images: [{
|
|
1613
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png'
|
|
1814
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png',
|
|
1815
|
+
theme: {
|
|
1816
|
+
primary_color_hex: '#1c1c1c'
|
|
1817
|
+
}
|
|
1614
1818
|
}]
|
|
1615
1819
|
},
|
|
1616
1820
|
{
|
|
@@ -1632,7 +1836,10 @@ const assets = {
|
|
|
1632
1836
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png'
|
|
1633
1837
|
},
|
|
1634
1838
|
images: [{
|
|
1635
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png'
|
|
1839
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png',
|
|
1840
|
+
theme: {
|
|
1841
|
+
primary_color_hex: '#1e1d1d'
|
|
1842
|
+
}
|
|
1636
1843
|
}]
|
|
1637
1844
|
},
|
|
1638
1845
|
{
|
|
@@ -1654,7 +1861,10 @@ const assets = {
|
|
|
1654
1861
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png'
|
|
1655
1862
|
},
|
|
1656
1863
|
images: [{
|
|
1657
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png'
|
|
1864
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png',
|
|
1865
|
+
theme: {
|
|
1866
|
+
primary_color_hex: '#a9784c'
|
|
1867
|
+
}
|
|
1658
1868
|
}]
|
|
1659
1869
|
},
|
|
1660
1870
|
{
|
|
@@ -1676,7 +1886,10 @@ const assets = {
|
|
|
1676
1886
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png'
|
|
1677
1887
|
},
|
|
1678
1888
|
images: [{
|
|
1679
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png'
|
|
1889
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png',
|
|
1890
|
+
theme: {
|
|
1891
|
+
primary_color_hex: '#d17e7f'
|
|
1892
|
+
}
|
|
1680
1893
|
}],
|
|
1681
1894
|
coingecko_id: 'backbone-labs-staked-juno'
|
|
1682
1895
|
},
|
|
@@ -1706,7 +1919,10 @@ const assets = {
|
|
|
1706
1919
|
base_denom: 'uusdc'
|
|
1707
1920
|
},
|
|
1708
1921
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
|
|
1709
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
|
|
1922
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg',
|
|
1923
|
+
theme: {
|
|
1924
|
+
primary_color_hex: '#2474cc'
|
|
1925
|
+
}
|
|
1710
1926
|
}],
|
|
1711
1927
|
traces: [{
|
|
1712
1928
|
type: 'ibc',
|
|
@@ -1753,7 +1969,10 @@ const assets = {
|
|
|
1753
1969
|
base_denom: 'factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk'
|
|
1754
1970
|
},
|
|
1755
1971
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png',
|
|
1756
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg'
|
|
1972
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg',
|
|
1973
|
+
theme: {
|
|
1974
|
+
primary_color_hex: '#3ccc64'
|
|
1975
|
+
}
|
|
1757
1976
|
}],
|
|
1758
1977
|
logo_URIs: {
|
|
1759
1978
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png',
|
|
@@ -1777,7 +1996,10 @@ const assets = {
|
|
|
1777
1996
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png'
|
|
1778
1997
|
},
|
|
1779
1998
|
images: [{
|
|
1780
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png'
|
|
1999
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png',
|
|
2000
|
+
theme: {
|
|
2001
|
+
primary_color_hex: '#122b4d'
|
|
2002
|
+
}
|
|
1781
2003
|
}]
|
|
1782
2004
|
},
|
|
1783
2005
|
{
|
|
@@ -1793,7 +2015,10 @@ const assets = {
|
|
|
1793
2015
|
display: 'cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg',
|
|
1794
2016
|
symbol: 'AFA',
|
|
1795
2017
|
images: [{
|
|
1796
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png'
|
|
2018
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png',
|
|
2019
|
+
theme: {
|
|
2020
|
+
primary_color_hex: '#f3cb0c'
|
|
2021
|
+
}
|
|
1797
2022
|
}],
|
|
1798
2023
|
logo_URIs: {
|
|
1799
2024
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png'
|
|
@@ -1816,7 +2041,10 @@ const assets = {
|
|
|
1816
2041
|
symbol: 'ARENA',
|
|
1817
2042
|
images: [{
|
|
1818
2043
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg',
|
|
1819
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png'
|
|
2044
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png',
|
|
2045
|
+
theme: {
|
|
2046
|
+
primary_color_hex: '#dc6c24'
|
|
2047
|
+
}
|
|
1820
2048
|
}],
|
|
1821
2049
|
logo_URIs: {
|
|
1822
2050
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png',
|