├── .github └── ISSUE_TEMPLATE │ ├── FIL-Builder-Next-Step-Grant.md │ └── open-grant-appolication.md ├── Archive ├── .gitignore ├── .history │ └── open-grant-proposals │ │ ├── autonomous-interdependent-repositories_20210609111255.md │ │ └── autonomous-interdependent-repositories_20210615161753.md ├── Data-Onboarding.md ├── Doc-enhancement-grant-application.md ├── img │ ├── .DS_Store │ ├── Filecoin Stack - Dev Grant Areas.jpg │ ├── Filecoin_Grants_illustrations.png │ ├── apply-banner.png │ ├── apply-banner.svg │ ├── corner-triangles.png │ ├── corner-triangles.svg │ ├── filecoin-grants-logo.png │ ├── filecoin-grants-logo.svg │ ├── filecoin-logo.png │ ├── filecoin-stack-devgrant-areas.jpg │ ├── goals-banner.png │ ├── goals-banner.svg │ ├── grants-timeline.png │ ├── grants-timeline.svg │ ├── grants-wave-1.png │ ├── grants-wave-1.svg │ ├── grants-wave-2.png │ ├── grants-wave-2.svg │ ├── resource-triangles.png │ ├── resource-triangles.svg │ ├── triangles.png │ └── triangles.svg ├── microgrants │ ├── accepted-microgrant-applications.md │ └── next-step-microgrant.md ├── open-grant-proposals │ ├── IPFSpace.md │ ├── autonomous-interdependent-repositories.md │ ├── enterprise-preprocessor-layer-for-IPFS-client.md │ ├── glitter-desktop.md │ ├── ipfs-search-scale-out.md │ ├── open-grant-proposal-adapt-ipfs-to-ml-and-data-pipelines │ ├── open-proposal-Improve-stability-of-miner.md │ ├── open-proposal-Machine Learning labled Dataset NFT storage and sharing via IPFS_Filecoin.md │ ├── open-proposal-geo-web.md │ ├── open-proposal-kryptoseoulcommunity.md │ ├── open-proposal-metatron.md │ ├── open-proposal-myel-retrieval-market.md │ ├── open-proposal-open-rpc-part-2.md │ ├── open-proposal-optimized-payments.md │ ├── open-proposal-vartisans.md │ ├── open-proposal-wrapped-filecoin.md │ ├── open-proposal-xdv.md │ └── presentations │ │ ├── AIR Presentation - Short.pptx │ │ ├── AIR Presentation.pptx │ │ ├── Autonomous Interdependent Repositories.docx │ │ └── images │ │ ├── AIR-across-devices.jpg │ │ ├── AIRPort_Transaction_Log.odg │ │ ├── AIRPort_Transaction_Log.png │ │ ├── AIRport-in-Cordova.drawio │ │ ├── AIRport-in-Cordova.png │ │ ├── AIRport_diagram_1.odg │ │ ├── AIRport_diagram_1.png │ │ ├── AIRport_diagram_2.odg │ │ ├── AIRport_diagram_2.png │ │ ├── Figure01.webp │ │ ├── Figure02.png │ │ ├── repositories-across-databasases.jpg │ │ └── schema-publishing.jpg ├── open-grants │ ├── README-Chinese.md │ ├── accepted-open-grant-applications.md │ ├── lotus-farcaster-v3.md │ ├── open-proposal-bitblock.md │ ├── open-proposal-browser-based-web-archiving.md │ ├── open-proposal-cambrian-protocol.md │ ├── open-proposal-crypto-docs.md │ ├── open-proposal-img8.md │ ├── open-proposal-offline-signature.md │ ├── open-proposal-p1-mem-pool.md │ ├── open-proposal-phuquoc-dog.md │ └── project-blockchain-solution-for-AI-using-filecoin.md ├── rfp-proposals │ ├── Pristorage.md │ ├── filscan-maintenance-testnet-support.md │ ├── rfp-proposal-filecoin-rollup.md │ ├── rfp-proposal-linkstorage.md │ ├── rfp-proposal-retrieval-metainfo-system-with-incentive-mechanism.md │ ├── rfp-proposal-solidity-libraries.md │ ├── rfp-proposal-taskbar.md │ └── rfp-valist-on-near.md └── rfps │ ├── Filecoin-solidity-Optimization.md │ ├── chainlink-and-filecoin.md │ ├── developer-tooling.md │ ├── fvm-block-explorer.md │ ├── fvm-ethereum-test-vectors.md │ ├── fvm-open-tools-infra.md │ ├── fvm-rfp-ideas.md │ ├── green-grants.md │ ├── hedera-and-filecoin.md │ ├── near-and-filecoin.md │ ├── notary-dashboard.md │ ├── rfp-filecoin-orbit.md │ ├── rfp-notary-dashboard.md │ ├── rfp-retrieval-metainfo-system.md │ ├── rfp-template.md │ ├── storage-provider-tools-rfps.md │ └── zcash-and-filecoin.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── Program Resources ├── .github │ └── Github Issue Templates │ │ ├── microgrant.md │ │ ├── open-grant-application.md │ │ ├── opengrant.md │ │ └── rfp-application.md ├── Builder Next Step Grants.md ├── Documentation Enhancement Grants README.md ├── Microgrants README.md ├── Open Grants README.md ├── open-source-policy.md └── technical-sponsors.md └── README.md /.github/ISSUE_TEMPLATE/FIL-Builder-Next-Step-Grant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/.github/ISSUE_TEMPLATE/FIL-Builder-Next-Step-Grant.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/open-grant-appolication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/.github/ISSUE_TEMPLATE/open-grant-appolication.md -------------------------------------------------------------------------------- /Archive/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Archive/.history/open-grant-proposals/autonomous-interdependent-repositories_20210609111255.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/.history/open-grant-proposals/autonomous-interdependent-repositories_20210609111255.md -------------------------------------------------------------------------------- /Archive/.history/open-grant-proposals/autonomous-interdependent-repositories_20210615161753.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/.history/open-grant-proposals/autonomous-interdependent-repositories_20210615161753.md -------------------------------------------------------------------------------- /Archive/Data-Onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/Data-Onboarding.md -------------------------------------------------------------------------------- /Archive/Doc-enhancement-grant-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/Doc-enhancement-grant-application.md -------------------------------------------------------------------------------- /Archive/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/.DS_Store -------------------------------------------------------------------------------- /Archive/img/Filecoin Stack - Dev Grant Areas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/Filecoin Stack - Dev Grant Areas.jpg -------------------------------------------------------------------------------- /Archive/img/Filecoin_Grants_illustrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/Filecoin_Grants_illustrations.png -------------------------------------------------------------------------------- /Archive/img/apply-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/apply-banner.png -------------------------------------------------------------------------------- /Archive/img/apply-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/apply-banner.svg -------------------------------------------------------------------------------- /Archive/img/corner-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/corner-triangles.png -------------------------------------------------------------------------------- /Archive/img/corner-triangles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/corner-triangles.svg -------------------------------------------------------------------------------- /Archive/img/filecoin-grants-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/filecoin-grants-logo.png -------------------------------------------------------------------------------- /Archive/img/filecoin-grants-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/filecoin-grants-logo.svg -------------------------------------------------------------------------------- /Archive/img/filecoin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/filecoin-logo.png -------------------------------------------------------------------------------- /Archive/img/filecoin-stack-devgrant-areas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/filecoin-stack-devgrant-areas.jpg -------------------------------------------------------------------------------- /Archive/img/goals-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/goals-banner.png -------------------------------------------------------------------------------- /Archive/img/goals-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/goals-banner.svg -------------------------------------------------------------------------------- /Archive/img/grants-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/grants-timeline.png -------------------------------------------------------------------------------- /Archive/img/grants-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/grants-timeline.svg -------------------------------------------------------------------------------- /Archive/img/grants-wave-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/grants-wave-1.png -------------------------------------------------------------------------------- /Archive/img/grants-wave-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/grants-wave-1.svg -------------------------------------------------------------------------------- /Archive/img/grants-wave-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/grants-wave-2.png -------------------------------------------------------------------------------- /Archive/img/grants-wave-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/grants-wave-2.svg -------------------------------------------------------------------------------- /Archive/img/resource-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/resource-triangles.png -------------------------------------------------------------------------------- /Archive/img/resource-triangles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/resource-triangles.svg -------------------------------------------------------------------------------- /Archive/img/triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/triangles.png -------------------------------------------------------------------------------- /Archive/img/triangles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/img/triangles.svg -------------------------------------------------------------------------------- /Archive/microgrants/accepted-microgrant-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/microgrants/accepted-microgrant-applications.md -------------------------------------------------------------------------------- /Archive/microgrants/next-step-microgrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/microgrants/next-step-microgrant.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/IPFSpace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/IPFSpace.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/autonomous-interdependent-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/autonomous-interdependent-repositories.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/enterprise-preprocessor-layer-for-IPFS-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/enterprise-preprocessor-layer-for-IPFS-client.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/glitter-desktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/glitter-desktop.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/ipfs-search-scale-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/ipfs-search-scale-out.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-grant-proposal-adapt-ipfs-to-ml-and-data-pipelines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-grant-proposal-adapt-ipfs-to-ml-and-data-pipelines -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-Improve-stability-of-miner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-Improve-stability-of-miner.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-Machine Learning labled Dataset NFT storage and sharing via IPFS_Filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-Machine Learning labled Dataset NFT storage and sharing via IPFS_Filecoin.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-geo-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-geo-web.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-kryptoseoulcommunity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-kryptoseoulcommunity.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-metatron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-metatron.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-myel-retrieval-market.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-myel-retrieval-market.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-open-rpc-part-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-open-rpc-part-2.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-optimized-payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-optimized-payments.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-vartisans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-vartisans.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-wrapped-filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-wrapped-filecoin.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/open-proposal-xdv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/open-proposal-xdv.md -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/AIR Presentation - Short.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/AIR Presentation - Short.pptx -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/AIR Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/AIR Presentation.pptx -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/Autonomous Interdependent Repositories.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/Autonomous Interdependent Repositories.docx -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIR-across-devices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIR-across-devices.jpg -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRPort_Transaction_Log.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRPort_Transaction_Log.odg -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRPort_Transaction_Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRPort_Transaction_Log.png -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRport-in-Cordova.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRport-in-Cordova.drawio -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRport-in-Cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRport-in-Cordova.png -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRport_diagram_1.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRport_diagram_1.odg -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRport_diagram_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRport_diagram_1.png -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRport_diagram_2.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRport_diagram_2.odg -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/AIRport_diagram_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/AIRport_diagram_2.png -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/Figure01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/Figure01.webp -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/Figure02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/Figure02.png -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/repositories-across-databasases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/repositories-across-databasases.jpg -------------------------------------------------------------------------------- /Archive/open-grant-proposals/presentations/images/schema-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grant-proposals/presentations/images/schema-publishing.jpg -------------------------------------------------------------------------------- /Archive/open-grants/README-Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/README-Chinese.md -------------------------------------------------------------------------------- /Archive/open-grants/accepted-open-grant-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/accepted-open-grant-applications.md -------------------------------------------------------------------------------- /Archive/open-grants/lotus-farcaster-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/lotus-farcaster-v3.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-bitblock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-bitblock.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-browser-based-web-archiving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-browser-based-web-archiving.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-cambrian-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-cambrian-protocol.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-crypto-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-crypto-docs.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-img8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-img8.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-offline-signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-offline-signature.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-p1-mem-pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-p1-mem-pool.md -------------------------------------------------------------------------------- /Archive/open-grants/open-proposal-phuquoc-dog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/open-proposal-phuquoc-dog.md -------------------------------------------------------------------------------- /Archive/open-grants/project-blockchain-solution-for-AI-using-filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/open-grants/project-blockchain-solution-for-AI-using-filecoin.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/Pristorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/Pristorage.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/filscan-maintenance-testnet-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/filscan-maintenance-testnet-support.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/rfp-proposal-filecoin-rollup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/rfp-proposal-filecoin-rollup.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/rfp-proposal-linkstorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/rfp-proposal-linkstorage.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/rfp-proposal-retrieval-metainfo-system-with-incentive-mechanism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/rfp-proposal-retrieval-metainfo-system-with-incentive-mechanism.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/rfp-proposal-solidity-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/rfp-proposal-solidity-libraries.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/rfp-proposal-taskbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/rfp-proposal-taskbar.md -------------------------------------------------------------------------------- /Archive/rfp-proposals/rfp-valist-on-near.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfp-proposals/rfp-valist-on-near.md -------------------------------------------------------------------------------- /Archive/rfps/Filecoin-solidity-Optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/Filecoin-solidity-Optimization.md -------------------------------------------------------------------------------- /Archive/rfps/chainlink-and-filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/chainlink-and-filecoin.md -------------------------------------------------------------------------------- /Archive/rfps/developer-tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/developer-tooling.md -------------------------------------------------------------------------------- /Archive/rfps/fvm-block-explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/fvm-block-explorer.md -------------------------------------------------------------------------------- /Archive/rfps/fvm-ethereum-test-vectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/fvm-ethereum-test-vectors.md -------------------------------------------------------------------------------- /Archive/rfps/fvm-open-tools-infra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/fvm-open-tools-infra.md -------------------------------------------------------------------------------- /Archive/rfps/fvm-rfp-ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/fvm-rfp-ideas.md -------------------------------------------------------------------------------- /Archive/rfps/green-grants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/green-grants.md -------------------------------------------------------------------------------- /Archive/rfps/hedera-and-filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/hedera-and-filecoin.md -------------------------------------------------------------------------------- /Archive/rfps/near-and-filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/near-and-filecoin.md -------------------------------------------------------------------------------- /Archive/rfps/notary-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/notary-dashboard.md -------------------------------------------------------------------------------- /Archive/rfps/rfp-filecoin-orbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/rfp-filecoin-orbit.md -------------------------------------------------------------------------------- /Archive/rfps/rfp-notary-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/rfp-notary-dashboard.md -------------------------------------------------------------------------------- /Archive/rfps/rfp-retrieval-metainfo-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/rfp-retrieval-metainfo-system.md -------------------------------------------------------------------------------- /Archive/rfps/rfp-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/rfp-template.md -------------------------------------------------------------------------------- /Archive/rfps/storage-provider-tools-rfps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/storage-provider-tools-rfps.md -------------------------------------------------------------------------------- /Archive/rfps/zcash-and-filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Archive/rfps/zcash-and-filecoin.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Program Resources/.github/Github Issue Templates/microgrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/.github/Github Issue Templates/microgrant.md -------------------------------------------------------------------------------- /Program Resources/.github/Github Issue Templates/open-grant-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/.github/Github Issue Templates/open-grant-application.md -------------------------------------------------------------------------------- /Program Resources/.github/Github Issue Templates/opengrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/.github/Github Issue Templates/opengrant.md -------------------------------------------------------------------------------- /Program Resources/.github/Github Issue Templates/rfp-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/.github/Github Issue Templates/rfp-application.md -------------------------------------------------------------------------------- /Program Resources/Builder Next Step Grants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/Builder Next Step Grants.md -------------------------------------------------------------------------------- /Program Resources/Documentation Enhancement Grants README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/Documentation Enhancement Grants README.md -------------------------------------------------------------------------------- /Program Resources/Microgrants README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/Microgrants README.md -------------------------------------------------------------------------------- /Program Resources/Open Grants README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/Open Grants README.md -------------------------------------------------------------------------------- /Program Resources/open-source-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/open-source-policy.md -------------------------------------------------------------------------------- /Program Resources/technical-sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/Program Resources/technical-sponsors.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/devgrants/HEAD/README.md --------------------------------------------------------------------------------