-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathibc.json
1680 lines (1680 loc) · 72.6 KB
/
ibc.json
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
[
{
"chain-1": "andromeda",
"client-1": "07-tendermint-16",
"channel-1": "channel-13",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-250",
"channel-2": "channel-213",
"port-2": "transfer",
"api-1": [
"https://api.andromeda-1.andromeda.aviaone.com",
"https://andromeda.api.kjnodes.com",
"https://andromeda.api.nodex.one",
"https://andro.api.m.stavr.tech",
"https://rest.lavenderfive.com:443/andromeda",
"https://andromeda-mainnet-lcd.autostake.com:443",
"https://andromeda-rest.stakerhouse.com:443",
"https://andromeda-api.highstakes.ch",
"https://andromeda-api.genznodes.dev",
"https://andromeda.api.kjnodes.com",
"https://andromeda-api.noders.services",
"https://api-andromeda.blockval.io",
"https://andromeda.api.liveraven.net"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 13,
"packet-2": 100
},
{
"chain-1": "axelar",
"client-1": "07-tendermint-37",
"channel-1": "channel-10",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-113",
"channel-2": "channel-84",
"port-2": "transfer",
"api-1": [
"https://lcd-axelar.imperator.co:443",
"https://axelar-lcd.quickapi.com:443",
"https://api-axelar.cosmos-spaces.cloud",
"https://axelar-lcd.qubelabs.io:443",
"https://api-1.axelar.nodes.guru:443",
"https://api-axelar-ia.cosmosia.notional.ventures/",
"https://axelar-api.polkachu.com",
"https://axelar.rest.stakin-nodes.com",
"https://api.axelar.bh.rocks",
"https://axelar-api.validatrium.club",
"https://lcd-axelar.whispernode.com:443",
"https://axelar-mainnet-lcd.autostake.com:443",
"https://axelar-lcd.quantnode.tech/",
"https://axelar-api.ibs.team",
"https://api-axelar-01.stakeflow.io",
"https://axelar-rest.staketab.org",
"https://axelar-api.w3coins.io",
"https://axelar-rest.publicnode.com"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "bandchain",
"client-1": "",
"channel-1": "channel-7",
"port-1": "oracle",
"chain-2": "injective",
"client-2": "",
"channel-2": "channel-3",
"port-2": "oracle",
"api-1": [
"https://laozi1.bandchain.org/api",
"https://api-bandchain-ia.cosmosia.notional.ventures/",
"https://band-api.ibs.team/",
"https://api-band.cosmos-spaces.cloud",
"https://band.api.m.stavr.tech",
"https://bandchain-mainnet-lcd.autostake.com:443",
"https://api-band-01.stakeflow.io",
"https://band-api.w3coins.io",
"https://bandprotocol-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/bandchain/rest",
"https://lcd.band.bronbro.io/",
"https://api.band.roomit.xyz/",
"https://band-api.noders.services"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 100,
"packet-2": 100
},
{
"chain-1": "canto",
"client-1": "",
"channel-1": "channel-8",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "",
"channel-2": "channel-99",
"port-2": "transfer",
"api-1": [
"https://api.canto.nodestake.top",
"https://canto-api.polkachu.com",
"https://api.canto.silentvalidator.com/",
"https://canto-mainnet-lcd.autostake.com:443",
"https://rest-canto.kewrnode.com"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "celestia",
"client-1": "07-tendermint-28",
"channel-1": "channel-7",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-226",
"channel-2": "channel-152",
"port-2": "transfer",
"api-1": [
"https://public-celestia-lcd.numia.xyz",
"https://celestia-rest.mesa.newmetric.xyz",
"http://celestia.rpc.nodersteam.com:1617",
"https://api.lunaroasis.net",
"https://api.celestia.nodestake.org",
"https://rest.lavenderfive.com:443/celestia",
"https://api-celestia-01.stakeflow.io",
"https://api-celestia.cosmos-spaces.cloud",
"https://celestia.rest.interchain.validao.xyz",
"https://celestia-rest.publicnode.com",
"https://celestia.rest.stakin-nodes.com",
"https://celestia.api.kjnodes.com",
"https://api-celestia.mzonder.com",
"https://celestia-lcd.enigma-validator.com",
"https://rest-celestia.theamsolutions.info",
"https://api.celestia.validatus.com",
"https://celestia-api.sr20de.xyz",
"https://celestia-mainnet-lcd.autostake.com:443",
"https://api-celestia-full.avril14th.org",
"https://celestia.api.cumulo.org.es",
"https://celestia-api.stake-town.com",
"https://lcd.celestia-app.bronbro.io",
"https://celestia-api.noders.services",
"https://celestia-mainnet-api.itrocket.net",
"https://api.celestia.mainnet.dteam.tech:443",
"https://celestia-api.stakeandrelax.net"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "cosmoshub",
"client-1": "07-tendermint-470",
"channel-1": "channel-220",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-5",
"channel-2": "channel-1",
"port-2": "transfer",
"api-1": [
"https://cosmoshub.lava.build:443",
"https://cosmos-lcd.quickapi.com:443",
"https://rest.cosmoshub.goldenratiostaking.net",
"https://rest.lavenderfive.com:443/cosmoshub",
"https://api-cosmoshub.pupmos.network",
"https://api-cosmoshub.cosmos-spaces.cloud",
"https://api-cosmoshub-ia.cosmosia.notional.ventures/",
"https://cosmos-rest.staketab.org",
"https://lcd.cosmos.dragonstake.io",
"https://cosmoshub.rest.stakin-nodes.com",
"https://rest-cosmoshub.architectnodes.com",
"https://rest-cosmoshub.ecostake.com",
"https://lcd-cosmoshub.whispernode.com:443",
"https://cosmos-lcd.easy2stake.com",
"https://api.cosmos.nodestake.org",
"https://cosmos.api.silknodes.io",
"https://cosmos-rest.publicnode.com",
"https://cosmoshub.api.kjnodes.com",
"https://api-cosmos-hub-01.stakeflow.io",
"https://cosmos-api.w3coins.io",
"https://api-cosmoshub.mms.team",
"https://cosmos-api.tienthuattoan.ventures",
"https://community.nuxian-node.ch:6797/gaia/crpc",
"https://cosmos-api.highstakes.ch",
"https://cosmoshub-api.cosmosrescue.dev",
"https://cosmos-rest.interstellar-lounge.org",
"https://public.stakewolle.com/cosmos/cosmoshub/rest",
"https://rest-cosmos.kewrnode.com",
"https://cosmos-api.stakeandrelax.net",
"https://cosmoshub-mainnet-api.itrocket.net",
"https://cosmoshub.api.quasarstaking.ai",
"https://cosmos-api.ibs.team"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "crescent",
"client-1": "07-tendermint-26",
"channel-1": "channel-23",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-132",
"channel-2": "channel-90",
"port-2": "transfer",
"api-1": [
"https://mainnet.crescent.network:1317",
"https://api-crescent.pupmos.network",
"https://crescent-api.polkachu.com",
"https://crescent.rest.stakin-nodes.com",
"https://api-crescent.cosmos-spaces.cloud",
"https://crescent-mainnet-lcd.autostake.com:443",
"https://api-crescent-01.stakeflow.io",
"https://crescent-api.w3coins.io",
"https://lcd.crescent.bronbro.io:443"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 3
},
{
"chain-1": "dydx",
"client-1": "07-tendermint-26",
"channel-1": "channel-62",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-256",
"channel-2": "channel-258",
"port-2": "transfer",
"api-1": [
"https://community.nuxian-node.ch:6797/dydx/crpc",
"https://dydx-dao-api.polkachu.com",
"https://dydx-mainnet-full-lcd.public.blastapi.io",
"https://dydx-rest.kingnodes.com:443",
"https://rest.lavenderfive.com:443/dydx",
"https://dydx-mainnet-lcd.autostake.com:443",
"https://rest-dydx.ecostake.com:443",
"https://api-dydx.cosmos-spaces.cloud",
"https://api.dydx.nodestake.top:443",
"https://dydx-rest.publicnode.com",
"https://rest-dydx.cros-nest.com:443",
"https://dydx-lcd.enigma-validator.com",
"https://dydx-api.noders.services",
"https://dydx-rest.interstellar-lounge.org"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "dymension",
"client-1": "07-tendermint-41",
"channel-1": "channel-47",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-257",
"channel-2": "channel-259",
"port-2": "transfer",
"api-1": [
"https://dym-m-api.agoranodes.com",
"https://api.dymension.nodestake.org",
"http://dymension.mainnet.api.noders.team:42317",
"https://dymension-mainnet-lcd.autostake.com:443",
"https://rest.lavenderfive.com:443/dymension",
"https://dymension-api.kynraze.com",
"https://m-dymension.api.utsa.tech",
"https://api-dymension.nodeist.net",
"https://dymension.api.m.stavr.tech",
"https://dym.api-archive.m.stavr.tech",
"https://lcd.dymension.hexnodes.co",
"https://dymension.api.kjnodes.com:443",
"https://dymension-api.stakeandrelax.net",
"https://dymension-api.takeshi.team",
"https://dymension-rest.publicnode.com",
"https://api.dymension.silentvalidator.com:443",
"https://api-dymension.whispernode.com:443",
"https://community.nuxian-node.ch:6797/dymension/crpc",
"https://dymension-lcd.enigma-validator.com",
"https://dymension-api.ibs.team",
"https://dymension.nodejumper.io:1317",
"https://lcd-dymension.hoodrun.io",
"https://dymension.0xwave.com",
"https://api.dym.cumulo.com.es",
"https://rest.dymension.posthuman.digital",
"https://api.dymension.node75.org",
"https://lcd.dymension.bronbro.io:443",
"https://dymension-api.noders.services",
"https://api.mainnet.dymension.aviaone.com",
"https://api.archive.dymension.mainnet.dteam.tech:443"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 2,
"packet-2": 0
},
{
"chain-1": "evmos",
"client-1": "07-tendermint-19",
"channel-1": "channel-10",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-112",
"channel-2": "channel-83",
"port-2": "transfer",
"api-1": [
"https://rest.bd.evmos.org:1317",
"https://rest.lavenderfive.com:443/evmos",
"https://api-evmos-ia.cosmosia.notional.ventures/",
"https://api.evmos.nodestake.top",
"https://evmos-api.polkachu.com",
"https://api.evmos.silentvalidator.com/",
"https://rest.evmos.tcnetwork.io",
"https://evmos.rest.stakin-nodes.com",
"https://rest-evmos.architectnodes.com",
"https://evmos-api.validatrium.club",
"https://evmos-rest.publicnode.com",
"https://api-evmos-01.stakeflow.io",
"https://evmos-api.theamsolutions.info",
"https://lcd-evmos.validavia.me",
"https://evmos-api.w3coins.io",
"https://evmos-api.stake-town.com",
"https://evmos.api.liveraven.net",
"https://evmos-rest.antrixy.org/",
"https://evmos-mainnet.api.stakevillage.net",
"https://api.evmos.validatus.com",
"https://lcd.evmos.bronbro.io:443"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 2,
"packet-2": 3
},
{
"chain-1": "fetchhub",
"client-1": "07-tendermint-81",
"channel-1": "channel-33",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-266",
"channel-2": "channel-283",
"port-2": "transfer",
"api-1": [
"https://rest-fetchhub.fetch.ai",
"https://api-fetchhub-ia.cosmosia.notional.ventures/",
"https://fetch-api.polkachu.com",
"https://fetchai-api.kleomedes.network",
"https://fetch-rest.antrixy.org",
"https://fetchhub-mainnet-lcd.autostake.com:443",
"https://rest-fetch.architectnodes.com",
"https://fetch-api.ibs.team",
"https://fetch-api.cosmosrescue.com",
"https://fetch-api.w3coins.io",
"https://fetch-rest.publicnode.com",
"https://fetch-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/fetchhub/rest",
"https://fetch.api.nodeshub.online:443",
"https://api.fetchhub-4.fetch.aviaone.com/",
"https://fetchai-api.bluestake.net"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 1,
"packet-2": 4
},
{
"chain-1": "gateway",
"client-1": "07-tendermint-18",
"channel-1": "channel-13",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-248",
"channel-2": "channel-183",
"port-2": "transfer",
"api-1": [
"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/",
"https://wormchain-lcd.quickapi.com/"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "juno",
"client-1": "",
"channel-1": "channel-59",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "",
"channel-2": "channel-78",
"port-2": "transfer",
"api-1": [
"https://lcd-juno.itastakers.com",
"https://rest.lavenderfive.com:443/juno",
"https://juno.api.m.stavr.tech",
"https://api-juno.pupmos.network",
"https://api-juno-ia.cosmosia.notional.ventures/",
"https://api.juno.chaintools.tech/",
"https://juno-api.polkachu.com",
"https://api-juno.cosmos-spaces.cloud",
"https://juno-api.kleomedes.network",
"https://api.juno.bh.rocks",
"https://juno-rest.kingnodes.com",
"https://juno-api.stakeandrelax.net",
"https://rest-juno.architectnodes.com",
"https://api-juno-01.stakeflow.io",
"https://lcd-juno.validavia.me",
"https://juno-api.w3coins.io",
"https://juno-rest.publicnode.com",
"https://juno-api.stake-town.com",
"https://juno-api.stakeandrelax.net",
"https://api.juno.validatus.com",
"https://lcd.juno.bronbro.io:443",
"https://juno-api.cogwheel.zone",
"https://juno.declab.pro:443",
"https://juno.api.nodeshub.online:443",
"https://juno-api.chainroot.io"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 2
},
{
"chain-1": "kava",
"client-1": "07-tendermint-130",
"channel-1": "channel-122",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-205",
"channel-2": "channel-143",
"port-2": "transfer",
"api-1": [
"https://api.data.kava.io/",
"https://api-kava-ia.cosmosia.notional.ventures/",
"https://kava-api.polkachu.com",
"https://kava-mainnet-lcd.autostake.com:443",
"https://kava-api.ibs.team",
"https://api-kava-01.stakeflow.io",
"https://kava-rest.publicnode.com"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "kujira",
"client-1": "07-tendermint-77",
"channel-1": "channel-54",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-144",
"channel-2": "channel-98",
"port-2": "transfer",
"api-1": [
"https://lcd.kaiyo.kujira.setten.io",
"https://rest.lavenderfive.com:443/kujira",
"https://kujira-api.polkachu.com/",
"https://api-kujira-ia.cosmosia.notional.ventures/",
"https://kujira-lcd.wildsage.io/",
"https://kujira-api.ibs.team/",
"https://api-kujira.starsquid.io",
"https://kujira.api.kjnodes.com",
"https://kuji-api.kleomedes.network",
"https://kujira-mainnet-lcd.autostake.com:443",
"https://api.kujira.rektdao.club",
"https://kujira-api.theamsolutions.info",
"https://kujira-api.w3coins.io",
"https://api-kujira.mms.team",
"https://kujira-rest.publicnode.com",
"https://kujira-rest.interstellar-lounge.org"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "mantrachain",
"client-1": "07-tendermint-2",
"channel-1": "channel-2",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-275",
"channel-2": "channel-363",
"port-2": "transfer",
"api-1": [
"https://api.mantrachain.io",
"https://api-mantra.r93axnodes.cloud:443",
"https://mantrachain-mainnet-lcd.autostake.com:443",
"https://mantra-rest.publicnode.com",
"https://mantra-mainnet-api.itrocket.net",
"https://mantra.api.m.stavr.tech"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "migaloo",
"client-1": "07-tendermint-5",
"channel-1": "channel-3",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-154",
"channel-2": "channel-102",
"port-2": "transfer",
"api-1": [
"https://migaloo-api.polkachu.com:443",
"https://api-migaloo.cosmos-spaces.cloud",
"https://migaloo-api.kleomedes.network:443",
"https://api.whitewhale.nodestake.top",
"https://migaloo-api.highstakes.ch",
"https://migaloo-rest.publicnode.com"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "neutron",
"client-1": "07-tendermint-233",
"channel-1": "channel-60",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-233",
"channel-2": "channel-177",
"port-2": "transfer",
"api-1": [
"https://api.novel.remedy.tm.p2p.org",
"https://rest.lavenderfive.com:443/neutron",
"https://lcd-neutron.whispernode.com",
"https://api-neutron.cosmos-spaces.cloud",
"http://api.neutron.nodestake.org",
"https://neutron-rest.publicnode.com",
"https://community.nuxian-node.ch:6797/neutron/crpc",
"https://lcd.neutron.bronbro.io:443",
"https://api.neutron.quokkastake.io",
"https://neutron-api.ibs.team"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "noble",
"client-1": "07-tendermint-57",
"channel-1": "channel-31",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-212",
"channel-2": "channel-148",
"port-2": "transfer",
"api-1": [
"https://noble-api.polkachu.com",
"https://rest.lavenderfive.com:443/noble",
"https://noble-rest.owallet.io"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "noble",
"client-1": "07-tendermint-15",
"channel-1": "channel-31",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-210",
"channel-2": "channel-146",
"port-2": "transfer",
"api-1": [
"https://noble-api.polkachu.com",
"https://rest.lavenderfive.com:443/noble",
"https://noble-rest.owallet.io"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-1": 0,
"packet-2": 0
},
{
"chain-1": "nois",
"client-1": "07-tendermint-13",
"channel-1": "channel-20",
"port-1": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp",
"chain-2": "injective",
"client-2": "07-tendermint-201",
"channel-2": "channel-140",
"port-2": "wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a",
"api-1": [
"https://m-nois.api.utsa.tech",
"https://rest.lavenderfive.com:443/nois",
"https://lcd-nois.ezstaking.dev",
"https://lcd-nois.mib.tech/",
"https://nois.api.m.stavr.tech",
"https://nois-mainnet-api.itrocket.net",
"https://api-nois.d-stake.xyz",
"https://api-nois.sr20de.xyz",
"https://nois-api.polkachu.com",
"https://nois-rest.kingnodes.com",
"https://api.nois.silentvalidator.com",
"https://nois-api.stakeandrelax.net",
"https://api.nois.cumulo.org.es"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-2": 0
},
{
"chain-1": "nois",
"client-1": "07-tendermint-13",
"channel-1": "channel-17",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "07-tendermint-201",
"channel-2": "channel-138",
"port-2": "transfer",
"api-1": [
"https://m-nois.api.utsa.tech",
"https://rest.lavenderfive.com:443/nois",
"https://lcd-nois.ezstaking.dev",
"https://lcd-nois.mib.tech/",
"https://nois.api.m.stavr.tech",
"https://nois-mainnet-api.itrocket.net",
"https://api-nois.d-stake.xyz",
"https://api-nois.sr20de.xyz",
"https://nois-api.polkachu.com",
"https://nois-rest.kingnodes.com",
"https://api.nois.silentvalidator.com",
"https://nois-api.stakeandrelax.net",
"https://api.nois.cumulo.org.es"
],
"api-2": [
"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz",
"https://api-injective-ia.cosmosia.notional.ventures/",
"https://injective-api.polkachu.com",
"https://rest.lavenderfive.com:443/injective",
"https://lcd-injective.whispernode.com:443",
"https://api-injective-01.stakeflow.io",
"https://rest.injective.goldenratiostaking.net",
"https://injective-rest.publicnode.com",
"https://injective-mainnet-lcd.autostake.com:443",
"https://injective-api.highstakes.ch",
"https://public.stakewolle.com/cosmos/injective/rest",
"https://lcd.injective.bronbro.io/",
"https://injective-api.noders.services",
"https://rest-injective.ecostake.com",
"https://rest-injective.kewrnode.com"
],
"packet-2": 0
},
{
"chain-1": "oraichain",
"client-1": "07-tendermint-211",
"channel-1": "channel-146",
"port-1": "transfer",
"chain-2": "injective",
"client-2": "",
"channel-2": "channel-147",
"port-2": "transfer",
"api-1": [
"http://lcd.orai.io",
"https://oraichain-mainnet-lcd.autostake.com:443",
"https://api-oraichain.mms.team",
"https://api-orai.blockval.io",
"https://mainnet-orai-api.konsortech.xyz",
"https://orai.api.m.stavr.tech",
"https://oraichain-rest.publicnode.com",
"https://orai-rest.owallet.io"