This repository was archived by the owner on Feb 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.xml
More file actions
2174 lines (1690 loc) · 141 KB
/
index.xml
File metadata and controls
2174 lines (1690 loc) · 141 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
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>A decentralized storage network for humanity's most important information | Filecoin on Filecoin</title>
<link>https://filecoin.io/</link>
<description>Recent content in A decentralized storage network for humanity's most important information | Filecoin on Filecoin</description>
<generator>Hugo -- gohugo.io</generator>
<lastBuildDate>Thu, 10 Feb 2022 05:00:00 +0000</lastBuildDate>
<atom:link href="/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>PiKNiK’s ESPA Makes Way for Web3 Enterprise Storage on Filecoin</title>
<link>https://filecoin.io/blog/posts/piknik-s-espa-makes-way-for-web3-enterprise-storage-on-filecoin/</link>
<pubDate>Thu, 10 Feb 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/piknik-s-espa-makes-way-for-web3-enterprise-storage-on-filecoin/</guid>
<description>The program helps enterprise storage providers optimize for large datasets on Filecoin.</description>
</item>
<item>
<title>Filecoin News 35</title>
<link>https://filecoin.io/blog/posts/filecoin-news-35/</link>
<pubDate>Wed, 02 Feb 2022 12:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-35/</guid>
<description>A new website and referral program at the scale of Filecoin’s 15+ EiB of decentralized storage power</description>
</item>
<item>
<title>Filecoin for Large Data</title>
<link>https://filecoin.io/blog/posts/filecoin-for-large-data/</link>
<pubDate>Tue, 01 Feb 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-for-large-data/</guid>
<description>A solution for large datasets — and announcing Project Gravity II as a way to incentivize clients to explore this capability.</description>
</item>
<item>
<title>Filecoin与大型数据集</title>
<link>https://filecoin.io/blog/posts/filecoin.zh-cn-1/</link>
<pubDate>Tue, 01 Feb 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin.zh-cn-1/</guid>
<description>02/01/2022 1:00 PM</description>
</item>
<item>
<title>Trusted Setup Complete for Network v15 Upgrade </title>
<link>https://filecoin.io/blog/posts/trusted-setup-complete-for-network-v15-upgrade/</link>
<pubDate>Thu, 27 Jan 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/trusted-setup-complete-for-network-v15-upgrade/</guid>
<description>The Filecoin community successfully completed the task of generating secure parameters for 4 circuits that will enable “SnapDeals” in Network V15.</description>
</item>
<item>
<title>Orbit Community Program</title>
<link>https://filecoin.io/blog/posts/orbit-community-program/</link>
<pubDate>Fri, 21 Jan 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/orbit-community-program/</guid>
<description>We are excited to announce the launch of the Orbit Community Program powered by Protocol Labs and the Filecoin Foundation.</description>
</item>
<item>
<title>Filecoin News 34</title>
<link>https://filecoin.io/blog/posts/filecoin-news-34/</link>
<pubDate>Fri, 21 Jan 2022 00:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-34/</guid>
<description>Take a look at everything that happened in the Filecoin ecosystem in the last year</description>
</item>
<item>
<title>Introducing ref-fvm, a new FVM website, and the Early Builders Program</title>
<link>https://filecoin.io/blog/posts/introducing-ref-fvm-a-new-fvm-website-and-the-early-builders-program/</link>
<pubDate>Wed, 19 Jan 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/introducing-ref-fvm-a-new-fvm-website-and-the-early-builders-program/</guid>
<description>Announcing three major updates along the road of the Filecoin Virtual Machine’s towards Milestone 1.</description>
</item>
<item>
<title>MetaMask Flask: A Snap for Filecoin Devs</title>
<link>https://filecoin.io/blog/posts/metamask-flask-a-snap-for-filecoin/</link>
<pubDate>Tue, 18 Jan 2022 06:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/metamask-flask-a-snap-for-filecoin/</guid>
<description>Developers: Use MetaMask Flask to Access Web3 Tools Like Filecoin Directly from the Wallet</description>
</item>
<item>
<title>Filecoin in 2021: Looking Back at a Year of Exponential Growth</title>
<link>https://filecoin.io/blog/posts/filecoin-in-2021-looking-back-at-a-year-of-exponential-growth/</link>
<pubDate>Thu, 13 Jan 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-in-2021-looking-back-at-a-year-of-exponential-growth/</guid>
<description>2021 was quite the year for the Filecoin network and community! </description>
</item>
<item>
<title>LongHashX and Protocol Labs Launch First-Ever Metaverse Demo Day</title>
<link>https://filecoin.io/blog/posts/longhashx-and-protocol-labs-launch-first-ever-metaverse-demo-day/</link>
<pubDate>Tue, 11 Jan 2022 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/longhashx-and-protocol-labs-launch-first-ever-metaverse-demo-day/</guid>
<description>The Filecoin track will feature innovative projects including Grape Protocol, Lit Protocol, Matters Lab, and Lighthouse.</description>
</item>
<item>
<title>Filecoin Green</title>
<link>https://filecoin.io/blog/posts/filecoin-green/</link>
<pubDate>Tue, 21 Dec 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-green/</guid>
<description>A look of what’s ahead in Filecoin’s push towards environmental sustainability.</description>
</item>
<item>
<title>绿色Filecoin</title>
<link>https://filecoin.io/blog/posts/filecoin-green.zh-cn-1/</link>
<pubDate>Tue, 21 Dec 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-green.zh-cn-1/</guid>
<description>请随下文一同了解Filecoin推动环境可持续发展的前进方向 </description>
</item>
<item>
<title>Filecoin News 33</title>
<link>https://filecoin.io/blog/posts/filecoin-news-33/</link>
<pubDate>Thu, 16 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-33/</guid>
<description>Filecoin Green Shows How Web3 Can Help Fight Climate Change</description>
</item>
<item>
<title>Filecoin News 32</title>
<link>https://filecoin.io/blog/posts/filecoin-news-32/</link>
<pubDate>Thu, 02 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-32/</guid>
<description>The Projects Building the Next Wave of Web3 Developer Tools</description>
</item>
<item>
<title>Filecoin Launchpad Accelerator II: Gaming and the Metaverse</title>
<link>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-gaming-and-the-metaverse/</link>
<pubDate>Tue, 23 Nov 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-gaming-and-the-metaverse/</guid>
<description>3D art galleries, play-to-earn, derivative NFTs, and more — explore the gaming and metaverse projects from Filecoin Launchpad Accelerator II.</description>
</item>
<item>
<title>Filecoin Launchpad Accelerator II: Infrastructure and Dev Tools</title>
<link>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-infrastructure-and-dev-tools/</link>
<pubDate>Tue, 23 Nov 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-infrastructure-and-dev-tools/</guid>
<description>De-risking relationships, identity NFTs for DAOs, community-operated weather frameworks, and more — explore the infrastructure and dev tool projects from Filecoin Launchpad Accelerator II.</description>
</item>
<item>
<title>Filecoin News 31</title>
<link>https://filecoin.io/blog/posts/filecoin-news-31-a-deeper-look-into-the-filecoin-virtual-machine/</link>
<pubDate>Wed, 17 Nov 2021 23:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-31-a-deeper-look-into-the-filecoin-virtual-machine/</guid>
<description>The FVM brings new capabilities to decentralized storage. Plus, five up-and-coming NFT projects building on Filecoin, and more.</description>
</item>
<item>
<title>Introducing the Filecoin Virtual Machine</title>
<link>https://filecoin.io/blog/posts/introducing-the-filecoin-virtual-machine/</link>
<pubDate>Thu, 11 Nov 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/introducing-the-filecoin-virtual-machine/</guid>
<description>A unified, interoperable environment for computation and storage, enabled by the Filecoin Virtual Machine.</description>
</item>
<item>
<title>Filecoin Launchpad Accelerator II: NFTs</title>
<link>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-nfts/</link>
<pubDate>Tue, 09 Nov 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-nfts/</guid>
<description>Fractional ownership, no-loss gaming, marketplaces, and more — explore the NFT projects from Filecoin Launchpad Accelerator II.</description>
</item>
<item>
<title>Filecoin News 30: Announcing the Filecoin Virtual Machine! Storage + Computation = 🤯🚀</title>
<link>https://filecoin.io/blog/posts/filecoin-news-30/</link>
<pubDate>Thu, 04 Nov 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-30/</guid>
<description>Catch up on the most exciting announcements and developments from Filecoin Orbit, including what the rest of the year holds in store.</description>
</item>
<item>
<title>Filecoin Launchpad Accelerator II: DeFi</title>
<link>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-defi/</link>
<pubDate>Mon, 01 Nov 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-launchpad-accelerator-ii-defi/</guid>
<description>Options markets, synthetic tokens, compliance, and more — an overview of DeFi projects from Launchpad Demo Day #2</description>
</item>
<item>
<title>Filecoin Orbit 2021 Recap: Celebrating the One Year Anniversary of Mainnet Liftoff</title>
<link>https://filecoin.io/blog/posts/filecoin-orbit-2021-recap/</link>
<pubDate>Mon, 25 Oct 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-orbit-2021-recap/</guid>
<description>Starting on October 15th and culminating a week later, Filecoin Orbit 2021 was a happy celebration to mark the momentous first anniversary of the Filecoin mainnet launch in October, 2020.</description>
</item>
<item>
<title>Textile: Intro to the Filecoin Bridge</title>
<link>https://filecoin.io/blog/posts/textile-intro-to-the-filecoin-bridge/</link>
<pubDate>Thu, 21 Oct 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/textile-intro-to-the-filecoin-bridge/</guid>
<description>One of the most recent advances in Filecoin's development is the creation of the NEAR bridge.</description>
</item>
<item>
<title>Filecoin News 29: Join the 1-year celebration of Filecoin Mainnet</title>
<link>https://filecoin.io/blog/posts/filecoin-news-29/</link>
<pubDate>Wed, 20 Oct 2021 19:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-29/</guid>
<description>Join the Filecoin community to celebrate one year since Filecoin Mainnet Liftoff. Register now!</description>
</item>
<item>
<title>Filecoin Orbit: Filecoin Year One in Review</title>
<link>https://filecoin.io/blog/posts/filecoin-orbit-filecoin-year-one-in-review/</link>
<pubDate>Fri, 15 Oct 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-orbit-filecoin-year-one-in-review/</guid>
<description> In 12 short months, the Filecoin network and its surrounding ecosystem have grown in strength to what it is today.</description>
</item>
<item>
<title>Filecoin Becomes Official Storage Collaborator for Flow Blockchain</title>
<link>https://filecoin.io/blog/posts/filecoin-becomes-official-storage-collaborator-for-flow-blockchain/</link>
<pubDate>Wed, 13 Oct 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-becomes-official-storage-collaborator-for-flow-blockchain/</guid>
<description>Filecoin is now the official storage collaborator of Flow blockchain.</description>
</item>
<item>
<title>Filecoin News 28: Filecoin Orbit, Proofs v10.0.0, Halo 2, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-28/</link>
<pubDate>Wed, 06 Oct 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-28/</guid>
<description>Filecoin Orbit is here: celebrating one year of Filecoin mainnet!</description>
</item>
<item>
<title>Filecoin Plus: How Storage Providers Can Engage with Verified Clients</title>
<link>https://filecoin.io/blog/posts/filecoin-plus-how-storage-providers-can-engage-with-verified-clients/</link>
<pubDate>Tue, 05 Oct 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-plus-how-storage-providers-can-engage-with-verified-clients/</guid>
<description>Filecoin Plus adds a layer of social trust to the Filecoin network to incentivize useful storage and facilitates deals with verified clients.</description>
</item>
<item>
<title>Reviving Halo 2 with Protocol Labs, Filecoin Foundation, Ethereum Foundation, and Electric Coin Co.</title>
<link>https://filecoin.io/blog/posts/reviving-halo-2-with-protocol-labs-filecoin-foundation-ethereum-foundation-and-electric-coin-co/</link>
<pubDate>Fri, 01 Oct 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/reviving-halo-2-with-protocol-labs-filecoin-foundation-ethereum-foundation-and-electric-coin-co/</guid>
<description>The four ecosystems come together to explore the future of recursive zero knowledge proofs.</description>
</item>
<item>
<title>ChainSafe Files — Building Privacy-preserving Cloud Storage</title>
<link>https://filecoin.io/blog/posts/chainsafe-files-building-privacy-preserving-cloud-storage/</link>
<pubDate>Tue, 28 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/chainsafe-files-building-privacy-preserving-cloud-storage/</guid>
<description>ChainSafe Files provides highly private, highly secure cloud storage that allows users to maintain full sovereignty over their data.</description>
</item>
<item>
<title>Filecoin’s “Island Economy”</title>
<link>https://filecoin.io/blog/posts/filecoin-s-island-economy/</link>
<pubDate>Thu, 23 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-s-island-economy/</guid>
<description>Understanding the economic interconnectedness of the Filecoin storage network.</description>
</item>
<item>
<title>Filecoin News 27: MoNA Launch, Decentralized Storage Options, Using Filecoin with IPFS, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-27/</link>
<pubDate>Wed, 22 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-27/</guid>
<description>MoNA is bringing together creators, collectors, and investors to build the world of NFT art. </description>
</item>
<item>
<title>Using Filecoin with IPFS</title>
<link>https://filecoin.io/blog/posts/using-filecoin-with-ipfs/</link>
<pubDate>Thu, 16 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/using-filecoin-with-ipfs/</guid>
<description>Understanding how Filecoin and IPFS come together to create decentralized storage through the lens of Textile and Estuary.</description>
</item>
<item>
<title>Filecoin Project Gravity, a Sales Referral Program</title>
<link>https://filecoin.io/blog/posts/filecoin-project-gravity-a-sales-referral-program/</link>
<pubDate>Tue, 14 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-project-gravity-a-sales-referral-program/</guid>
<description>Bring your customer’s data to the Filecoin network and make gravity work!</description>
</item>
<item>
<title>Decentralized Storage: Estuary, Web3.storage, and NFT.storage</title>
<link>https://filecoin.io/blog/posts/decentralized-storage-estuary-web3.storage-and-nft.storage/</link>
<pubDate>Fri, 10 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/decentralized-storage-estuary-web3.storage-and-nft.storage/</guid>
<description>Breaking down the different reasons to use Estuary vs. Web3.storage vs. NFT.storage</description>
</item>
<item>
<title>Filecoin News 26: Filecoin Network capacity surpasses 10 EiB, and more!</title>
<link>https://filecoin.io/blog/posts/filecoin-news-26/</link>
<pubDate>Wed, 08 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-26/</guid>
<description>Welcome to Filecoin News 26!</description>
</item>
<item>
<title>The Future of Decentralized Social Media</title>
<link>https://filecoin.io/blog/posts/the-future-of-decentralized-social-media/</link>
<pubDate>Tue, 07 Sep 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/the-future-of-decentralized-social-media/</guid>
<description>Decentralizing social media is the latest evolution in the “forum” — a critical tool for human discussion, collaboration, and consensus.</description>
</item>
<item>
<title>Taking a Look at Estuary</title>
<link>https://filecoin.io/blog/posts/taking-a-look-at-estuary/</link>
<pubDate>Thu, 02 Sep 2021 08:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/taking-a-look-at-estuary/</guid>
<description>Estuary is open-source software allowing simple sending of public data to the Filecoin network to be retrieved from anywhere.</description>
</item>
<item>
<title>Announcing Asia Hackathon Season 2021</title>
<link>https://filecoin.io/blog/posts/about-500-000-in-prizes-and-grants-for-asia-hackathon-season-2021/</link>
<pubDate>Fri, 27 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/about-500-000-in-prizes-and-grants-for-asia-hackathon-season-2021/</guid>
<description>Asia Hackathon Season 2021 is a hackathon series helping startups and entrepreneurs grow with Web3 stacks.</description>
</item>
<item>
<title>Dapper Labs Integrates Filecoin to Propel the Future of the NFT and Gaming Metaverse on Flow Blockchain</title>
<link>https://filecoin.io/blog/posts/dapper-labs-integrates-filecoin/</link>
<pubDate>Thu, 26 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/dapper-labs-integrates-filecoin/</guid>
<description></description>
</item>
<item>
<title>Filecoin News 25: JigStack Gallery Integrates IPFS and Filecoin, Mask x Filecoin, Lotus Release v1.11.1 and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-25/</link>
<pubDate>Wed, 25 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-25/</guid>
<description>Welcome to Filecoin News 25! Updates from the ecosystem about Web3 interoperability, community terminology updates, grant distributions, and more.</description>
</item>
<item>
<title>Announcing Filecoin-Polygon Bridge and Free Storage for Developers</title>
<link>https://filecoin.io/blog/posts/announcing-filecoin-polygon-bridge-and-free-storage-for-developers/</link>
<pubDate>Fri, 20 Aug 2021 19:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/announcing-filecoin-polygon-bridge-and-free-storage-for-developers/</guid>
<description>This kicks off with the recently-created Filecoin-Polygon Bridge by the Textile team.</description>
</item>
<item>
<title>Mask Network × Filecoin: Bridging the Gap Between Web2 and Web3</title>
<link>https://filecoin.io/blog/posts/mask-network-x-filecoin-bridging-the-gap-between-web2-and-web3/</link>
<pubDate>Tue, 17 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/mask-network-x-filecoin-bridging-the-gap-between-web2-and-web3/</guid>
<description>Today, Mask Network and Filecoin announced a collaboration to bridge the gap between Web2 and Web3 by bringing decentralized storage solutions to Mask users. </description>
</item>
<item>
<title>17 Winning Projects from DoraHack’s Filecoin Grant Hackathon</title>
<link>https://filecoin.io/blog/posts/249k-for-17-projects-from-dorahacks-filecoin-grant-hackathon/</link>
<pubDate>Fri, 13 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/249k-for-17-projects-from-dorahacks-filecoin-grant-hackathon/</guid>
<description>Catch up with the 17 winning projects (including three first places) from the DoraHacks Filecoin Grant Hackathon. </description>
</item>
<item>
<title>Filecoin News 24: Near Grant Program, Asia Hackathon Season '21, SXSW Panel Voting Open, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-24-filecoin-near-grant-program-asia-hackathon-season-21-sxsw-panel-voting-open-and-more/</link>
<pubDate>Wed, 11 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-24-filecoin-near-grant-program-asia-hackathon-season-21-sxsw-panel-voting-open-and-more/</guid>
<description>Welcome to Filecoin News 24, our roundup of the latest updates and happenings in the world of Filecoin.</description>
</item>
<item>
<title>NEAR and Filecoin Ecosystems to Accelerate the Growth of the Web3 Stack</title>
<link>https://filecoin.io/blog/posts/near-filecoin-ecosystems-accelerate-growth-web3-stack/</link>
<pubDate>Tue, 10 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/near-filecoin-ecosystems-accelerate-growth-web3-stack/</guid>
<description>The collaboration between the Filecoin ecosystem and the NEAR ecosystem deepens with the launch of a $300,000 joint grants program designed to support developers interested in exploring new opportunities at the intersection of these two protocols.</description>
</item>
<item>
<title>Announcing Chainlink-Filecoin Joint Grants for dApps Combining Decentralized Storage and Oracles</title>
<link>https://filecoin.io/blog/posts/announcing-chainlink-filecoin-joint-grants-for-dapps-combining-decentralized-storage-and-oracles/</link>
<pubDate>Fri, 06 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/announcing-chainlink-filecoin-joint-grants-for-dapps-combining-decentralized-storage-and-oracles/</guid>
<description>Chainlink and Filecoin are launching a joint grant initiative to accelerate development of hybrid smart contracts that combine Chainlink decentralized oracles and Filecoin decentralized storage within a single application.</description>
</item>
<item>
<title>Building Web3: Filecoin + Ethereum Better Together</title>
<link>https://filecoin.io/blog/posts/building-web3-filecoin-ethereum-better-together/</link>
<pubDate>Thu, 05 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/building-web3-filecoin-ethereum-better-together/</guid>
<description>A look at some of the projects leading the collaborative opportunities between Filecoin and Ethereum.</description>
</item>
<item>
<title>Introducing Web3.Storage: A simple interface for Filecoin storage</title>
<link>https://filecoin.io/blog/posts/introducing-web3-storage/</link>
<pubDate>Tue, 03 Aug 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/introducing-web3-storage/</guid>
<description>Protocol Labs launches Web3.Storage, a free product for any developer to use Filecoin’s decentralized storage network in their applications.</description>
</item>
<item>
<title>Zero Knowledge and the Filecoin Network</title>
<link>https://filecoin.io/blog/posts/zero-knowledge-and-the-filecoin-network/</link>
<pubDate>Thu, 29 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/zero-knowledge-and-the-filecoin-network/</guid>
<description>An overview of how the worlds of zk-SNARKs and decentralized storage come together on the Filecoin network.</description>
</item>
<item>
<title>Filecoin News 23: Hedera, Filecoin Base Camp, Juan at EthCC, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-23/</link>
<pubDate>Wed, 28 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-23/</guid>
<description>Welcome to Filecoin News 23, our roundup of the latest updates and happenings in the world of Filecoin.</description>
</item>
<item>
<title>Filecoin and Hedera Hashgraph Announce Grant Program to Propel Web3 Interoperability</title>
<link>https://filecoin.io/blog/posts/filecoin-and-hedera-hashgraph-announce-grant-program-to-propel-web3-interoperability/</link>
<pubDate>Tue, 27 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-and-hedera-hashgraph-announce-grant-program-to-propel-web3-interoperability/</guid>
<description>Today, Filecoin and Hedera Hashgraph are announcing a joint effort to advance the interoperability of Web3.</description>
</item>
<item>
<title>Building Businesses for the Future of the Decentralized Web</title>
<link>https://filecoin.io/blog/posts/building-businesses-for-the-future-of-the-decentralized-web/</link>
<pubDate>Tue, 20 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/building-businesses-for-the-future-of-the-decentralized-web/</guid>
<description>Outlier Ventures CEO & Founder Jamie Burke and Protocol Labs Ecosystem Lead Colin Evran talking about the business opportunities of decentralized storage in the future of Web3 and the role that the recently-announced Filecoin Base Camp by Outlier Ventures plays.</description>
</item>
<item>
<title>Open Web Community Summit: The Future of Storage Capacity </title>
<link>https://filecoin.io/blog/posts/open-web-community-summit-the-future-of-storage-capacity/</link>
<pubDate>Thu, 15 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/open-web-community-summit-the-future-of-storage-capacity/</guid>
<description>Dystopia Labs recently hosted the Open Web Community Summit for Creators & Community, co-presented by NEAR Protocol and Gitcoin. The event mainly focused on NFTs and featured 50+ speakers and dozens of artists and creators from all over the world.</description>
</item>
<item>
<title>Filecoin News 22: Techstars Accelerator, Filecoin Base Camp, HackFS, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-22/</link>
<pubDate>Wed, 14 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-22/</guid>
<description>Announcing the Filecoin Techstars Accelerator, Starling Labs featured on BloombergTV, SNARKs website launch, and more!</description>
</item>
<item>
<title>Filecoin zk-SNARKs: Zero Knowledge — but a Lot of Zero Knowledge</title>
<link>https://filecoin.io/blog/posts/filecoin-zk-snarks-zero-knowledge-but-a-lot-of-zero-knowledge/</link>
<pubDate>Tue, 13 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-zk-snarks-zero-knowledge-but-a-lot-of-zero-knowledge/</guid>
<description>CryptoComputeLab created a beautiful zk-SNARKs for the world minisite, showcasing that Filecoin is the largest deployed zk-SNARK network to date and highlighting the key improvements that allowed a deployment of this scale.</description>
</item>
<item>
<title>More than just Storage: Business Opportunities on Filecoin</title>
<link>https://filecoin.io/blog/posts/more-than-storage-business-opportunities-on-filecoin/</link>
<pubDate>Tue, 06 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/more-than-storage-business-opportunities-on-filecoin/</guid>
<description>Exploring Web2 and Web3 business opportunities for the Filecoin network beyond storage, with ZX Zhang.</description>
</item>
<item>
<title>Filecoin Quadratic Funding Grant Round-1 at DoraHacks</title>
<link>https://filecoin.io/blog/posts/filecoin-quadratic-funding-grant-round-1-at-dorahacks/</link>
<pubDate>Thu, 01 Jul 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-quadratic-funding-grant-round-1-at-dorahacks/</guid>
<description>Protocol Labs is sponsoring a HackerLink Grant via DoraHacks to fund open source developer projects via donation, so that these projects can develop further into a startup in the Filecoin ecosystem. </description>
</item>
<item>
<title>Filecoin News 21: Wave 8 Dev Grants, Browsers 3000 Hackathon, ETHOdyssey, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-21/</link>
<pubDate>Wed, 30 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-21/</guid>
<description>Welcome to Filecoin News 21!</description>
</item>
<item>
<title>The Evolution of a Lotus Node</title>
<link>https://filecoin.io/blog/posts/the-evolution-of-a-lotus-node/</link>
<pubDate>Tue, 22 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/the-evolution-of-a-lotus-node/</guid>
<description>A look into the past, present, and future of a Lotus node from the Retrieval Market Builders Mini-Summit.</description>
</item>
<item>
<title>OpenSea stores NFTs with IPFS and Filecoin</title>
<link>https://filecoin.io/blog/posts/opensea-decentralizes-and-persists-nft-storage-with-ipfs-and-filecoin/</link>
<pubDate>Thu, 17 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/opensea-decentralizes-and-persists-nft-storage-with-ipfs-and-filecoin/</guid>
<description>OpenSea recently launched a feature to “freeze” NFT metadata, enabling NFT creators to properly decentralize their NFTs using IPFS and Filecoin.</description>
</item>
<item>
<title>Filecoin News 20: HackMoney, Web3 Weekend, Starling Lab, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-20/</link>
<pubDate>Wed, 16 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-20/</guid>
<description>Welcome to Filecoin News 20!</description>
</item>
<item>
<title>Slingshot Phase 2.3 Recap</title>
<link>https://filecoin.io/blog/posts/slingshot-phase-2.3-recap/</link>
<pubDate>Tue, 15 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/slingshot-phase-2.3-recap/</guid>
<description>The Slingshot Phase 2.3 Closing Ceremony on June 9th closed what has been one of the most productive phases of the Slingshot Competition yet. Check out this post for a full recap.</description>
</item>
<item>
<title>Filecoin v13 HyperDrive AMA 1 Recap</title>
<link>https://filecoin.io/blog/posts/filecoin-v13-hyperdrive-ama-1-recap/</link>
<pubDate>Mon, 14 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-v13-hyperdrive-ama-1-recap/</guid>
<description>On June 8th, Filecoin hosted an AMA answering 25+ questions on the network upgrade, sealing, onboarding new storage deals and more. </description>
</item>
<item>
<title>Starling Lab: Establishing Trust for Humanity’s Data</title>
<link>https://filecoin.io/blog/posts/starling-lab-establishing-trust-for-humanity-s-data/</link>
<pubDate>Thu, 10 Jun 2021 04:02:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/starling-lab-establishing-trust-for-humanity-s-data/</guid>
<description>Announcing the launch of Starling Lab, a commitment to continue building the frameworks required to endow humanity’s most vital digital information with trust.</description>
</item>
<item>
<title>Filecoin Case Study: Starling Lab</title>
<link>https://filecoin.io/blog/posts/case-study-starling-lab/</link>
<pubDate>Thu, 10 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/case-study-starling-lab/</guid>
<description>Starling Lab is the home to the Starling Framework for Data Integrity, a comprehensive set of tools empowering organizations to securely capture, store and verify human history leveraging technologies like Filecoin.</description>
</item>
<item>
<title>IPFS, Filecoin, and ‘Content Persistence’</title>
<link>https://filecoin.io/blog/posts/ipfs-filecoin-and-content-persistence/</link>
<pubDate>Thu, 03 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/ipfs-filecoin-and-content-persistence/</guid>
<description>The value of content persistence for the information era, and the role IPFS and Filecoin play.</description>
</item>
<item>
<title>Filecoin News 19: Filecoin v13 'Hyperdrive', Baseline Sustainability, Chainsafe, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-19/</link>
<pubDate>Wed, 02 Jun 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-19/</guid>
<description>Welcome to Filecoin News 19!</description>
</item>
<item>
<title>Filecoin v13 ‘HyperDrive’ Network Upgrade Unlocks 10-25x Increase in Storage Onboarding</title>
<link>https://filecoin.io/blog/posts/filecoin-v13-hyperdrive-network-upgrade-unlocks-10-25x-increase-in-storage-onboarding/</link>
<pubDate>Thu, 27 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-v13-hyperdrive-network-upgrade-unlocks-10-25x-increase-in-storage-onboarding/</guid>
<description>Today, we’re excited to announce that the Filecoin v13 ‘HyperDrive’ Network upgrade coming in just a few weeks will unlock a 10-25x increase in storage onboarding rate* due to innovations in Filecoin Proofs system (*depending on how miners take advantage of the new aggregation limits) !</description>
</item>
<item>
<title>Filecoin Network Crosses Baseline Sustainability Target for First Time</title>
<link>https://filecoin.io/blog/posts/filecoin-network-crosses-baseline-sustainability-target-for-first-time/</link>
<pubDate>Wed, 19 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-network-crosses-baseline-sustainability-target-for-first-time/</guid>
<description>This article provides an update on the Filecoin x BlockScience research collaboration, denoting a significant milestone for the Filecoin project. It was first published by Blockscience here.</description>
</item>
<item>
<title>Filecoin Frontier Accelerator Demo Day: DeFi & Consumer Tech </title>
<link>https://filecoin.io/blog/posts/longhash-ventures-demo-day-defi-consumer-tech/</link>
<pubDate>Tue, 18 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/longhash-ventures-demo-day-defi-consumer-tech/</guid>
<description>A look at the DeFi and consumer tech startups from Filecoin Frontier Accelerator demo day: Atomica, Ownership Labs, Sinso Technology, and Vera AI.</description>
</item>
<item>
<title>Filecoin News 18: Web3 Weekend, Launchpad Accelerator, Frontier Accelerator Demo Day, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-18/</link>
<pubDate>Tue, 18 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-18/</guid>
<description>Welcome to Filecoin News 18!</description>
</item>
<item>
<title>Filecoin Frontier Accelerator Demo Day: NFT and Media Startups</title>
<link>https://filecoin.io/blog/posts/longhash-ventures-demo-day-nft-and-media-startups/</link>
<pubDate>Thu, 13 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/longhash-ventures-demo-day-nft-and-media-startups/</guid>
<description>A look at the NFT and media startups from Filecoin Frontier Accelerator demo day: Curio, Flame, Huddle 01, Myel, NonEntropy Tech, Numbers, and OP Games.</description>
</item>
<item>
<title>Wolfram Blockchain Labs Expanding Storage Functionality with IPFS & Filecoin for Dapp Development </title>
<link>https://filecoin.io/blog/posts/wolfram-blockchain-labs-expanding-storage-functionality-with-ipfs-filecoin-for-dapp-development/</link>
<pubDate>Wed, 12 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/wolfram-blockchain-labs-expanding-storage-functionality-with-ipfs-filecoin-for-dapp-development/</guid>
<description>WBL is integrating their distributed ledger technology platform with IPFS and Filecoin to add new decentralized functionality and expanded storage to their existing blockchain features.</description>
</item>
<item>
<title>Filecoin News 17: Launchpad Accelerator II, Frontier Accelerator Demo Day, MetaMask, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-17/</link>
<pubDate>Wed, 05 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-17/</guid>
<description>Welcome to Filecoin News 17!</description>
</item>
<item>
<title>Filecoin Network v12</title>
<link>https://filecoin.io/blog/posts/filecoin-network-v12/</link>
<pubDate>Tue, 04 May 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-network-v12/</guid>
<description>On April 29th, 2021, the Filecoin network upgraded to version 12.</description>
</item>
<item>
<title>Introducing NFT.Storage: Free Decentralized Storage for NFTs</title>
<link>https://filecoin.io/blog/posts/introducing-nft.storage-free-decentralized-storage-for-nfts/</link>
<pubDate>Thu, 29 Apr 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/introducing-nft.storage-free-decentralized-storage-for-nfts/</guid>
<description>NFT.Storage lets users store their NFT content and metadata seamlessly and securely with IPFS and Filecoin.</description>
</item>
<item>
<title>Filecoin News 16: Filecoin Launchpad Accelerator II, Filecoin Frontier Accelerator Demo Day, Scaling Ethereum and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-16/</link>
<pubDate>Wed, 21 Apr 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-16/</guid>
<description>Welcome to Filecoin News 16!</description>
</item>
<item>
<title>FilRep.io - A Filecoin Miner Reputation System v1 by Digital Mob</title>
<link>https://filecoin.io/blog/posts/filrep.io-a-filecoin-miner-reputation-system-v1-by-digital-mob/</link>
<pubDate>Thu, 15 Apr 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filrep.io-a-filecoin-miner-reputation-system-v1-by-digital-mob/</guid>
<description> Filrep.io helps storage clients answer “How can I find the best miners to make storage and retrieval deals with?” by keeping track of storage miner reliability and performance.</description>
</item>
<item>
<title>VideoCoin and Filecoin to Power the Video NFT Market</title>
<link>https://filecoin.io/blog/posts/videocoin-and-filecoin-to-power-the-video-nft-market/</link>
<pubDate>Fri, 09 Apr 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/videocoin-and-filecoin-to-power-the-video-nft-market/</guid>
<description>The VideoCoin Network commences integration with Filecoin to offer platform optimized for Video NFTs.</description>
</item>
<item>
<title>Block Dream Fund launches $10m fund to support the Filecoin Ecosystem</title>
<link>https://filecoin.io/blog/posts/block-dream-fund-launches-10m-fund-to-support-the-filecoin-ecosystem/</link>
<pubDate>Thu, 08 Apr 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/block-dream-fund-launches-10m-fund-to-support-the-filecoin-ecosystem/</guid>
<description>OKEx’s newly founded Block Dream Fund announces a collaboration with the Filecoin Network. </description>
</item>
<item>
<title>Filecoin News 15: MetaMask Preview, Filecoin & Chainlink Integration, Truffle's Filecoin Box, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-15/</link>
<pubDate>Wed, 07 Apr 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-15/</guid>
<description>Welcome to Filecoin News 15!</description>
</item>
<item>
<title>Truffle Suite Launches NFT Development Template with Filecoin Box</title>
<link>https://filecoin.io/blog/posts/truffle-suite-launches-nft-development-template-with-filecoin-box/</link>
<pubDate>Wed, 31 Mar 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/truffle-suite-launches-nft-development-template-with-filecoin-box/</guid>
<description>Filecoin Box includes everything a developer needs to get started with decentralized storage and markets for NFTs, powered by Truffle Ganache.</description>
</item>
<item>
<title>Decentralized Data Markets with Filehive</title>
<link>https://filecoin.io/blog/posts/decentralized-data-markets-with-filehive/</link>
<pubDate>Tue, 30 Mar 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/decentralized-data-markets-with-filehive/</guid>
<description>Solving the problem of data availability and monetization with Filehive, built on top of Filecoin.</description>
</item>
<item>
<title>Filecoin and Chainlink Integration to Bring Advanced Decentralized Storage Solutions to Web 3.0 Developers</title>
<link>https://filecoin.io/blog/posts/filecoin-and-chainlink-integration/</link>
<pubDate>Wed, 24 Mar 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-and-chainlink-integration/</guid>
<description>We're excited to announce that Chainlink—the industry leading decentralized oracle solution—is integrating with Filecoin—the world’s largest open-source, decentralized storage network— to enable bidirectional connection between the Filecoin Network and smart contract enabled blockchains such as Ethereum.</description>
</item>
<item>
<title>Livepeer x Filecoin Co-Mining Pilot</title>
<link>https://filecoin.io/blog/posts/livepeer-x-filecoin-co-mining-pilot/</link>
<pubDate>Tue, 23 Mar 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/livepeer-x-filecoin-co-mining-pilot/</guid>
<description>Co-locating decentralized video transcoding with decentralized storage.</description>
</item>
<item>
<title>Decrypt Collaborates with Filecoin for its Inaugural Token Season</title>
<link>https://filecoin.io/blog/posts/decrypt-collaborates-with-filecoin-for-its-inaugural-token-season/</link>
<pubDate>Thu, 18 Mar 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/decrypt-collaborates-with-filecoin-for-its-inaugural-token-season/</guid>
<description>Filecoin is sponsoring Decrypt’s first token season, which will let Decrypt token holders swap their tokens for limited edition NFTs.</description>
</item>
<item>
<title>Incident Report: Accurate Bookkeeping with Lotus APIs</title>
<link>https://filecoin.io/blog/posts/incident-report-accurate-bookkeeping-with-lotus-apis/</link>
<pubDate>Thu, 18 Mar 2021 04:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/incident-report-accurate-bookkeeping-with-lotus-apis/</guid>
<description>On March 18, the Lotus team received a report from an exchange about the incorrect use of a Lotus API for evaluating transfers/deposits in the Filecoin Network. The team investigated and found no issues with the Filecoin network or the RPC API code. The exchange in question has already reverted the incorrect transaction (there was no loss of funds) and is reviewing their deposit processing logic to correct their API usage.</description>
</item>
<item>
<title>Filecoin News 14: Gitcoin GR9 Hackathon, Chainlink Hackathon, NFT Hackathon, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-14/</link>
<pubDate>Wed, 17 Mar 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-14/</guid>
<description>Welcome to Filecoin News 14!</description>
</item>
<item>
<title>The Next Phase of Fleek with Filecoin</title>
<link>https://filecoin.io/blog/posts/the-next-phase-of-fleek-with-filecoin/</link>
<pubDate>Thu, 11 Mar 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/the-next-phase-of-fleek-with-filecoin/</guid>
<description>Fleek’s support of Filecoin archiving for websites and dapps pushes the protocol further down the road of decentralization and permanence.</description>
</item>
<item>
<title>How storage and retrieval deals work on Filecoin</title>
<link>https://filecoin.io/blog/posts/how-storage-and-retrieval-deals-work-on-filecoin/</link>
<pubDate>Tue, 09 Mar 2021 17:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/how-storage-and-retrieval-deals-work-on-filecoin/</guid>
<description>A short article on how storage and retrieval deals work in Filecoin.</description>
</item>
<item>
<title>Filecoin News 13: Filecoin Launchpad Accelerator, NFT Hackathon, Space Beta, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-13/</link>
<pubDate>Wed, 03 Mar 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-13/</guid>
<description>Welcome to Filecoin News 13!</description>
</item>
<item>
<title>Filecoin for Treasuries, Wills, Financial Access, and more</title>
<link>https://filecoin.io/blog/posts/filecoin-for-treasuries-wills-financial-access-and-more/</link>
<pubDate>Tue, 02 Mar 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-for-treasuries-wills-financial-access-and-more/</guid>
<description>A look at the startups from Filecoin Launchpad Demo Day under the “Finance” category.</description>
</item>
<item>
<title>Filecoin for Content, DevOps, Trust, and more</title>
<link>https://filecoin.io/blog/posts/filecoin-for-content-devops-trust-and-more/</link>
<pubDate>Thu, 25 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-for-content-devops-trust-and-more/</guid>
<description>A look at the startups from Filecoin Launchpad Demo Day under the “Enterprise” category.</description>
</item>
<item>
<title>Filecoin News, Issue 12: Fenbushi Ecosystem Fund, Textile, Starling Framework, and More</title>
<link>https://filecoin.io/blog/posts/filecoin-news-12/</link>
<pubDate>Wed, 24 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-news-12/</guid>
<description>Welcome to the twelfth issue of Filecoin News!</description>
</item>
<item>
<title>Filecoin for Media, Video, Gaming, and more</title>
<link>https://filecoin.io/blog/posts/filecoin-for-media-video-gaming-and-more/</link>
<pubDate>Tue, 23 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-for-media-video-gaming-and-more/</guid>
<description>A look at the startups from Filecoin Launchpad Demo Day under the “Social” category.</description>
</item>
<item>
<title>Reputation Systems in Filecoin</title>
<link>https://filecoin.io/blog/posts/reputation-systems-in-filecoin/</link>
<pubDate>Tue, 16 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/reputation-systems-in-filecoin/</guid>
<description>The role reputation plays in the maintenance of the Filecoin network.</description>
</item>
<item>
<title>The Future of DeFi with Filecoin</title>
<link>https://filecoin.io/blog/posts/the-future-of-defi-with-filecoin/</link>
<pubDate>Fri, 12 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/the-future-of-defi-with-filecoin/</guid>
<description>The Ethereum DeFi ecosystem is interoperating with Filecoin to supercharge the future of DeFi.</description>
</item>
<item>
<title>Tracking 78 Days of the US Presidential Election on Filecoin</title>
<link>https://filecoin.io/blog/posts/tracking-78-days-of-the-us-presidential-election-on-filecoin/</link>
<pubDate>Wed, 10 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/tracking-78-days-of-the-us-presidential-election-on-filecoin/</guid>
<description>The Starling Framework and Adobe’s Content Authenticity Initiative launch a photo archive documenting November 2020 to January 2021.</description>
</item>
<item>
<title>The Future of DataDAOs</title>
<link>https://filecoin.io/blog/posts/the-future-of-datadaos/</link>
<pubDate>Thu, 04 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/the-future-of-datadaos/</guid>
<description>Filecoin's role in expanding the potential of DAOs within the DeFi ecosystem and beyond.</description>
</item>
<item>
<title>Welcome Venus to the Filecoin mainnet!</title>
<link>https://filecoin.io/blog/posts/welcome-venus-to-the-filecoin-mainnet/</link>
<pubDate>Tue, 02 Feb 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/welcome-venus-to-the-filecoin-mainnet/</guid>
<description>Today we are excited to announce that at epoch 455673 (Jan 30th, 2021, 03:16 UTC), miner f0128788 running Venus v0.9.0, mined its very first block on mainnet!</description>
</item>
<item>
<title>Filecoin Plus: Aligning Participants with Useful Storage</title>
<link>https://filecoin.io/blog/posts/filecoin-plus-aligning-participants-with-useful-storage/</link>
<pubDate>Thu, 28 Jan 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-plus-aligning-participants-with-useful-storage/</guid>
<description>Filecoin is a global marketplace of storage and its related services, matching a diverse set of storage providers with demand for secure distributed cloud storage services. As a blockchain network, Filecoin provides a robust, decentralized, verifiable platform for anyone to store and interact with data.</description>
</item>
<item>
<title>Filecoin MinerX Fellowship Program</title>
<link>https://filecoin.io/blog/posts/filecoin-minerx-fellowship-program/</link>
<pubDate>Thu, 21 Jan 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/filecoin-minerx-fellowship-program/</guid>
<description>The MinerX Fellowship engages small and medium-sized miners distributed across the world to help improve Filecoin’s experience and productivity in the early stages of the network. MinerX is designed to build a solid foundation of geographically-diverse, reliable, long-term storage options to accelerate the development of tools and services in the Filecoin ecosystem.</description>
</item>
<item>
<title>Getting Started With the Infura Filecoin API</title>
<link>https://filecoin.io/blog/posts/getting-started-with-the-infura-filecoin-api/</link>
<pubDate>Tue, 19 Jan 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/getting-started-with-the-infura-filecoin-api/</guid>
<description>Filecoin nodes expose APIs that make it easy for developers to interact with and query the Filecoin blockchain. Learn how the Infura Filecoin API simplifies the process even further!</description>
</item>
<item>
<title>Resolving the Dec 19 Chain Halt: Cause, Impact, & Take Aways</title>
<link>https://filecoin.io/blog/posts/resolving-the-dec-19-chain-halt-cause-impact-take-aways/</link>
<pubDate>Fri, 15 Jan 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/resolving-the-dec-19-chain-halt-cause-impact-take-aways/</guid>
<description>On Dec 19th, 2020, the Filecoin network experienced a chain halt. This post describes the issue encountered, the outage impact, the rapid response, and what’s next.</description>
</item>
<item>
<title>The Fenbushi Ecosystem Fund for Filecoin Development</title>
<link>https://filecoin.io/blog/posts/the-fenbushi-ecosystem-fund-for-filecoin-development/</link>
<pubDate>Mon, 11 Jan 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/the-fenbushi-ecosystem-fund-for-filecoin-development/</guid>
<description>An overview of the recently-announced Fenbushi Fund to accelerate Filecoin development and growth.</description>
</item>
<item>
<title>EIP-1559 in Filecoin</title>
<link>https://filecoin.io/blog/posts/eip-1559-in-filecoin/</link>
<pubDate>Tue, 05 Jan 2021 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/eip-1559-in-filecoin/</guid>
<description>Filecoin incorporates the EIP-1559 transaction pricing model to make transaction processing on the network more efficient and easier to navigate. This post details the promising impact this decision has had over the course of Filecoin's mainnet launch.</description>
</item>
<item>
<title>A Look Back at Filecoin in 2020</title>
<link>https://filecoin.io/blog/posts/a-look-back-at-filecoin-in-2020/</link>
<pubDate>Wed, 30 Dec 2020 06:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/a-look-back-at-filecoin-in-2020/</guid>
<description>Welcoming 2021 by taking a moment to celebrate the Filecoin community’s achievements in 2020.</description>
</item>
<item>
<title>Empowering Filecoin Startups</title>
<link>https://filecoin.io/blog/posts/empowering-filecoin-startups/</link>
<pubDate>Wed, 30 Dec 2020 05:00:00 +0000</pubDate>
<guid>https://filecoin.io/blog/posts/empowering-filecoin-startups/</guid>
<description>Highlights from the Storage Market Summit with Filecoin and ETH Global on Dec. 11</description>