-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathproviders.json
More file actions
2157 lines (2157 loc) · 114 KB
/
providers.json
File metadata and controls
2157 lines (2157 loc) · 114 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
{
"providers": [
{
"chainId": 14,
"name": "A-FTSO",
"description": "The first indie FTSO provider, run as a professional one. No frills, low fees.",
"url": "https://ftso.alexdupre.com",
"address": "0xAF7504242064532CbD3370aD7591452B1D09BBdc",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xAF7504242064532CbD3370aD7591452B1D09BBdc.png",
"listed": true
},
{
"chainId": 14,
"name": "A41",
"description": "A41 is a blockchain infra-service provider that validates and paves paths never ventured before.",
"url": "https://www.a41.io",
"address": "0x90C6423ec3Ea40591bAdb177171B64c7e6556028",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x90C6423ec3Ea40591bAdb177171B64c7e6556028.png",
"listed": true
},
{
"chainId": 14,
"name": "AFOracle",
"description": "AFOracle is an FTSO provider from AFLabs, a team that helped build the Flare's smart contract infrastructure.",
"url": "https://aforacle.com",
"address": "0xAf05Ac13F4a4e754a496B46bbd611F5FFDb42606",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xAf05Ac13F4a4e754a496B46bbd611F5FFDb42606.png",
"listed": true
},
{
"chainId": 14,
"name": "African Proofs",
"description": "We are a Flare and Songbird blockchain networks data signals provider based in South Africa. We provide a consistent and honest account of real world information for use in the Flare Networks ecosystem of chains.",
"url": "https://proofs.africa",
"address": "0x7808b9E0F7c488172B54B30f98C2FcF36D903B2c",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x7808b9E0F7c488172B54B30f98C2FcF36D903B2c.png",
"listed": true
},
{
"chainId": 14,
"name": "Aimlezz",
"description": "Aimlezzly providing the best prices.",
"url": "https://www.aimlezz.com",
"address": "0xD1eDC6Dd3Ba8b0881A44002Ac501a69E924b8F00",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xD1eDC6Dd3Ba8b0881A44002Ac501a69E924b8F00.png",
"listed": true
},
{
"chainId": 14,
"name": "AlphaOracle",
"description": "AlphaOracle is a US based Signal Provider to the Flare Network. Our goal is to provide reliable data to support applications and expand the ecosystem.",
"url": "https://www.alphaoracle.io",
"address": "0x47B6EfFE71ABD4e8CdCC56f2341BEb404f804b87",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x47B6EfFE71ABD4e8CdCC56f2341BEb404f804b87.png",
"listed": true
},
{
"chainId": 14,
"name": "Ankr",
"description": "Build web3 apps with a full suite of developer tools. Power them with fast, global, decentralized connections to dozens of chains",
"url": "https://ankr.com",
"address": "0xB7fD410Bb86f427b2d2C75eFe6e35e621465913b",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB7fD410Bb86f427b2d2C75eFe6e35e621465913b.png",
"listed": true
},
{
"chainId": 14,
"name": "ApeFTSO",
"description": "An aped out signal provider to the Flare Time Series Oracle on the Flare Network",
"url": "https://x-apes.com",
"address": "0x622f389d96D3E6BaE90bAd965Fd51d5a04f85922",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x622f389d96D3E6BaE90bAd965Fd51d5a04f85922.png"
},
{
"chainId": 14,
"name": "Aternety",
"description": "Aternety US-based data provider on the Flare Network.",
"url": "https://aternety.com",
"address": "0xD3956F862a4960bB4937e596a2BaeCFfCbb4b3e0",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xD3956F862a4960bB4937e596a2BaeCFfCbb4b3e0.png",
"listed": true
},
{
"chainId": 14,
"name": "Atlas TSO",
"description": "Atlas Flare Network Data Provider. Doing what is best for the users and the network.",
"url": "https://tsoatlas.xyz",
"address": "0x07702A7494F760B0b3642463BdD2B7A13cFDDbb2",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x07702A7494F760B0b3642463BdD2B7A13cFDDbb2.png",
"listed": true
},
{
"chainId": 14,
"name": "AU",
"description": "AU provide accurate and reliable price feeds to the Flare Network and a transparent, incentivised, risk-free delegation service. We do so by leveraging the distributed nature of the network and its participants.",
"url": "https://www.au.cc",
"address": "0x4990320858AE3528B645C60059281a66C3488888",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x4990320858AE3528B645C60059281a66C3488888.png",
"listed": true
},
{
"chainId": 14,
"name": "Aureus Ox",
"description": "Aureus Ox is building a scalable and reliable FTSO signal provider. Our initial goals include accurate price submission and delegation tools.",
"url": "https://aureusox.com",
"address": "0x9269fb79B098AB314de8A1E2AFb8705678520443",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9269fb79B098AB314de8A1E2AFb8705678520443.png",
"listed": true
},
{
"chainId": 14,
"name": "Best FTSO",
"description": "Our goal is to offer users the most value for their delegation. Come check out our NFT club and earn more than just FLR rewards!",
"url": "https://bestftso.xyz",
"address": "0x510Da05b7bf9d7713752da662AEdb26770F30d19",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x510Da05b7bf9d7713752da662AEdb26770F30d19.png"
},
{
"chainId": 14,
"name": "Bifrost Wallet",
"description": "Bifrost Wallet runs a competitive, accurate and reliable oracle service since 2021. Developed by Towo Labs a Flare Network development partner.",
"url": "https://bifrostwallet.com",
"address": "0x9A46864A3b0a7805B266C445289C3fAD1E48f18e",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9A46864A3b0a7805B266C445289C3fAD1E48f18e.png",
"listed": true
},
{
"chainId": 14,
"name": "Bitrue",
"description": "Bitrue has been supporting Flare, XRP, and financial decentralization since 2018! Sign up on Bitrue today to trade your FLR alongside 800+ other cryptocurrencies, and try out special leveraged FLR pairs with Futures trading. Find out more at www.bitrue.com",
"url": "https://www.bitrue.com",
"address": "0x2c8c4cA06D4dC335b37034a0315a00c04b409781",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x2c8c4cA06D4dC335b37034a0315a00c04b409781.png",
"listed": true
},
{
"chainId": 14,
"name": "Burst FTSO",
"description": "We strive to provide the best signals possible. Decentralization is extremely important to us, with this FTSO we will be helping the Flare blockchain achieve this.",
"url": "https://burstftso.xyz",
"address": "0x670a7Fd22cAa9C2Fb5B798078d084B29AB4bC63C",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x670a7Fd22cAa9C2Fb5B798078d084B29AB4bC63C.png",
"listed": true
},
{
"chainId": 14,
"name": "Bushido FTSO",
"description": "As samurai are born to serve their lord and die, Bushido FTSO exists to provide accurate and reliable prices for the Flare ecosystem.",
"url": "https://bushi.finance",
"address": "0xC7cF3238D2ca63d01Ad4d42B4cCB9dB8b0adE702",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xC7cF3238D2ca63d01Ad4d42B4cCB9dB8b0adE702.png",
"listed": true
},
{
"chainId": 14,
"name": "Canary FTSO",
"description": "Canary FTSO, your European-based Signal Service Provider, actively contributes to the Flare ecosystem. We ensure a secure and stable price provision service, allowing you to delegate your votes worldwide.",
"url": "https://can4ary.com",
"address": "0x0b31C6571D6C0dd9250b737Ea5e7e3D918d99046",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x0b31C6571D6C0dd9250b737Ea5e7e3D918d99046.png"
},
{
"chainId": 14,
"name": "Catenalytica",
"description": "Our mission is to deliver the highest possible reward rates for our delegators. We achieve this by combining a high-accuracy FTSO algorithm with low validator fees, all while committing to complete data transparency.",
"url": "https://catenalytica.com",
"address": "0xad918962795547a8c997F96f7BAbB822612a5FfE",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xad918962795547a8c997F96f7BAbB822612a5FfE.png",
"listed": true
},
{
"chainId": 14,
"name": "CFN",
"description": "A passive income community driven project based on utility NFTs.",
"url": "https://cryptapero.fr",
"address": "0xf12f09E8Ee7E0C0D0b3279120325A97dc821E971",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xf12f09E8Ee7E0C0D0b3279120325A97dc821E971.png",
"listed": true
},
{
"chainId": 14,
"name": "Chainbase Staking",
"description": "Chainbase staking is not just a validator provider, we are your powerful ecosystem collaborator.",
"url": "https://staking.chainbase.com",
"address": "0x6434b1ED626585D3e58E995aD3C2cc0D6718755c",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x6434b1ED626585D3e58E995aD3C2cc0D6718755c.png",
"listed": true
},
{
"chainId": 14,
"name": "Comfy Nodes",
"description": "Only the comfiest rates.",
"url": "https://www.comfynodes.com",
"address": "0x9C44c70180642cF4Cfd06d77b84Bb8F864ea5697",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9C44c70180642cF4Cfd06d77b84Bb8F864ea5697.png"
},
{
"chainId": 14,
"name": "Cottage Nodes",
"description": "Our delegation services enable token holders to earn lucrative rewards on the Flare Network. Advanced algorithms are constantly refined with the objective of generating maximum reward for the benefit of all Flare token holders who have delegated their vote to us. Validating from under the Alps.",
"url": "https://www.cottagenodes.com",
"address": "0x6EBbd69832AF87434253C10F9045E012286f509E",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x6EBbd69832AF87434253C10F9045E012286f509E.png",
"listed": true
},
{
"chainId": 14,
"name": "DataVector",
"description": "DataVector is an Infrastructure Provider on Flare Network providing validation services and reliable data provisioning to the Flare oracle system.",
"url": "https://datavector.org",
"address": "0xCaA49C97318b6Bb62b7F9241891D70F87FC05D35",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xCaA49C97318b6Bb62b7F9241891D70F87FC05D35.png",
"listed": true
},
{
"chainId": 14,
"name": "Defi Oracles",
"description": "DeFi Oracles is a multi-chain decentralized finance oracle service provider.",
"url": "https://defioracles.org",
"address": "0x3fE77e9be1ECcDe815311f9bcc40814F4eC6AE09",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x3fE77e9be1ECcDe815311f9bcc40814F4eC6AE09.png",
"listed": true
},
{
"chainId": 14,
"name": "Digital Dynamix",
"description": "The Digital Dynamix Validator is a key component of our expanding ecosystem on Flare which allows Rewards to be forwarded to our amazing community through novel initiatives - Sharing is Caring!",
"url": "https://www.digitaldynamix.co.uk",
"address": "0x57711D552E2309c7a83716351e7a59a438f17e3a",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x57711D552E2309c7a83716351e7a59a438f17e3a.png",
"listed": true
},
{
"chainId": 14,
"name": "E8T.app",
"description": "Flare network signal provider by the E8T team. Bringing trusted reviews to the blockchain",
"url": "https://www.e8t.app",
"address": "0x3C1BafC9E066dfdeBCf6cFcDEd6aBF89541b08c2",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x3C1BafC9E066dfdeBCf6cFcDEd6aBF89541b08c2.png"
},
{
"chainId": 14,
"name": "Encode Club",
"description": "We are a global community of top developers, professionals and talented students in Emerging Tech.",
"url": "https://www.encode.club",
"address": "0x1c2bB2CA14914a462AB7268DE4A48eF6445116c2",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x1c2bB2CA14914a462AB7268DE4A48eF6445116c2.png",
"listed": true
},
{
"chainId": 14,
"name": "Envision",
"description": "Providing reliable data feeds to the Flare Network",
"url": "https://www.envisionftso.com",
"address": "0x9b42B895D2A10D048eaf4996fDf93aEBf59167BF",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9b42B895D2A10D048eaf4996fDf93aEBf59167BF.png",
"listed": true
},
{
"chainId": 14,
"name": "EvolveFTSO",
"description": "EvolveFTSO is a reliable data provider, run by a team providing continuous improvements to produce the best results",
"url": "https://evolveftso.com",
"address": "0x9b5F4A2177135A2A6DC83893D5d58e684419aB24",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9b5F4A2177135A2A6DC83893D5d58e684419aB24.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare Bank",
"description": "Flare Bank is providing you the ability to Experience the Power of Compound Gains",
"url": "https://flrbank.com",
"address": "0xfa9368CFbee3b070d8552d8e75Cdc0fF72eFAC50",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xfa9368CFbee3b070d8552d8e75Cdc0fF72eFAC50.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare Beacon",
"description": "Flare network signal provider. Beaconing since inception",
"url": "https://flarebeacon.xyz",
"address": "0xdd33Ba13F32C90D678422251B52B005335fB7A4c",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xdd33Ba13F32C90D678422251B52B005335fB7A4c.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare Dienst",
"description": "An EU-based data provider.",
"url": "https://flare-dienst.xyz",
"address": "0xDe40311b4b538392e0e7dCC134426C397c956cA9",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xDe40311b4b538392e0e7dCC134426C397c956cA9.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare Ocean",
"description": "FlareOcean provides accurate and reliable price feeds to the Songbird & Flare Networks and a transparent, incentivized, risk-free delegation service.",
"url": "https://flareocean.io",
"address": "0x8b9aa18cd47C6BF7a06B0fe458B2E1CA832F7a03",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x8b9aa18cd47C6BF7a06B0fe458B2E1CA832F7a03.png"
},
{
"chainId": 14,
"name": "Flare Oracle",
"description": "Flare Oracle, a data provider to the Flare network. Our goal is to give users a plug & play solution to effortlessly control their passive income.",
"url": "https://flareoracle.io",
"address": "0xF0F095bbd5e2E33e9c1703cdEDd0015280406E90",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xF0F095bbd5e2E33e9c1703cdEDd0015280406E90.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare Portal",
"description": "Flare Portal - FTSO Data Provider - provides accurate price and reliable globally sourced data. Using your Bifrost wallet to delegate your vote to us is greatly appreciated.",
"url": "https://flareportal.com",
"address": "0x9225db8B30A59D8Dd15448E2E5918BD160262b5D",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9225db8B30A59D8Dd15448E2E5918BD160262b5D.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare Sensei",
"description": "Flare Sensei provides FTSO, FDC and staking infrastructure for both the Songbird and Flare network.",
"url": "https://ftso-sensei.com",
"address": "0x2566E97B2947dC2D6E9CAf0BF737Aabd7e78a0f6",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x2566E97B2947dC2D6E9CAf0BF737Aabd7e78a0f6.png",
"listed": true
},
{
"chainId": 14,
"name": "Flare.Space",
"description": "Your most convenient and efficient Flare network data provider and validator. Visit us to get access to information, tools and components for integration with Flare network.",
"url": "https://flare.space",
"address": "0x111246F191a2A20012723369d3CEc77777E774E9",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x111246F191a2A20012723369d3CEc77777E774E9.png",
"listed": true
},
{
"chainId": 14,
"name": "FlareBase",
"description": "FlareBase is an Italian Flare provider. We offer near real time prices with an high accuracy rate, FDC data and Flare validators.",
"url": "https://www.flare-base.io",
"address": "0xAc2884A4479Bf7c21AA0462d52bc9c76c3a9A3dD",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xAc2884A4479Bf7c21AA0462d52bc9c76c3a9A3dD.png",
"listed": true
},
{
"chainId": 14,
"name": "FlareBus",
"description": "FlareBus is a decentralized FTSO provider that delivers accurate and real-time price data for the Flare Network ecosystem. Our infrastructure is a hybrid blend of dedicated bare-metal servers and scalable cloud environments. This combination allows us to optimize for both low-latency performance and high availability.",
"url": "https://flarebus.com",
"address": "0x6c5C813Dd19F071bE0b6e83701955810f118e717",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x6c5C813Dd19F071bE0b6e83701955810f118e717.png",
"listed": true
},
{
"chainId": 14,
"name": "FlareFi",
"description": "We are a trustworthy data provider for Songbird and Flare Network, the new distributed ecosystem. We collect data reliably for the benefit of the ecosystem and our delegators.",
"url": "https://flarefi.tech",
"address": "0x184DbC7F2D96aBDfDe5CDa8c56F3F13DbF138cdF",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x184DbC7F2D96aBDfDe5CDa8c56F3F13DbF138cdF.png",
"listed": true
},
{
"chainId": 14,
"name": "FlareFTSO",
"description": "FlareFTSO is a signal provider for the Flare Time Series Oracle, providing reliable price feeds, delegation services, validator services, and other solutions to the crypto community.",
"url": "https://flareftso.com",
"address": "0x58048528D3d3aea14Ec95eb5e98b18dE51780e27",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x58048528D3d3aea14Ec95eb5e98b18dE51780e27.png",
"listed": true
},
{
"chainId": 14,
"name": "Flaris",
"description": "UK technology",
"url": "https://www.flaris.uk",
"address": "0xf8B1Dcf2594AfD082aae088661bF574CB9BbDC61",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xf8B1Dcf2594AfD082aae088661bF574CB9BbDC61.png",
"listed": true
},
{
"chainId": 14,
"name": "FLR Labs FTSO",
"description": "Our algorithm is built on innovative technology that optimizes the submission of the most accurate time series data for the FTSO. We aim to support decentralized data collection and to create many new applications using the Flare technology stack.",
"url": "https://flrlabs.com",
"address": "0x14b424Bc9E9B8091A40384ff3d8F0C3DfC1a2879",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x14b424Bc9E9B8091A40384ff3d8F0C3DfC1a2879.png"
},
{
"chainId": 14,
"name": "FocusTSO",
"description": "FocusTSO. Data provider built by Focus Global Team of developers and Polish Flare community members who run an educational portal in Polish , English and Japanese. The team also provide tools like Airdrop Simulator and recently released Delegation Portal.",
"url": "https://ftso.focusflr.app",
"address": "0xb084575CaCedf7DEdd78329656715651F8f66712",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xb084575CaCedf7DEdd78329656715651F8f66712.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSchizO",
"description": "FTSchizO is a SGB/FLR data provider that focuses on esoteric community building.",
"url": "https://ftschizo.xyz",
"address": "0xa41d19F4258a388c639B7CcD938FCE3fb7D05e86",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xa41d19F4258a388c639B7CcD938FCE3fb7D05e86.png"
},
{
"chainId": 14,
"name": "FTSO Asia",
"description": "We are an Asian dynamic data provider for the FTSO bringing growth to the decentralized Flare.",
"url": "https://asia.ingen.com.ph",
"address": "0xdd7B2Bac728f027f23aDD7128711ecB60f761aD5",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xdd7B2Bac728f027f23aDD7128711ecB60f761aD5.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO Brasil",
"description": "FTSO Brasil is the first ftso in South America working together with Flare Networks to empower token holders with knowledge and rewards.",
"url": "https://www.ftso-brasil.com.br",
"address": "0x0DDD059Bf29DE115b48B2844E112eA9A2fcCfC2b",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x0DDD059Bf29DE115b48B2844E112eA9A2fcCfC2b.png"
},
{
"chainId": 14,
"name": "FTSO EU",
"description": "Ftso.eu is one of the oldest signal providers building on Flare, with a strong community and presence. Our signals are weighted, dynamic, resilient and processed with an innovative approach on a distributed P2P network to guarantee their accuracy.",
"url": "https://www.ftso.eu",
"address": "0xb0421af2cFfB21D8a0Be4087448146E4f9cbD306",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xb0421af2cFfB21D8a0Be4087448146E4f9cbD306.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO GG",
"description": "FTSO GG a data provider from Florida/USA",
"url": "https://ftso.gg",
"address": "0x32fE8AC862453DC1B8a390CD3AF821b4FA6fF39D",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x32fE8AC862453DC1B8a390CD3AF821b4FA6fF39D.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO London",
"description": "Let’s work together to maximise your Flare Rewards. Our delegation services enable token holders to earn lucrative rewards on the Flare Network",
"url": "https://www.ftso.london",
"address": "0x4429306b301a0EB573Fa5758BB40AA581255c624",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x4429306b301a0EB573Fa5758BB40AA581255c624.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO Paris",
"description": "FTSO Paris is a data provider based in Paris, France, submitting prices calculated from over 80 cryptocurrency exchanges using a proprietary, robust, and fault-tolerant algorithm.",
"url": "https://ftso.paris",
"address": "0x085841B253590281cc5c5222b09D4e59a605E774",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x085841B253590281cc5c5222b09D4e59a605E774.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO Plus",
"description": "FTSO provider with an emphasis on accuracy.",
"url": "https://ftso.plus",
"address": "0x3D2c08eD9B2333cbce2b8A219e02F4Aa31ebcCd3",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x3D2c08eD9B2333cbce2b8A219e02F4Aa31ebcCd3.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO UK",
"description": "Signal provider on the Flare Network. UK-based team with global coverage. Providing robust and weighted signals. Dedicated to unlocking value.",
"url": "https://www.ftso.uk",
"address": "0x5F911C2C681f678e5A3a8D54f950d6b192CC16E3",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x5F911C2C681f678e5A3a8D54f950d6b192CC16E3.png"
},
{
"chainId": 14,
"name": "FTSO Wales",
"description": "Providing accurate and reliable price signals to the Flare network. Delegate your FLR with us and start earning risk-free rewards today!",
"url": "https://ftso.wales",
"address": "0xDD27994108c788613800A8356253Aad99A5DAeD5",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xDD27994108c788613800A8356253Aad99A5DAeD5.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSO Yggdrassil",
"description": "Inspired by the mighty Yggdrassil tree, my FTSO stands firmly rooted in the Flare Network nurturing reliable and decentralized data feeds, symbolizing strength and growth.",
"url": "https://ftso-yggdrassil.com",
"address": "0x3035364f988CfC4574D459009F9D3f68D9d734d7",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x3035364f988CfC4574D459009F9D3f68D9d734d7.png"
},
{
"chainId": 14,
"name": "FTSO4ALL",
"description": "FTSO4ALL is a reliable data provider that aims to become the reference data provider for everyone",
"url": "https://ftso4all.xyz",
"address": "0xA99C45A2D3dF0547CD43190cB388EfC8bCdd75Ec",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xA99C45A2D3dF0547CD43190cB388EfC8bCdd75Ec.png"
},
{
"chainId": 14,
"name": "FTSOBest",
"description": "The name is our mission: We are a data provider that enables the community to participate directly in the project’s success through utility NFTs",
"url": "https://ftso.best",
"address": "0xc396b6f023f3A1C894a20FBa08432E847C05c7F9",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xc396b6f023f3A1C894a20FBa08432E847C05c7F9.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSOCAN",
"description": "FTSO Canada is your partner to help you build your passive income on the Flare Network, by providing the Flare Network with a fast and efficient price provider.",
"url": "https://ftsocan.com",
"address": "0x9e55a49D251324B1623dc2A81894D1AfBfB8bbdC",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9e55a49D251324B1623dc2A81894D1AfBfB8bbdC.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSOExpress",
"description": "FTSO Express, looking to be a no frills, minimal FTSO Provider",
"url": "https://ftso.express",
"address": "0xc0452CEcee694Ab416d19E95a0907f022DEC5664",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xc0452CEcee694Ab416d19E95a0907f022DEC5664.png",
"listed": true
},
{
"chainId": 14,
"name": "FTSORK",
"description": "Flare time series oracle signal provider by Adark d.o.o",
"url": "https://www.ftso.adark.io",
"address": "0x22a95C2DB77742FFb127f6b084BEdEE4d182e1ba",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x22a95C2DB77742FFb127f6b084BEdEE4d182e1ba.png"
},
{
"chainId": 14,
"name": "Google Cloud",
"description": "Google Cloud's data provider for Flare Network",
"url": "https://cloud.google.com",
"address": "0x50A1BCa4d5e91B3bcea7891742248F5BA5ACF0e5",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x50A1BCa4d5e91B3bcea7891742248F5BA5ACF0e5.png",
"listed": true
},
{
"chainId": 14,
"name": "HEWG",
"description": "HEWG strikes to provide best FTSO price data.",
"url": "https://hewg.org",
"address": "0xB6d68Ea6C4dE734Ec481F92AFD1C35F712441b73",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB6d68Ea6C4dE734Ec481F92AFD1C35F712441b73.png",
"listed": true
},
{
"chainId": 14,
"name": "Honest Systems",
"description": "We validate, support FTSO and FDC, and do the honest work powering decentralized systems.",
"url": "https://honestsystems.io",
"address": "0x00031123b50cdD187dc4D2982164b5458061B463",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x00031123b50cdD187dc4D2982164b5458061B463.png",
"listed": true
},
{
"chainId": 14,
"name": "HONO-TSO",
"description": "Hono (Jap Honoo) It's the flame that ignites the game. Let's play!",
"url": "https://hono-tso.net",
"address": "0xf455C12ed41edcD4c2FcC8a73F420e5833348A02",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xf455C12ed41edcD4c2FcC8a73F420e5833348A02.png",
"listed": true
},
{
"chainId": 14,
"name": "HP/Mana Nodes",
"description": "HP/Mana Nodes is a community based infrastructure provider on Flare Networks. Mint Player One or Player Two NFTs to fund our validator’s self-bonding and secure your place as an infrastructure shareholder. The more FLR is bonded, the more yield is shared by all.",
"url": "https://veriguardnft.xyz",
"address": "0xF61B94dEdC5f23398997D73B7701D67556eaaD6F",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xF61B94dEdC5f23398997D73B7701D67556eaaD6F.png",
"listed": true
},
{
"chainId": 14,
"name": "HT Markets FTSO",
"description": "HT Markets FTSO is powered by Hex Trust, that is the leading and most reliable Asian custodian.",
"url": "https://hextrust.com",
"address": "0xC77c8e1202c1A8264b37264EB6c08cb86a718d1a",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xC77c8e1202c1A8264b37264EB6c08cb86a718d1a.png",
"listed": true
},
{
"chainId": 14,
"name": "HXK Oracle",
"description": "HXK Oracle will onboard the next billion users to Flare by providing accurate price feeds to FTSO system",
"url": "https://hadexkori.com",
"address": "0x3805762710f1aeb3b62d3Cd36820eA19eb88a8D0",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x3805762710f1aeb3b62d3Cd36820eA19eb88a8D0.png"
},
{
"chainId": 14,
"name": "InfStones",
"description": "Infinite ease, speed, power. The ultimate WEB3 infrastructure platform",
"url": "https://infstones.com",
"address": "0xB1Aa0F2691Db6bBb2969EfC7BE70787F58DD2461",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB1Aa0F2691Db6bBb2969EfC7BE70787F58DD2461.png",
"listed": true
},
{
"chainId": 14,
"name": "Insight Oracle",
"description": "We are a group of friends obsessed with crypto, maths and algorithms. We want to build dApps and help to develop and expand the Flare Network.",
"url": "https://insightoracle.site",
"address": "0x8E621dEdDE2B5F6D7d9f3Da3Ed77656a991B7Bf3",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x8E621dEdDE2B5F6D7d9f3Da3Ed77656a991B7Bf3.png"
},
{
"chainId": 14,
"name": "ITB Validator",
"description": "ITB runs DeFi strategies for the largest institutions in the crypto space. It also provides protocol-level risk signals for the top DeFi protocols in the market.",
"url": "https://www.intotheblock.com",
"address": "0x5Cbd87F8591869f5959a196722245F0C893C78EA",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x5Cbd87F8591869f5959a196722245F0C893C78EA.png",
"listed": true
},
{
"chainId": 14,
"name": "Ivy Oracle",
"description": "Low fee and optimised rewards, Ivy Oracle strive for providing the best open analytics tools for the community.",
"url": "https://ivyoracle.xyz",
"address": "0x64D998BC81424131E5aF05071263fDeBD1a82986",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x64D998BC81424131E5aF05071263fDeBD1a82986.png",
"listed": true
},
{
"chainId": 14,
"name": "Juice Nodes",
"description": "Juice Nodes is an independently owned and operated validator focused on providing fast and accurate data for the Flare ecosystem.",
"url": "https://juicenodes.com",
"address": "0xce73ADe61b0d0100BA1507D9fA1Dc2feA3046578",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xce73ADe61b0d0100BA1507D9fA1Dc2feA3046578.png",
"listed": true
},
{
"chainId": 14,
"name": "Kiln",
"description": "Enterprise-grade staking made easy",
"url": "https://kiln.fi",
"address": "0x6df84895f1f1f6F6767C59324F94089d4097051A",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x6df84895f1f1f6F6767C59324F94089d4097051A.png",
"listed": true
},
{
"chainId": 14,
"name": "Knot Nodes",
"description": "Knot Nodes is a Signal Provider that aims to contribute to the endeavor of building a decentralized world by delivering necessary data to the Flare network.",
"url": "https://www.knotnodes.com",
"address": "0xF33A0Ac50f2E85737af577ea68583f264C7A1f78",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xF33A0Ac50f2E85737af577ea68583f264C7A1f78.png",
"listed": true
},
{
"chainId": 14,
"name": "Last Oracle",
"description": "Infrastructure services for Web3 and beyond.",
"url": "https://lastoracle.xyz",
"address": "0x535268cB19f2cC0c65D463be6Ab7751Ff4E9fC07",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x535268cB19f2cC0c65D463be6Ab7751Ff4E9fC07.png",
"listed": true
},
{
"chainId": 14,
"name": "Lena Instruments",
"description": "Institutional grade vote delegation service and FTSO signal provider to the Flare ecosystem",
"url": "https://www.lena.tech",
"address": "0xdde9BcB57cbA00A9718b67b4074ec6B62C542957",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xdde9BcB57cbA00A9718b67b4074ec6B62C542957.png",
"listed": true
},
{
"chainId": 14,
"name": "LightFTSO",
"description": "Homebrewed FTSO, light, nimble, with high rewards and lower fees. Get on! We're getting passive income!",
"url": "https://www.lightft.so",
"address": "0xA9C69eb9De79188A9ABa46c5336607F88A80eC89",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xA9C69eb9De79188A9ABa46c5336607F88A80eC89.png",
"listed": true
},
{
"chainId": 14,
"name": "Linden Services",
"description": "Linden Services provides data to the Flare oracle system, validates transactions and blocks, and participates in the consensus process.",
"url": "https://lindenservices.org",
"address": "0x27Cb5f4EbA81976617b75953053D33EF2002daDF",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x27Cb5f4EbA81976617b75953053D33EF2002daDF.png",
"listed": true
},
{
"chainId": 14,
"name": "Luganodes",
"description": "Swiss-Operated Institutional Grade Staking Provider",
"url": "https://luganodes.com",
"address": "0xB53F6CFaB63CAbFc255c702ebeB273510DB541d7",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB53F6CFaB63CAbFc255c702ebeB273510DB541d7.png",
"listed": true
},
{
"chainId": 14,
"name": "Mickey B Fresh",
"description": "We provide a hub of resources revolving around everything build on the XRP, SGB and Flare networks. We pride ourselves on transparency and evidence-based content. The group behind this site are long term holders of XRP and researching this digital asset for years. The focus of the site will mainly be on the XRP, Flare and Songbird Networks.",
"url": "https://www.mickeybfresh.com",
"address": "0x4E94Dbff86b7f1F5ac9FD849E8101A4d52E947eC",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x4E94Dbff86b7f1F5ac9FD849E8101A4d52E947eC.png",
"listed": true
},
{
"chainId": 14,
"name": "MirSFlr",
"description": "On a mission to deliver fast, reliable and transparent data on the Flare Network to maximize rewards for delegators with near-zero downtime.",
"url": "https://www.mirhollio.com",
"address": "0xAd9105BEF5E5df2Eacbe2De9037A96695b00cade",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xAd9105BEF5E5df2Eacbe2De9037A96695b00cade.png",
"listed": true
},
{
"chainId": 14,
"name": "MyFTSO",
"description": "MyFtso is a community centric data provider. We are looking to deliver accurate and reliable price feeds to the Flare/Songbird Networks to maximize returns for all.",
"url": "https://myftso.xyz",
"address": "0x6da8b10612c2C5a5A62642d4a666bC830E74FC40",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x6da8b10612c2C5a5A62642d4a666bC830E74FC40.png",
"listed": true
},
{
"chainId": 14,
"name": "Nansen",
"description": "Nansen is a leading on-chain analytics platform founded in 2020, and is now one of the most trusted names in crypto, serving traders and institutions. Disclaimer: delegating comes with slashing risks",
"url": "https://nansen.ai",
"address": "0xc382325BddE0BAa40A03A34863fCE45C510a4bE9",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xc382325BddE0BAa40A03A34863fCE45C510a4bE9.png",
"listed": true
},
{
"chainId": 14,
"name": "NewWave",
"description": "NewWave is a SongBird Network signal provider. We are proud to be a part of Flare Network.",
"url": "https://newwave-provider.com",
"address": "0xF1f2a4859EA38A0c2CEb2eAF4c591a8257F2BB34",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xF1f2a4859EA38A0c2CEb2eAF4c591a8257F2BB34.png"
},
{
"chainId": 14,
"name": "NORTSO",
"description": "NORTSO is a Norwegian-based data provider aiming to provide the most accurate price signals on the network.",
"url": "https://nortso.xyz",
"address": "0x00c0fFEf480E392f5Fe7af592214855Ff872fa80",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x00c0fFEf480E392f5Fe7af592214855Ff872fa80.png",
"listed": true
},
{
"chainId": 14,
"name": "O1 FTSO",
"description": "O1 FTSO is an open-minded data signals provider looking for a great partnership on the Flare and Songbird Network.",
"url": "https://o1ftso.netlify.app",
"address": "0xBE304C28F3a050486b9733AE56cB5541B16c007B",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xBE304C28F3a050486b9733AE56cB5541B16c007B.png"
},
{
"chainId": 14,
"name": "Odin",
"description": "California data provider on the Flare Network. Aggregating hundreds of external data points in order to provide the most accurate prices to the FTSO system.",
"url": "https://odinftso.com",
"address": "0x0701ab70BB0deb504e2daD44ffe2f8E0f7399a1D",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x0701ab70BB0deb504e2daD44ffe2f8E0f7399a1D.png"
},
{
"chainId": 14,
"name": "Oracle Beast FTSO",
"description": "Providing a Flare Time Series Oracle for those who want to delegate like a BEAST!",
"url": "https://www.oracle-beast.com",
"address": "0x5E2aFfA528DB55feE8cf8cCC41d0A5bb8BaCedC3",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x5E2aFfA528DB55feE8cf8cCC41d0A5bb8BaCedC3.png",
"listed": true
},
{
"chainId": 14,
"name": "Oracle Daemon",
"description": "Oracle Daemon is a team of dedicated professionals designing the best data provider.",
"url": "https://www.oracle-daemon.com",
"address": "0xfe532cB6Fb3C47940aeA7BeAd4d61C5e041D950e",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xfe532cB6Fb3C47940aeA7BeAd4d61C5e041D950e.png",
"listed": true
},
{
"chainId": 14,
"name": "Poseidon FTSO",
"description": "Poseidon FTSO is an FTSO on Songbird and Flare mainnet. We provide ourself in operating a functional FTSO which plays by the rules. We aim to build a robust FTSO which will help enhance the Flare ecosystem.",
"url": "https://poseidon-ftso.com",
"address": "0x02a256FF137D680aC591f1959D64a8669006c95c",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x02a256FF137D680aC591f1959D64a8669006c95c.png",
"listed": true
},
{
"chainId": 14,
"name": "PRICEKRAKEN",
"description": "Germany based FTSO data provider with passion for improvements",
"url": "https://www.pricekraken.de",
"address": "0xB95f930711DA83226416FFaAB084249B2e01e1F2",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB95f930711DA83226416FFaAB084249B2e01e1F2.png",
"listed": true
},
{
"chainId": 14,
"name": "Quicknode",
"description": "Accelerating Web3 with lightning-fast Flare infrastructure ⚡ SOC 1 Type 2, SOC 2 Type 2, ISO 27001 Certified.",
"url": "https://quicknode.com",
"address": "0x7121Ee7189631b7DD08f0cc82F931403a0548E28",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x7121Ee7189631b7DD08f0cc82F931403a0548E28.png",
"listed": true
},
{
"chainId": 14,
"name": "Resonance",
"description": "Resonance delivers accurate, transparent oracle signals on Flare, while prioritizing durability and the network's long-term health over short-term wins.",
"url": "https://resonanceoracle.xyz",
"address": "0x62571dE064cAC560207b7116C6d87C818f7376cC",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x62571dE064cAC560207b7116C6d87C818f7376cC.png",
"listed": true
},
{
"chainId": 14,
"name": "SAKURA",
"description": "Beautiful Japanese SAKURA and beautiful Flare Network technology.",
"url": "https://sakura-japan.com",
"address": "0x7081a25589875F5d9D91d9f58bcf466706D8f997",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x7081a25589875F5d9D91d9f58bcf466706D8f997.png"
},
{
"chainId": 14,
"name": "ScandiNodes FTSO",
"description": "We are proud to be part of Flare Networks. We have a responsibility and take our role as a signal provider very serious. We do not only provide data estimates. We provide good estimates, for maximum returns.",
"url": "https://ftso.scandinodes.com",
"address": "0xB6d771E1892EB2c04b136C13Abe23390022e8206",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB6d771E1892EB2c04b136C13Abe23390022e8206.png"
},
{
"chainId": 14,
"name": "Scintilla",
"description": "High accuracy signal provider to the Flare Network.",
"url": "https://www.scintilla.io",
"address": "0xeFb939Ebe430efD987c2650367a1b2c9f070d3f1",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xeFb939Ebe430efD987c2650367a1b2c9f070d3f1.png",
"listed": true
},
{
"chainId": 14,
"name": "SenseiNode",
"description": "SenseiNode provides top-tier, secure, and reliable blockchain infrastructure. Trusted by leading networks and developers, SenseiNode is the key partner for powering decentralization.",
"url": "https://senseinode.com",
"address": "0xe08898B7B8b18dBCdDcC6339c8b9c19EFfA81413",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xe08898B7B8b18dBCdDcC6339c8b9c19EFfA81413.png",
"listed": true
},
{
"chainId": 14,
"name": "SignalChamp",
"description": "SignalChamp is a premium and super-fast delegation service. Enjoy high reward rates and low fees with just a few clicks.",
"url": "https://www.signalchamp.com",
"address": "0xB0EBac02775B5fD157659c3483AC3a205786c2E7",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xB0EBac02775B5fD157659c3483AC3a205786c2E7.png",
"listed": true
},
{
"chainId": 14,
"name": "Singularity Finance",
"description": "We are a Flare and Songbird blockchain networks data signals provider based in Egypt.",
"url": "https://singularity.finance",
"address": "0xAe45A3c0aD97504814752ea74820Ac14991E030c",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xAe45A3c0aD97504814752ea74820Ac14991E030c.png"
},
{
"chainId": 14,
"name": "Solarius",
"description": "Solarius Flare Time Series Oracle provides accurate data from advanced algorithms using our reliable and robust hardware.",
"url": "https://www.solarius.io/ftso",
"address": "0x8863eAD675DfF5Cf260D5FdC079d50996D1F3cd4",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x8863eAD675DfF5Cf260D5FdC079d50996D1F3cd4.png",
"listed": true
},
{
"chainId": 14,
"name": "SolidiFi Nexus",
"description": "SolidiFi Nexus: Pioneering Flare's data integrity with accurate price feeds, free DeFi tools, and community-focused dApps since the Songbird days.",
"url": "https://solidifinexus.com",
"address": "0x4CfB79399cd840414a2BeF2c7C7A0cE3b9b0F89d",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x4CfB79399cd840414a2BeF2c7C7A0cE3b9b0F89d.png"
},
{
"chainId": 14,
"name": "SparkDEX",
"description": "Flares DeFi Hub.",
"url": "https://sparkdex.ai",
"address": "0xf8Fb4cD8728F7def92b12F9de005Df934f0b69cB",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xf8Fb4cD8728F7def92b12F9de005Df934f0b69cB.png",
"listed": true
},
{
"chainId": 14,
"name": "Sparkles FTSO",
"description": "Sparkles FTSO is an extension of Sparkles, an NFT platform on the Songbird/Flare Network. Our philosophy is to push boundaries and create standards, be creative and make everything we do fun and interactive for our community.",
"url": "https://sparklesnft.com",
"address": "0x3D985CFF3C4680428d5ce093dBc4919a57F6E2f6",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x3D985CFF3C4680428d5ce093dBc4919a57F6E2f6.png",
"listed": true
},
{
"chainId": 14,
"name": "SSDS",
"description": "SSD Speedy LLC - A professionally manager Flare/Songbird signal provider - Maximize your rewards. Delegate to us for accurate pricing.",
"url": "https://www.ssdspeedy.com/flare",
"address": "0x15bC48091332808391ac700A980B12dD4FC266Fb",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x15bC48091332808391ac700A980B12dD4FC266Fb.png",
"listed": true
},
{
"chainId": 14,
"name": "StakeCapital FTSO",
"description": "Stake Capital is a group run by Blockchain and DeFi pioneers standing at the intersection of traditional industries and blockchain technology.",
"url": "https://stake.capital",
"address": "0x9Dfc1c62B7F7a3D4D412Fc502Cba37157446aEe9",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x9Dfc1c62B7F7a3D4D412Fc502Cba37157446aEe9.png",
"listed": true
},
{
"chainId": 14,
"name": "Stakecore",
"description": "An infrastructure provider that recognizes the importance of reliable data for an oracle-based chain.",
"url": "https://stakecore.org",
"address": "0x1e68DC808A240C096F0261144dc41fd4c883Cfb0",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x1e68DC808A240C096F0261144dc41fd4c883Cfb0.png",
"listed": true
},
{
"chainId": 14,
"name": "Stakeway",
"description": "Stakeway by Gateway.fm is a premier staking provider offering Enterprise Grade Infrastructure tailored for customers seeking reliable and secure staking solutions. With a focus on performance and trust, we deliver a robust platform. Our services are designed to optimize staking experience, ensuring seamless operation and maximum returns",
"url": "https://stakeway.com",
"address": "0xf26Be97eB0d7a9fBf8d67f813D3Be411445885ce",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xf26Be97eB0d7a9fBf8d67f813D3Be411445885ce.png",
"listed": true
},
{
"chainId": 14,
"name": "Starlink Oracle",
"description": "Starlink Oracle aggregates data from reliable sources. This ensures that our data algorithm computes accurate prices to consistently submit on delegators behalf. Building the future of global decentralized oracle services.",
"url": "https://starlinkoracle.com",
"address": "0xEb190a42eff3bCCAf65A432F2B7D2b1CaBE30c25",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xEb190a42eff3bCCAf65A432F2B7D2b1CaBE30c25.png",
"listed": true
},
{
"chainId": 14,
"name": "sToadz FTSO",
"description": "FTSO Stoadz provides a Flare Time Series Oracle for those who want to delegate their assets!",
"url": "https://xtoadz.xyz/signal-provider",
"address": "0x729589694a78FF2D8BACf75b7AC4389bd53ee533",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x729589694a78FF2D8BACf75b7AC4389bd53ee533.png",
"listed": true
},
{
"chainId": 14,
"name": "Sun-Dara",
"description": "Sun-Dara is an Asian FTSO provider based primarily in Bangladesh with connections to the United Kingdom. We try and keep things simple and easy to understand. Check out our website for more information and service status updates.",
"url": "https://sun-dara.co.uk",
"address": "0x1E8F916CE03F4ce86186531a8994d366581Ed4be",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0x1E8F916CE03F4ce86186531a8994d366581Ed4be.png",
"listed": true
},
{
"chainId": 14,
"name": "Super Bad Series FTSO",
"description": "Super Bad Series FTSO is contributing data to the Songbird & Flare network, helping decentralize and overall bringing even more value to the collection with special rewards for Flare delegators. Also developing next gen Unreal engine 5 game.",
"url": "https://superbadseries.xyz",
"address": "0xefc66E65c64B000778F487A0262664b802bA773c",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xefc66E65c64B000778F487A0262664b802bA773c.png"
},
{
"chainId": 14,
"name": "Swyke",
"description": "Swyke is an ISO-27001 certified institutional grade validator registered with VARA (Virtual Asset Regulatory Authority)",
"url": "https://swyke.ai",
"address": "0xbF55a6eb78487F49197806025CA82DdaF633204e",
"logoURI": "https://raw.githubusercontent.com/TowoLabs/ftso-signal-providers/master/assets/0xbF55a6eb78487F49197806025CA82DdaF633204e.png",
"listed": true
},
{
"chainId": 14,
"name": "Tailwind FTSO",
"description": "Tailwind FTSO is a European provider run by IT professionals and developers using enterprise technologies to deliver accurate and reliable data.",