forked from KYVENetwork/source-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.yml
More file actions
1716 lines (1716 loc) · 61.7 KB
/
registry.yml
File metadata and controls
1716 lines (1716 loc) · 61.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
andromeda-1:
codebase:
git-url: https://github.com/andromedaprotocol/andromedad
settings:
cosmos-properties:
genesis-url: https://files.kyve.network/infrastructure/andromeda/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/andromeda/chain.json
upgrades:
- commit: e93e48e0101b3408803d6b1e1cdd14bd1920160c
go-version: go1.21
height: 2410000
ksync-engine: cometbft-v0.37
name: genesis
recommended-version: v0.1.1-beta-patch
- commit: d4a545873e26f920f26e5ce54798f580e9846c9d
go-version: go1.21
height: 4854150
ksync-engine: cometbft-v0.37
name: v2
recommended-version: v2.0.0
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: andromedad
block-sync-pool: 33
docs-url: https://docs.andromedaprotocol.io/andromeda
state-sync-pool: 35
pools:
- id: 33
runtime: kyvejs/tendermint
- id: 35
runtime: kyvejs/tendermint-ssync
properties:
description: Andromeda is an all on-chain and multi-chain suite of products,
tools, and utilities enabled by a decentralized Operating System we call
aOS, or Andromeda Operating System. aOS is where Web3 starts.
docs: https://docs.andromedaprotocol.io/andromeda
hex: '#ac5086'
logo: ar://r0pmO4nwx_OvpPhCF2JRTXAnKu0Ub8azY2fcw9o4Klg
title: Andromeda
website: https://www.andromedaprotocol.io/
kyve-1:
integrations:
ksync:
binary-name: andromedad
block-sync-pool: 14
docs-url: https://docs.andromedaprotocol.io/andromeda
pools:
- id: 14
runtime: kyvejs/tendermint
properties:
description: Andromeda is an all on-chain and multi-chain suite of products,
tools, and utilities enabled by a decentralized Operating System we call
aOS, or Andromeda Operating System. aOS is where Web3 starts.
docs: https://docs.andromedaprotocol.io/andromeda
hex: '#ac5086'
logo: ar://r0pmO4nwx_OvpPhCF2JRTXAnKu0Ub8azY2fcw9o4Klg
title: Andromeda
website: https://www.andromedaprotocol.io/
source-id: andromeda-1
archway-1:
codebase:
git-url: https://github.com/archway-network/archway
settings:
cosmos-properties:
genesis-url: https://github.com/archway-network/networks/raw/main/archway/genesis/genesis.json.gz
registry-url: https://github.com/cosmos/chain-registry/blob/master/archway/chain.json
upgrades:
- commit: 86409142585b7157c628ca52b8357002fe60a165
go-version: go1.19
height: 1
ksync-engine: tendermint-v0.34
name: genesis
recommended-version: v1.0.1
- commit: d6c5cf4509e1c848f26d539c3519685f1d323dfd
go-version: go1.19
height: 525000
ksync-engine: tendermint-v0.34
name: v2.0.0
recommended-version: v2.0.0
- commit: 3cc9228982f651d3a54b395d6ff026e61e91f4b6
go-version: go1.20
height: 1215711
ksync-engine: tendermint-v0.34
name: v4.0.2
recommended-version: v4.0.3
- commit: a72ebfe851fc980586b253958196f7b449ac9fe8
go-version: go1.20
height: 3554500
ksync-engine: cometbft-v0.37
name: v6.0.0
recommended-version: v6.0.2
- commit: 4dee653fafcb51f5d7519c38024c8f2145323be9
go-version: go1.21
height: 4473000
ksync-engine: cometbft-v0.37
name: v7.0.0
recommended-version: v7.0.1
- commit: 5eb8a3062e1b457b6732d681f742e54facbf8b18
go-version: go1.22
height: 6836450
ksync-engine: cometbft-v0.38
name: v9.0.0
recommended-version: v9.0.0
- commit: 1de4e5c39a07893c8ce2949978e9c0714e5d6097
go-version: go1.23
height: 8919000
ksync-engine: cometbft-v0.38
name: v10.0.0
recommended-version: v10.0.0
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: archwayd
block-sync-pool: 2
docs-url: https://docs.archway.io/
state-sync-pool: 4
pools:
- id: 2
runtime: kyvejs/tendermint
- id: 4
runtime: kyvejs/tendermint-ssync
properties:
description: Archway is a Cosmos-native incentivized smart contract chain
that enables developers to deploy high-performance dapps that earn rewards
based on the traffic they bring to the network. As developers build and
launch impactful dapps, they receive a proportional share of network fees,
inflation, and premiums. At its core, Archway is designed to enable developers
to capture the value they create through sustainable economic models built
into the blockchain.
docs: https://docs.archway.io/
hex: '#e45121'
logo: ar://hKb8dVx4E1NCUJ_BlhNOcyfQEta5r38SBXqsfPnAsWE
title: Archway
website: https://archway.io/
kyve-1:
integrations:
ksync:
binary-name: archwayd
block-sync-pool: 2
docs-url: https://docs.archway.io/
state-sync-pool: 4
pools:
- id: 2
runtime: kyvejs/tendermint
- id: 4
runtime: kyvejs/tendermint-ssync
properties:
description: Archway is a Cosmos-native incentivized smart contract chain
that enables developers to deploy high-performance dapps that earn rewards
based on the traffic they bring to the network. As developers build and
launch impactful dapps, they receive a proportional share of network fees,
inflation, and premiums. At its core, Archway is designed to enable developers
to capture the value they create through sustainable economic models built
into the blockchain.
docs: https://docs.archway.io/
hex: '#e45121'
logo: ar://hKb8dVx4E1NCUJ_BlhNOcyfQEta5r38SBXqsfPnAsWE
title: Archway
website: https://archway.io/
source-id: archway-1
axelar-dojo-1:
codebase:
git-url: https://github.com/axelarnetwork/axelar-core
settings:
cosmos-properties:
genesis-url: https://raw.githubusercontent.com/axelarnetwork/axelarate-community/main/resources/mainnet/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/axelar/chain.json
upgrades:
- commit: 44fc624a6b710b421dd9dff82d0251b94d28296f
go-version: go1.16
height: 1
ksync-engine: tendermint-v0.34
name: genesis
recommended-version: v0.10.7
- commit: 1b1207f96dc62fcbfb64dac6f3dde633de727db1
go-version: go1.17
height: 384000
ksync-engine: tendermint-v0.34
name: v0.13
recommended-version: v0.13.6
- commit: 8bc296dede83faefcafa0990704422f6d69e2398
go-version: go1.17
height: 1060850
ksync-engine: tendermint-v0.34
name: v0.14
recommended-version: v0.14.1
- commit: 172a2d817a2adbb3d5afff257d1a3a0d1e0096a1
go-version: go1.17
height: 1263450
ksync-engine: tendermint-v0.34
name: v0.15
recommended-version: v0.15.0
- commit: 19102d31f10bf10fe76dd7d14978ec71167e8043
go-version: go1.17
height: 1336350
ksync-engine: tendermint-v0.34
name: v0.16
recommended-version: v0.16.1
- commit: 10d666ba342534d90d4ef3a6fdc59cbe2e1a5250
go-version: go1.18
height: 1889000
ksync-engine: tendermint-v0.34
name: v0.17
recommended-version: v0.17.3
- commit: 6be3b60403facd827613a3c90990042f43ddb9ca
go-version: go1.18
height: 2471750
ksync-engine: tendermint-v0.34
name: v0.18
recommended-version: v0.18.3
- commit: 6b75266b4568f2416a323d7a4f14d4a453bc5945
go-version: go1.18
height: 2472290
ksync-engine: tendermint-v0.34
name: v0.19
recommended-version: v0.19.4
- commit: ac086878edc9c239d8134fce8994e29482e144f3
go-version: go1.18
height: 3331350
ksync-engine: tendermint-v0.34
name: v0.20
recommended-version: v0.20.0
- commit: 246984b0f5c234d4922fedf3e5078b8e58b78a3c
go-version: go1.18
height: 3643500
ksync-engine: tendermint-v0.34
name: v0.21
recommended-version: v0.21.1
- commit: 981196d61fea1b9ad66eab69b27ae2ff3c2524b2
go-version: go1.18
height: 3644000
ksync-engine: tendermint-v0.34
name: v0.24
recommended-version: v0.24.0
- commit: 08d51ffee840403e0d2602a9f1d7ff4d99ccb155
go-version: go1.18
height: 3852250
ksync-engine: tendermint-v0.34
name: v0.26
recommended-version: v0.26.5
- commit: b60bd0e33a54bdc5f5e4a762007a68063ca78865
go-version: go1.18
height: 4984950
ksync-engine: tendermint-v0.34
name: v0.28
recommended-version: v0.28.0
- commit: 0137a28b91dad368f4709eadde3361202e198688
go-version: go1.18
height: 5030000
ksync-engine: tendermint-v0.34
name: v0.29
recommended-version: v0.29.1
- commit: 12bda1b59e5c9f12d2b14119cd8c69e2af355585
go-version: go1.18
height: 5853000
ksync-engine: tendermint-v0.34
name: v0.31
recommended-version: v0.31.2
- commit: 4f16d6fe89f4c11db7597558eea65e4909dc9019
go-version: go1.19
height: 6895400
ksync-engine: tendermint-v0.34
name: v0.33
recommended-version: v0.33.2
- commit: 048a66e66026d42fbefe048212cd18f8ac7a2207
go-version: go1.19
height: 9151750
ksync-engine: tendermint-v0.34
name: v0.34
recommended-version: v0.34.1
- commit: a4736492d3d5ac705ec1a154c5167323abdc66a7
go-version: go1.21
height: 11795700
ksync-engine: tendermint-v0.34
name: v0.35
recommended-version: v0.35.5
- commit: 4e9bf5f0bbe3e4ae6347b067d8dfa5f8758757b2
go-version: go1.23
height: 14231100
ksync-engine: tendermint-v0.34
name: v1.0
recommended-version: v1.0.5
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: axelard
block-sync-pool: 3
docs-url: https://docs.axelar.dev/
state-sync-pool: 26
pools:
- id: 3
runtime: kyvejs/tendermint
- id: 26
runtime: kyvejs/tendermint-ssync
properties:
description: "Axelar is the programmable Web3 interoperability platform, connecting\
\ over 50 blockchains via a secure, scalable network \u2013 internet infrastructure\
\ for the world\u2019s next super app. For partners ranging from Uniswap\
\ to Circle, Axelar enables scalable cross-chain solutions. Users interact\
\ with any asset in one click. Developers span multiple blockchains as though\
\ building on one, supported by a simple API and a permissionless ecosystem\
\ of tools and service providers. Backers include Binance, Coinbase, Dragonfly,\
\ Galaxy and Polychain. See what full-stack interoperability can do for\
\ your dApp. Learn more at https://axelar.network."
docs: https://docs.axelar.dev/
hex: '#5cc1fa'
logo: ar://iW1jN99yH_gdQtRhf5J_lVwOIu8p_i7FyxEgoQAkWxU
title: Axelar
website: https://axelar.network/
kyve-1:
integrations:
ksync:
binary-name: axelard
block-sync-pool: 3
docs-url: https://docs.axelar.dev/
pools:
- id: 3
runtime: kyvejs/tendermint
properties:
description: "Axelar is the programmable Web3 interoperability platform, connecting\
\ over 50 blockchains via a secure, scalable network \u2013 internet infrastructure\
\ for the world\u2019s next super app. For partners ranging from Uniswap\
\ to Circle, Axelar enables scalable cross-chain solutions. Users interact\
\ with any asset in one click. Developers span multiple blockchains as though\
\ building on one, supported by a simple API and a permissionless ecosystem\
\ of tools and service providers. Backers include Binance, Coinbase, Dragonfly,\
\ Galaxy and Polychain. See what full-stack interoperability can do for\
\ your dApp. Learn more at https://axelar.network."
docs: https://docs.axelar.dev/
hex: '#5cc1fa'
logo: ar://iW1jN99yH_gdQtRhf5J_lVwOIu8p_i7FyxEgoQAkWxU
title: Axelar
website: https://axelar.network/
source-id: axelar-dojo-1
celestia:
codebase:
git-url: https://github.com/celestiaorg/celestia-app
settings:
cosmos-properties:
genesis-url: https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/celestia/chain.json
upgrades:
- commit: ad18465a88000a5b45ceb63efc7d46efaaa56f2c
go-version: go1.22
height: 1
ksync-engine: celestia-core-v0.34
name: genesis
recommended-version: v1.9.0
- commit: b717c8dd0d639268f38ade64d7a5f4f5ab6f52b5
go-version: go1.22
height: 2371495
ksync-engine: celestia-core-v0.34
name: v2
recommended-version: v2.2.0
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: celestia-appd
block-sync-pool: 14
docs-url: https://docs.celestia.org/
state-sync-pool: 15
pools:
- id: 14
runtime: kyvejs/tendermint
- id: 15
runtime: kyvejs/tendermint-ssync
properties:
description: Celestia is a modular data availability network that securely
scales with the number of users, making it easy for anyone to launch their
own blockchain.
docs: https://docs.celestia.org/
hex: '#af6fd8'
logo: ar://TJ83Nah_FaECM0zcKajX-7-JW79iSgi2msbUFYwVMWU
title: Celestia
website: https://celestia.org/
kyve-1:
integrations:
ksync:
binary-name: celestia-appd
block-sync-pool: 9
docs: https://docs.celestia.org/
state-sync-pool: 10
pools:
- id: 9
runtime: kyvejs/tendermint
- id: 10
runtime: kyvejs/tendermint-ssync
properties:
description: Celestia is a modular data availability network that securely
scales with the number of users, making it easy for anyone to launch their
own blockchain.
docs: https://docs.celestia.org/
hex: '#af6fd8'
logo: ar://TJ83Nah_FaECM0zcKajX-7-JW79iSgi2msbUFYwVMWU
title: Celestia
website: https://celestia.org/
source-id: celestia
cosmoshub-4:
codebase:
git-url: https://github.com/cosmos/gaia
settings:
cosmos-properties:
genesis-url: https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz
registry-url: https://github.com/cosmos/chain-registry/blob/master/cosmoshub/chain.json
upgrades:
- commit: dbd8a6fb522c571debf958837f9113c56d418f6b
cosmos-sdk-version: v0.42.4
go-version: go1.15
height: 5200791
ksync-engine: tendermint-v0.34
name: genesis
recommended-version: v4.2.1
- commit: b72cc994f7156c8a8991e6beed2dde84ad274588
cosmos-sdk-version: v0.42.10
go-version: go1.16
height: 6910000
ksync-engine: tendermint-v0.34
name: Gravity-DEX
recommended-version: v5.0.8
- commit: 305668ab9d962431c79d718bb0ffdeec77a46439
cosmos-sdk-version: v0.44.6
go-version: go1.17
height: 8695000
ksync-engine: tendermint-v0.34
name: Vega
recommended-version: v6.0.4
- commit: b2504c1e28eae936477c7b06ae4c0f058613a4e8
cosmos-sdk-version: v0.45.9
go-version: go1.18
height: 10085397
ksync-engine: tendermint-v0.34
name: v7-Theta
recommended-version: v7.1.1
- commit: 890ab3aa2e5788537b0d2ebc9bafdc968340e0e5
cosmos-sdk-version: v0.45.14
go-version: go1.18
height: 14099412
ksync-engine: tendermint-v0.34
name: v8-Rho
recommended-version: v8.0.1
- commit: 05b6b87d3c9121e933eab437772ea56f33ae268f
cosmos-sdk-version: v0.45.15-ics
go-version: go1.18
height: 14470501
ksync-engine: tendermint-v0.34
name: v9-Lambda
recommended-version: v9.0.3
- commit: 66494d1ec72cfa0f8800aa8f1545e19d2af47e47
cosmos-sdk-version: v0.45.15-ics
go-version: go1.18
height: 15213800
ksync-engine: tendermint-v0.34
name: v9.1.0
recommended-version: v9.1.1
- commit: a2b14cdd568273e12b80579b4e22681df95b4cb9
cosmos-sdk-version: v0.45.16-ics
go-version: go1.20
height: 15816200
ksync-engine: tendermint-v0.34
name: v10
recommended-version: v10.0.2
- commit: 541a8d86af28231c767d6db52eb88ba9496ad0c4
cosmos-sdk-version: v0.45.16-ics
go-version: go1.20
height: 16596000
ksync-engine: tendermint-v0.34
name: v11
recommended-version: v11.0.0
- commit: 6f8067d76ce30996f83645862153ccfaf5f13dd1
cosmos-sdk-version: v0.45.16-ics
go-version: go1.20
height: 16985500
ksync-engine: tendermint-v0.34
name: v12
recommended-version: v12.0.0
- commit: 2406abb61856b61904ff06c7be2a355babcc3dfc
cosmos-sdk-version: v0.45.16
go-version: go1.20
height: 17380000
ksync-engine: tendermint-v0.34
name: v13
recommended-version: v13.0.2
- commit: 0d9408e9169488707f1ad423e87d0df84a30431f
cosmos-sdk-version: v0.45.16
go-version: go1.20
height: 18262000
ksync-engine: tendermint-v0.34
name: v14
recommended-version: v14.1.0
- commit: 1e7b5171ff1d6c8626aa4a0f049a10fefd69823e
cosmos-sdk-version: v0.47.10-ics-lsm
go-version: go1.21
height: 19639600
ksync-engine: cometbft-v0.37
name: v15
recommended-version: v15.1.0
- commit: 7281c9b9dc4e3087ee87f5b24e416802b52e8661
cosmos-sdk-version: v0.47.10-ics-lsm
go-version: go1.21
height: 19939000
ksync-engine: cometbft-v0.37
name: v15
recommended-version: v15.2.0
- commit: ebebaac5bf9f19ca68eaa70f6e61287c0e57fb8c
cosmos-sdk-version: v0.47.13-ics-lsm
go-version: go1.21
height: 20440500
ksync-engine: cometbft-v0.37
name: v16
recommended-version: v16.0.0
- commit: 24f6d24f029328ee40b3d821cfd12dbcf40bbbe5
cosmos-sdk-version: v0.47.15-ics-lsm
go-version: go1.21
height: 20739800
ksync-engine: cometbft-v0.37
name: v17
recommended-version: v17.3.0
- commit: 58b4e54a95c7fc6a64272ccd0f09f46213c005ad
cosmos-sdk-version: v0.47.16-ics-lsm
go-version: go1.22
height: 21330500
ksync-engine: cometbft-v0.37
name: v18
recommended-version: v18.1.0
- commit: 1d52b3d434d5d78561c3628ef351b88890ec7f7f
cosmos-sdk-version: v0.50.9-lsm
go-version: go1.22
height: 21835200
ksync-engine: cometbft-v0.38
name: v19
recommended-version: v19.2.0
- commit: 2dba9d471ef73b0a99e844bf55a44ddae700ea06
cosmos-sdk-version: v0.50.9-lsm
go-version: go1.22
height: 22443500
ksync-engine: cometbft-v0.38
name: v20
recommended-version: v20.0.0
- commit: db2cc90315161d6730551d795558aaa7664aea6f
cosmos-sdk-version: v0.50.9-lsm
go-version: go1.22
height: 22953640
ksync-engine: cometbft-v0.38
name: v21
recommended-version: v21.0.0
- commit: cc8fa2bbc24d55f0cacf51f8c06b3fd1c2762d17
cosmos-sdk-version: v0.50.11-lsm
go-version: go1.22
height: 24181000
ksync-engine: cometbft-v0.38
name: v22
recommended-version: v22.0.0
- commit: 1a5f49c67e1f2b312930c0208a6c157f93a51387
cosmos-sdk-version: v0.50.11-lsm
go-version: go1.22
height: 24385600
ksync-engine: cometbft-v0.38
name: v22
recommended-version: v22.1.0
- commit: 0cac467f7673929c909aaf99e207d90280ab61a5
cosmos-sdk-version: v0.50.11-lsm
go-version: go1.22
height: 24592000
ksync-engine: cometbft-v0.38
name: v22.2.0
recommended-version: v22.2.0
- commit: 1663de72571989ac98a89c544f65128e166e05f9
cosmos-sdk-version: v0.50.11-lsm
go-version: go1.22
height: 24666000
ksync-engine: cometbft-v0.38
name: v22.3.0
recommended-version: v22.3.0
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: gaiad
block-sync-pool: 18
docs-url: https://docs.cosmos.network/
state-sync-pool: 19
pools:
- id: 0
runtime: kyvejs/tendermint-bsync
- id: 18
runtime: kyvejs/tendermint
- id: 19
runtime: kyvejs/tendermint-ssync
properties:
description: Serving as the economic center of the Interchain, the Cosmos
Hub is a blockchain that provides vital ecosystem services. The primary
token of the Cosmos Hub is the ATOM, but the Hub will support many tokens
in the future.
hex: '#1c2049'
logo: ar://GSK9zAQx1jOnQIhbM20qCoOFYT3EJXIJfwfvT_QhLVM
title: Cosmos Hub
kyve-1:
integrations:
ksync:
binary-name: gaiad
block-sync-pool: 0
docs-url: https://docs.cosmos.network/
pools:
- id: 0
runtime: kyvejs/tendermint-bsync
properties:
description: Serving as the economic center of the Interchain, the Cosmos
Hub is a blockchain that provides vital ecosystem services. The primary
token of the Cosmos Hub is the ATOM, but the Hub will support many tokens
in the future.
hex: '#1c2049'
logo: ar://GSK9zAQx1jOnQIhbM20qCoOFYT3EJXIJfwfvT_QhLVM
title: Cosmos Hub
source-id: cosmoshub-4
cronosmainnet_25-1:
codebase:
git-url: https://github.com/crypto-org-chain/cronos
settings:
cosmos-properties:
genesis-url: https://raw.githubusercontent.com/crypto-org-chain/cronos-mainnet/master/cronosmainnet_25-1/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/cronos/chain.json
upgrades:
- commit: e6753a2ec30cef2f51f354cbd4be68483e396c46
go-version: go1.17
height: 1
ksync-engine: tendermint-v0.34
name: genesis
recommended-version: v0.6.11
- commit: 8035ebdcc3ce1ed5ee3d4887eb4ea1032c4d283c
go-version: go1.17
height: 2693800
ksync-engine: tendermint-v0.34
name: v0.7.0
recommended-version: v0.7.1
- commit: 5943e960d61bbfcda324223aff7c34e46131f6cf
go-version: go1.18
height: 3982500
ksync-engine: tendermint-v0.34
name: v0.7.0-hotfix
recommended-version: v0.8.3
- commit: 1f5e2618362303d91f621b47cbc1115cf4fa0195
go-version: go1.20
height: 6542800
ksync-engine: tendermint-v0.34
name: v1.0.0
recommended-version: v1.0.15
- commit: 10b8eeb9052e3c52aa59dec15f5d3aca781d1271
go-version: go1.22
height: 13184000
ksync-engine: cometbft-v0.37
name: v1.1.0
recommended-version: v1.1.1
- commit: 90e7c5832de7243a62ccb196d962de215972e37c
go-version: go1.22
height: 13520000
ksync-engine: cometbft-v0.37
name: v1.2.0
recommended-version: v1.2.2
- commit: e1d819c862b30f0ce978baf2addb12516568639e
go-version: go1.22
height: 14920000
ksync-engine: cometbft-v0.37
name: v1.3.0
recommended-version: v1.3.0
- commit: 3c6ce9008bbc896bdac8573aab8dc7db3f32ac72
go-version: go1.23
height: 17155000
ksync-engine: cometbft-v0.38
name: v1.4
recommended-version: v1.4.1
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: cronosd
block-sync-pool: 6
docs: https://docs.cronos.org/
state-sync-pool: 7
pools:
- id: 6
runtime: kyvejs/tendermint
- id: 7
runtime: kyvejs/tendermint-ssync
properties:
description: 'Cronos (cronos.org) is the leading Ethereum-compatible layer
1 blockchain network built on the Cosmos SDK, supported by Crypto.com, Crypto.org,
and more than 500 app developers and partners. Today, the #CROfam ecosystem
represents an addressable user base of more than 80 million people worldwide.
Our mission is to make it easy and safe for the next billion crypto users
to adopt Web3, with a focus on decentralized applications in the DeFi, NFTs
and GameFi verticals.'
docs: https://docs.cronos.org/
hex: '#191b34'
logo: ar://BbNmwRFv11y68Jiele3wxZNYQTqRVn_ZK6BwJ5S2MCE
title: Cronos
website: https://cronos.org/
kyve-1:
integrations:
ksync:
binary-name: cronosd
block-sync-pool: 5
docs: https://docs.cronos.org/
state-sync-pool: 6
pools:
- id: 5
runtime: kyvejs/tendermint
- id: 6
runtime: kyvejs/tendermint-ssync
- id: 15
runtime: kyvejs/tendermint-ssync
properties:
description: 'Cronos (cronos.org) is the leading Ethereum-compatible layer
1 blockchain network built on the Cosmos SDK, supported by Crypto.com, Crypto.org,
and more than 500 app developers and partners. Today, the #CROfam ecosystem
represents an addressable user base of more than 80 million people worldwide.
Our mission is to make it easy and safe for the next billion crypto users
to adopt Web3, with a focus on decentralized applications in the DeFi, NFTs
and GameFi verticals.'
docs: https://docs.cronos.org/
hex: '#191b34'
logo: ar://BbNmwRFv11y68Jiele3wxZNYQTqRVn_ZK6BwJ5S2MCE
title: Cronos
website: https://cronos.org/
source-id: cronosmainnet_25-1
dydx-mainnet-1:
codebase:
git-url: https://github.com/dydxprotocol/v4-chain
settings:
cosmos-properties:
genesis-url: https://raw.githubusercontent.com/dydxopsdao/networks/main/dydx-mainnet-1/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/dydx/chain.json
upgrades:
- commit: 31c2a937fc87bb9b7617443e4e5db2b1a2e9bda9
go-version: go1.21
height: 1
ksync-engine: cometbft-v0.37
name: genesis
recommended-version: protocol/v2.0.1
- commit: 40a28e49c4300e6a17a5b0a84b134e4a4397758f
go-version: go1.21
height: 7147832
ksync-engine: cometbft-v0.37
name: v3.0.0
recommended-version: protocol/v3.0.2
- commit: 2cd68a9b5491a466be9b40201fc6132cea5a9aaa
go-version: go1.21
height: 12791712
ksync-engine: cometbft-v0.38
name: v4.0.0
recommended-version: protocol/v4.0.5
- commit: f15e98f09e35adf1f48084de3ac18aae8a3a9337
go-version: go1.21
height: 14404200
ksync-engine: cometbft-v0.38
name: v4.1.0
recommended-version: protocol/v4.1.4
- commit: a3ea114579299fd1386a980062bdc6d11f9faffe
go-version: go1.22
height: 17560000
ksync-engine: cometbft-v0.38
name: v5.0.0
recommended-version: protocol/v5.0.5
- commit: c522048088ff4190064374e79a03cada4a4e02e7
go-version: go1.22
height: 21142000
ksync-engine: cometbft-v0.38
name: v5.1.0
recommended-version: protocol/v5.1.1
- commit: 488e4101fbb64489734696c8759cf1051a7934e1
go-version: go1.22
height: 22170000
ksync-engine: cometbft-v0.38
name: v5.2.0
recommended-version: protocol/v5.2.2
- commit: bb43ac2fc18b897dbedf66234beccf1aa6eb428c
go-version: go1.22
height: 26785000
ksync-engine: cometbft-v0.38
name: v6.0.0
recommended-version: protocol/v6.0.4
- commit: b3b12f3f00cf2e350e862d095740c60ebf7b107b
go-version: go1.22
height: 29950000
ksync-engine: cometbft-v0.38
name: v7.0
recommended-version: protocol/v7.0.1
- commit: d15314406f70c09be52c8f5f76ed5b3ec753618a
go-version: go1.23
height: 35602000
ksync-engine: cometbft-v0.38
name: v8.0
recommended-version: protocol/v8.0.1
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: dydxprotocold
block-sync-pool: 8
docs-url: https://docs.dydx.exchange/
state-sync-pool: 9
pools:
- id: 8
runtime: kyvejs/tendermint
- id: 9
runtime: kyvejs/tendermint-ssync
properties:
description: "dYdX chain is an open-source application specific blockchain\
\ software that can power a decentralized perpetuals exchange. This standalone\
\ blockchain software is open-sourced by dYdX Trading Inc. (\u201CdYdX\u201D\
) and is based on the Cosmos SDK and CometBFT proof-of-stake consensus protocol.\
\ dYdX Chain is fully decentralized end-to-end, including its consensus\
\ mechanism, order-book, matching engine and front end."
docs: https://docs.dydx.exchange/
hex: '#12121d'
logo: ar://34RVRPI9Ume67ZdNhqwQ42GkZa0NoulBXNiJFJQZ6uc
title: dYdX
website: https://dydx.exchange/
kyve-1:
integrations:
ksync:
binary-name: dydxprotocold
block-sync-pool: 13
docs-url: https://docs.dydx.exchange/
state-sync-pool: 19
pools:
- id: 13
runtime: kyvejs/tendermint
- id: 19
runtime: kyvejs/tendermint-ssync
properties:
description: "dYdX chain is an open-source application specific blockchain\
\ software that can power a decentralized perpetuals exchange. This standalone\
\ blockchain software is open-sourced by dYdX Trading Inc. (\u201CdYdX\u201D\
) and is based on the Cosmos SDK and CometBFT proof-of-stake consensus protocol.\
\ dYdX Chain is fully decentralized end-to-end, including its consensus\
\ mechanism, order-book, matching engine and front end."
docs: https://docs.dydx.exchange/
hex: '#12121d'
logo: ar://34RVRPI9Ume67ZdNhqwQ42GkZa0NoulBXNiJFJQZ6uc
title: dYdX
website: https://dydx.exchange/
source-id: dydx-mainnet-1
ethereum:
config-version: 1
networks:
kaon-1:
pools:
- id: 21
runtime: kyvejs/ethereum-blobs
properties:
description: Ethereum is a decentralized platform for building and deploying
smart contracts and decentralized applications (DApps). It offers scalability,
security, and transparency, enabling innovation across various industries
such as finance, gaming, and more.
docs: https://ethereum.org/en/developers/docs/
hex: '#b6bbe8'
logo: ar://Ui5fULe72VfEKo5reeGKvGXF_5HOuAIfdaOM7fXjVyA
title: Ethereum
website: https://ethereum.org/
source-id: ethereum
kaon-1:
codebase:
git-url: https://github.com/KYVENetwork/chain
settings:
cosmos-properties:
genesis-url: https://raw.githubusercontent.com/KYVENetwork/networks/refs/heads/main/kaon-1/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/testnets/kyvetestnet/chain.json
upgrades:
- commit: f8574c9b80c81193aa16b411cac676fe417f8881
go-version: go1.19
height: 1
ksync-engine: tendermint-v0.34
name: genesis
recommended-version: v1.0.0-rc0
- commit: cedc217027c2b7e3d2b7077abe7a4fa4442a19c4
go-version: go1.19
height: 443300
ksync-engine: tendermint-v0.34
name: v1.0.0-rc1
recommended-version: v1.0.0-rc1
- commit: 9bed226602dcd1fa624aabee3124a2bbd0467d02
go-version: go1.20
height: 1115111
ksync-engine: tendermint-v0.34
name: v1.1.0
recommended-version: v1.1.3
- commit: 489960cc1c3991d26d8d7546ccfa318a98121aa8
go-version: go1.20
height: 1502502
ksync-engine: tendermint-v0.34
name: v1.2.0
recommended-version: v1.2.2
- commit: 7a59450c6cee62323132ace323afdbee94be0dfe
go-version: go1.20
height: 2341100
ksync-engine: tendermint-v0.34
name: v1.3.0
recommended-version: v1.3.2
- commit: 68e5ff7a8d97f21e2aede9341ba22df9d81bb264
go-version: go1.20
height: 4185500
ksync-engine: cometbft-v0.37
name: v1.4.0
recommended-version: v1.4.0
- commit: 3910277da474d51f4147fd388ac2c6cd4ca67c84
go-version: go1.22
height: 7571371
ksync-engine: cometbft-v0.38
name: v1.5.0
recommended-version: v1.5.0
config-version: 1
networks:
kaon-1:
integrations:
ksync:
binary-name: kyved
block-sync-pool: 31
docs-url: https://docs.kyve.network/
state-sync-pool: 32
pools:
- id: 31
runtime: kyvejs/tendermint
- id: 32
runtime: kyvejs/tendermint-ssync
properties:
description: Kaon, KYVE's testnet is the network for testing new upgrades,
pools and other concepts before being published on mainnet. KYVE is a revolutionary
platform within the Web3 space, designed to address the challenges of accessing
decentralized and completely accurate data. As the Web3 ecosystem expands,
the difficulty in accessing such data leads to scalability issues and the
risk of data inconsistencies due to the lack of proper validation before
use. KYVE aims to provide a trustless and secure future for Web3's data
infrastructure by offering customized access to on- and off-chain data.
It achieves this through decentralized data validation, ensuring data immutability,
and facilitating easy data retrieval. This enables developers, data engineers,
and others to access the trustless data they need to continue building the
future of Web3.
docs: https://docs.kyve.network/
hex: '#2e5196'
logo: ar://tgQmRFikTiA9BpoI19Nk22SskkSwn5y1fOvd-G1m39U
title: KYVE Testnet
website: https://kyve.network/
source-id: kaon-1
kyve-1:
codebase:
git-url: https://github.com/KYVENetwork/chain
settings:
cosmos-properties:
genesis-url: https://raw.githubusercontent.com/KYVENetwork/networks/main/kyve-1/genesis.json
registry-url: https://github.com/cosmos/chain-registry/blob/master/kyve/chain.json
upgrades:
- commit: 82007dd0225a3a0b7c1dfdbb12b1f8bc9a6f9273
go-version: go1.19
height: 1
ksync-engine: tendermint-v0.34
name: genesis
recommended-version: v1.0.0
- commit: 9bed226602dcd1fa624aabee3124a2bbd0467d02
go-version: go1.20
height: 826000
ksync-engine: tendermint-v0.34
name: v1.1.0
recommended-version: v1.1.3
- commit: 489960cc1c3991d26d8d7546ccfa318a98121aa8
go-version: go1.20
height: 1135000
ksync-engine: tendermint-v0.34
name: v1.2.0
recommended-version: v1.2.2
- commit: 7a59450c6cee62323132ace323afdbee94be0dfe
go-version: go1.20
height: 2061100
ksync-engine: tendermint-v0.34
name: v1.3.0
recommended-version: v1.3.2
- commit: 68e5ff7a8d97f21e2aede9341ba22df9d81bb264
go-version: go1.20
height: 3908000
ksync-engine: cometbft-v0.37
name: v1.4.0
recommended-version: v1.4.0
- commit: 3910277da474d51f4147fd388ac2c6cd4ca67c84
go-version: go1.22
height: 7254527
ksync-engine: cometbft-v0.38
name: v1.5.0
recommended-version: v1.5.0
config-version: 1