├── .github
├── ISSUE_TEMPLATE
│ └── grant-application.md
└── workflows
│ └── add-comment.yml
├── .gitignore
├── README.md
└── docs
├── Home.md
├── Terms-and-Conditions.md
└── assets
├── .DS_Store
└── images
├── blog.png
├── discord.png
├── header-new.png
├── stacks-foundation.png
├── stacks-governance.png
├── twitter.png
└── web.png
/.github/ISSUE_TEMPLATE/grant-application.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Grant Application
3 | about: Do not submit
4 | title: Do not submit
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | # PLEASE NOTE: THE STACKS FOUNDATION GITHUB GRANT ISSUES ARE FOR ARCHIVE PURPOSES ONLY
11 |
12 | All new grant application should be submitted via https://grants.stacks.org/.
13 |
14 | If you submit an application for a grant via this repo the application will not be review.
15 |
16 | If you have any comments, questions or concerns please visit the #grants channel on the Stacks Discord server or email grants@stacks.org.
17 |
18 | Thank you!
19 |
--------------------------------------------------------------------------------
/.github/workflows/add-comment.yml:
--------------------------------------------------------------------------------
1 | name: Auto Comment
2 | on: [issues, pull_request]
3 | jobs:
4 | run:
5 | runs-on: ubuntu-latest
6 | steps:
7 | - uses: wow-actions/auto-comment@v1
8 | with:
9 | GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
10 | issuesOpened: |
11 | 👋 @{{ author }}
12 |
13 | Thanks for your application! We will do a pre-review and let you know if we have any immediate questions. In the mean time please refer to our review schedule [here](https://github.com/stacksgov/Stacks-Grant-Launchpad/wiki/Grant-Process-and-Payments#application-review-phase-schedule) for a detailed timeline and response dates.
14 |
15 | Best,
16 | Will
17 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # generic ignores
2 | *.backup
3 | *.debug
4 | #*.json
5 | *.save
6 | crash.log
7 | *.retry
8 | *.so
9 | *.log
10 | *.swp
11 | *.DS_Store
12 | *.pyc
13 | .gitconfig
14 | .idea
15 |
16 | # Vim-related files
17 | [._]*.s[a-w][a-z]
18 | [._]s[a-w][a-z]
19 | *.un~
20 | Session.vim
21 | .netrwhist
22 |
23 | # Vscode-specific files
24 | .vscode/
25 |
26 | *.secret
27 | *.save
28 | .DS_Store
29 | docs/.DS_Store
30 | docs/assets/.DS_Store
31 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Stacks Foundation Legacy Grants Program (Archived)
2 |
3 | This repository is maintained for archive purposes only. It contains historical grant applications and discussions from our previous open grants process.
4 |
5 | ## Important Note
6 |
7 | The Stacks Foundation no longer accepts open grant applications on a rolling basis. However, it's worth noting that the previous incarnation of the grants program was incredibly vibrant and experimental in nature, fostering significant innovation within the Stacks ecosystem.
8 |
9 | As our ecosystem matured, we recognized that the grants program would be better served by splitting into two distinct programs:
10 |
11 | 1. [Critical Bounties Program](https://github.com/stacksfoundation/critical-bounties): Led by the Stacks Foundation, this program allows for targeted, high-impact infrastructure and tooling development via an RFP-style process.
12 |
13 | 2. [DeGrants Program](https://github.com/stacksgov/decentralized-grants): A community-led grants program where funding priorities are completely determined by the community and DeGrants Stewards.
14 |
15 | This evolution allows us to balance focused development of critical infrastructure with continued support for diverse, community-driven innovations.
16 |
17 | Feel free to browse the [Issues](../../issues) to see past grant applications and discussions, which showcase the breadth and depth of ideas that have contributed to the Stacks ecosystem.
18 |
19 | For current grant, bounty, and other funding opportunities, please visit: https://stacks.org/grants
20 |
--------------------------------------------------------------------------------
/docs/Home.md:
--------------------------------------------------------------------------------
1 | # Critical Bounties & Grants
2 |
3 | >PAGE UPDATED MAY 2023
4 | ---
5 |
6 |
7 |
8 |
9 |
10 | ---
11 |
12 |
13 |
14 | ## Introduction
15 |
16 | The Stacks Open Internet Foundation (also known as the Stacks Foundation) is committed to promoting a user-owned internet by supporting developers, designers, and founders through our RFP-style grant program called Critical Bounties. Working closely with core contributors to the Bitcoin L2, program leads at the Stacks Foundation identify needs that can be best addressed by the broader community. These needs are then scoped into RFPs, which we call Critical Bounties. Whether tightly or loosely-scoped, Critical Bounties prioritize strong technical projects that immediately add widespread value to the Stacks ecosystem and help make Bitcoin a more active asset. We encourage passionate individuals interested in advancing the mission of activating all L1 Bitcoin-based assets on the L2 Stacks layer to submit their project proposals.
17 |
18 |
19 |
20 | ## How To Apply
21 |
22 | 1. Critical Bounties are typically posted once per quarter and applications remain open for about a month.
23 | - You can sign-up here if you would like to be notified when new Critical Bounties are made available.
24 | 2. Active Critical Bounties can be found on the Foundation website [here](https://grants.stacks.org) or on the Grants Repo [here](https://github.com/stacksgov/Stacks-Grant-Launchpad/issues).
25 | 3. Once you’ve identified a Critical Bounty you would like to apply for, follow the link within the GitHub Issue and fill out the linked form.
26 | 4. After applications have closed and our review is complete, Critical Bounty recipients will be notified via the comment section below the GitHub Issue.
27 |
28 |
29 |
30 |
31 | ## Current Grant Priorities
32 |
33 | >Current priorities for the Stacks Foundation Critical Bounties Program are:
34 |
35 | | PRIORITY | DESCRIPTION
36 | | :----------------------------: | :----------------------------------
37 | | 1. | Technologies that aid in the development / execution of sBTC.
38 | | 2. | Technologies that activate L1 Bitcoin-based assets on the L2 Stacks layer.
39 | | 3. | Technologies that aid in the development of Subnets for Stacks and the Nakamoto Release.
40 |
41 |
42 |
43 |
44 | ## Additional Resources
45 | - Recent blog post about Critical Bounties [here](https://stacks.org/stacks-grants-update-2023)
46 | - Learn more about awarded Critical Bounties [here](https://github.com/stacksgov/Stacks-Grant-Launchpad/discussions/categories/critical-bounties)
47 |
48 |
49 |
50 | ## Stacks Community Channels
51 |
52 | |
|
|
|
|
53 | | :------------------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: | :-------------------------------------------------------: |
54 | | [Stacks.co](https://stacks.co) | [Discord](https://discord.gg/5usXsXSUAK) | [Twitter](https://twitter.com/Stacks) | [Blog](https://stacks.org/blog) |
55 |
56 |
57 |
58 | - [Stacks Governance Resources](https://github.com/stacksgov/resources#stacks-governance---resources)
59 | - [Stacks Improvement Proposals](https://github.com/stacksgov/sips)
60 | - [Stacks Docs](https://docs.stacks.co/docs/intro)
61 |
62 |
63 |
64 | - [Stacks.org](https://stacks.org/)
65 | - [Stacks Foundation Blog](https://stacks.org/blog)
66 | - [Stacks Foundation Twitter](https://twitter.com/StacksOrg)
67 |
68 |
69 |
70 | ### Continue to:
71 | ---
72 | [Terms and Conditions](Terms-and-Conditions)
73 |
--------------------------------------------------------------------------------
/docs/Terms-and-Conditions.md:
--------------------------------------------------------------------------------
1 | >PAGE UPDATED OCTOBER 2022
2 |
3 |
4 |
5 | - [1. Introduction](#1--introduction)
6 | - [2. Defined Terms](#2--defined-terms)
7 | - [3. Eligibility](#3--eligibility)
8 | - [4. Procedure](#4--procedure)
9 | - [5. Scope of these Terms and Conditions](#5--scope-of-these-terms-and-conditions)
10 | - [6. Obligations of Grantee](#6--obligations-of-grantee)
11 | - [7. Grant Terms.](#7--grant-terms)
12 | - [8. Taxes and other duties](#8--taxes-and-other-duties)
13 | - [9. Warranties and Liabilities.](#9--warranties-and-liabilities)
14 | - [10. Term and Termination](#10--term-and-termination)
15 | - [11. Notices](#11--notices)
16 | - [12. Stacks Network](#12--stacks-network)
17 | - [13. Acknowledgement and assumption of risks](#13--acknowledgement-and-assumption-of-risks)
18 | - [14. Privacy](#14--privacy)
19 | - [15. Miscellaneous](#15--miscellaneous)
20 | - [16. Dispute Resolution; Arbitration](#16-dispute-resolution-arbitration)
21 | - [17. Governing Law and Venue](#17--governing-law-and-venue)
22 | - [18. Severability](#18--severability)
23 | - [19. Modification of Grant Terms](#19--modification-of-grant-terms)
24 |
25 |
26 |
27 | >By participating in the Stacks Open Internet Foundation Grant Program, you acknowledge and accept the terms and conditions of the Stacks Open Internet Foundation for the grant application (the "Terms and Conditions", the "Grant Terms", or the “Agreement”).
28 |
29 | >These Terms and Conditions are entered into by and between the Stacks Open Internet Foundation (henceforth "We" or "the Foundation") and you as an applicant for the technical grant for software development, research and/or the production of software documentation and technical education material as specified in Guidelines for Stacks Foundation projects (henceforth "You" or “Grantee”) (each also a "Party" and together the "Parties"). Please read these Terms and Conditions carefully. By completing a project application on grants.stacks.org, You confirm that You have read these Terms and Conditions and that You agree to be bound by them.
30 |
31 | >Your acceptance of Stacks Open Internet Foundation Grant Program from us is subject to these Grant Terms (“Grant Terms”). By accepting Stacks Open Internet Foundation Grant Program from us, you will be bound by these Grant Terms and all terms incorporated by reference. If you have any questions regarding these Grant Terms, please contact us at grants@stacks.org.
32 |
33 | >We reserve the right to change, modify, add or remove portions of these Terms and Conditions from time to time. If this occurs, We will notify You in adequate form of such updates.
34 |
35 |
36 |
37 | ## 1. Introduction
38 |
39 | As part of our commitment to promoting a user-owned internet, The Stacks Foundation provides support for a comprehensive set of project types through a range of Funding Streams focused on funding software development and research efforts related to [Stacks](https://stacks.co) and [Bitcoin](https://bitcoin.org/bitcoin.pdf). Anyone is welcome to submit a project application. Projects funded through our programs are broad in scope, but our focus lies on strong **technical** projects that *add immediate and widespread value* to the Stacks ecosystem. Projects are supported through grants, residencies, and other means of funding. Each Project Type belongs to a specific Funding Stream. All Projects will henceforth be referred to as "grants".
40 |
41 |
42 |
43 | ## 2. Defined Terms
44 |
45 | The terms defined in this section whenever used in these Terms and Conditions shall have the respective meanings indicated below, both in singular and plural:
46 |
47 | - "Affiliate" has the meaning with respect to any person, any other person directly or indirectly controlling, controlled by or under common control with such person;
48 |
49 | - "STX" means the blockchain tokens native to the Stacks Network;
50 |
51 | - "Change of control" means any change in Your ownership or control or of a legal entity directly or indirectly owning or controlling You, whether by merger, consolidation, reorganization, take-over, change in the ownership of the share capital or otherwise;
52 |
53 | - "Development Work" means any and all development activities related to the Software and undertaken by You. For the avoidance of doubt, any development activities undertaken before the Effective Date in relation to the Software are deemed to constitute Development Work and to form part of the deliverables to be provided by You and be subject to the terms of these Terms and Conditions;
54 |
55 | - "Effective Date" means the date on which the application is accepted by the Grants Committee via the application review process;
56 |
57 | - "Grant" means the financial support granted by the Foundation. to You (i) for the development of the Software in accordance with the Specifications; and (ii) the grant of license rights on the Intellectual Property Rights, according to the terms of these Terms and Conditions. The Parties agree that Grants are unrelated to the actual development costs and the commercial value of the Software;
58 |
59 | - "Intellectual Property Rights" means any (i) patents, designs, copyright and related rights, database rights, trademarks, trade names (whether registered or unregistered), and the related rights to apply for registration thereof; (ii) applications, extensions and renewals in relation to any of these rights; (iii) know-how and confidential information; and (iv) all other rights of a similar nature and/or having an equivalent effect anywhere in the world;
60 |
61 | - "Milestones" mean any and all of the milestones specified in the final version of the application and approved by the Grants Committee in accordance with the Procedure;
62 |
63 | - "Stacks" means a decentralized, blockchain-based computing system developed by, or the development of which has been procured by the Foundation;
64 |
65 | - "Procedure" means the procedure in connection with the Stacks Open Internet Foundation grants program;
66 |
67 | - "Software" means the deliverables created by You during the development activities performed according to these Terms and Conditions in their final and working version, and that are to be provided to the Foundation in accordance with the Specifications, Milestones and Time Schedule;
68 |
69 | - "Specifications" mean the reasonably detailed technical and/or other requirements describing the features and functionality of the Software, as specified in the final version of the application approved by the Grants Committee in accordance with the Procedure;
70 |
71 | - "Terms and Conditions" means this terms and conditions together with any documents referred to in it;
72 |
73 | - "Time Schedule" means the anticipated date of completion of final deliverables agreed upon between You and the Foundation at the start of the Onboarding Phase.
74 |
75 |
76 |
77 | ## 3. Eligibility
78 |
79 | If You are submitting an application for a Grant, You represent and warrant that:
80 |
81 | If you are pursuing a technical grant, you have a sufficient technical understanding of blockchain-based protocols (including the Stacks Blockchain), and blockchain technology in general to understand these Grant Terms and to appreciate the risks and implications of accepting Stacks Open Internet Foundation Grant Program and conducting development work with respect to the Stacks Blockchain;
82 | You understand and agree that Stacks Open Internet Foundation Grant Program:
83 | - (i) are intended to be and will only be used in connection with development work in connection with the proposed project for the Stacks ecosystem,
84 | - (ii) will not be used for any other purpose, including for speculative purposes, and
85 | - (iii) confers no rights of any form with respect to the Foundation or its corporate affiliates, including, but not limited to, any voting, distribution, redemption, liquidation, proprietary (including all forms of intellectual property), or other financial or legal rights;
86 |
87 |
88 | Your acceptance of Stacks Open Internet Foundation Grant Program complies with applicable laws and regulations in your jurisdiction, including, but not limited to,
89 | - (i) legal capacity and any other applicable legal requirements in your jurisdiction for accepting Stacks Open Internet Foundation Grant Program, and entering into contracts with us,
90 | - (ii) any foreign exchange or regulatory restrictions applicable to such acceptance of Stacks Open Internet Foundation Grant Program, and
91 | - (iii) any governmental or other consents that may need to be obtained;
92 |
93 |
94 | If you are accepting Stacks Open Internet Foundation Grant Program on behalf of any entity,
95 | - (i) you are authorized to accept these Grant Terms and to act on such entity’s behalf,
96 | - (ii) such entity will be responsible for breach of these Grant Terms by you or any other employee or agent of such entity (references to “you” in these Grant Terms refer to you and such entity, jointly), and
97 | - (iii) such entity is duly organized and validly existing under the applicable laws of the jurisdiction of its organization.
98 |
99 |
100 | You hereby certify that you are not
101 | - (i) a citizen or resident of a geographic area in which use of Stacks Open Internet Foundation Grant Program in connection with development projects for the Stacks ecosystem is prohibited by applicable law, decree, regulation, treaty, or administrative act,
102 | - (ii) a citizen or resident of, or located in, a geographic area that is subject to U.S. or other applicable sanctions or embargoes, or
103 | - (iii) an individual, or an individual employed by or associated with an entity, identified on the U.S. Department of Commerce’s Denied Persons or Entity List, the U.S. Department of Treasury’s Specially Designated Nationals or Blocked Persons Lists, or the U.S. Department of State’s Debarred Parties List. You hereby represent and agree that if your country of residence or other circumstances change such that the above representations are no longer accurate, you will immediately notify the Foundation and cease using any Grant Amount.
104 |
105 | You will not use Stacks Open Internet Foundation Grant Program or the Stacks blockchain in connection with any activity that violates applicable laws in any relevant jurisdiction, including, but not limited to, use of Stacks Open Internet Foundation Grant Program or the Stacks blockchain in connection with transactions that violate U.S. federal or state securities or commodity laws; and
106 | TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW AND EXCEPT AS OTHERWISE SPECIFIED HEREIN, STACKS OPEN INTERNET FOUNDATION GRANT PROGRAM ARE PROVIDED ON AN “AS IS” BASIS WITHOUT WARRANTIES OF ANY KIND.
107 |
108 | You are of legal age to form a binding contract (at least 18 years old in most jurisdictions).
109 | You have the right, full power and authority to enter into these Terms and Conditions, to exercise your rights and perform your obligations under these Terms and Conditions and in doing so will not violate any other agreement to which You are a Party nor any laws.
110 |
111 | These Terms and Conditions constitutes a legal, valid and binding obligation on You which are enforceable against You in accordance with their terms.
112 |
113 | You will comply with any laws applicable to Your software (built upon the Stacks network) and not engage in any illegal activities. In particular, You will not use the Stacks network to facilitate infringement of any third party intellectual property rights or data privacy rights.
114 |
115 | You are not a citizen of, or resident in or located in, or incorporated or otherwise:
116 | listed on any of the following lists (each a Sanctions List): the Consolidated United Nations Security Council Sanctions List; the Specially Designated Nationals and Blocked Persons List or the Sectoral Sanctions Identification List maintained by the US Office of Foreign Assets Control (OFAC); the Consolidated List of Persons, Groups and Entities subject to EU Financial Sanctions; the Consolidated List of Financial Sanctions Targets or List of persons subject to restrictive measures in view of Russia's actions destabilizing the situation in Ukraine, maintained by the UK Treasury; the Overall List of Sanctioned Individuals, Entities and Organizations maintained by the Swiss State Secretariat for Economic Affairs (SECO); 'Ordinance lists of the Swiss Federal Council'; or any similar list maintained by, or public announcement of sanctions made by, any other Sanctions Authority (as defined below);
117 |
118 | Owned or controlled by, or acting on behalf of or for the benefit of, any person on a Sanctions List;
119 | The target of any sanctions laws, regulations, embargoes or restrictive measures (Sanctions), as amended from time to time, administered, enacted or enforced by: the United Nations, the United States, the European Union or any Member State thereof, the United Kingdom, Switzerland or the respective Governmental Authorities and agencies of any of the foregoing responsible for administering, enacting or enforcing Sanctions, including without limitation, OFAC, the US Department of State, the United Kingdom Treasury or the SECO (Sanctions Authority).
120 |
121 |
122 |
123 | ## 4. Procedure
124 |
125 | To apply for the Stacks Open Internet Grants Program, your application shall fulfill the following criteria:
126 |
127 | - All projects shall be a software-based projects, which contributes to the advancement of the Stacks ecosystem;
128 |
129 | - the total amount of funding requested for the project shall be below USD $25,000 and USD $250,000 for follow-up grants at the time of submission;
130 |
131 | - the Software shall be released under the Apache license version 2.0.;
132 |
133 | - You must accept payment in the blockchain tokens native to the Stacks Network ("STXs");
134 |
135 | - You will need to submit the application and deliver the milestones according to the process specified below;
136 |
137 | The open grants process consists of five parts, each of them described in more detail below:
138 |
139 | - Application Review Phase: This phase consists of the following steps:
140 | Submit an application via the [Stacks Foundation Projects Launchpad](https://grants.stacks.org/).
141 | The Project Launchpad creates a Github issue for your project application.
142 | After creating your application all interaction, revisions, updates occur on Github.
143 | Receive informal feedback received from the community on your application via comments on your Github issue.
144 | Revise your application based on the feedback you receive.
145 | Wait for the formal review and determinations for your funding round to be announced.
146 |
147 | - Onboarding Phase: The Onboarding Phase consists of the following steps:
148 | - Project Lead verifies identity using a third-party KYC service.
149 | - Project Lead (aka applicant) signs contract and a representative from the Stacks Foundation countersigns contract.
150 | - Initial Payment disbursed at the conclusion of the Onboarding Phase.
151 | - Begin work on your project.
152 |
153 | - Milestone Deliverable Phase:
154 |
155 | Depending on the size of your project budget you may either skip this step, or repeat it several times (see this [chart] for details), but in general, a Milestone Phase consists of:
156 |
157 | - Post a link to the completed work and request a review by completing the correct milestone issue (affiliated with the Grant issue) on Github..
158 | - Allow the Stacks community an opportunity to review and comment on your work verifying it is done as outlined in the project application.
159 | - Once it is determined the work matches the approved project application your Milestone Payment will be disbursed.
160 |
161 | - Final Deliverable Phase: The Final Deliverable Phase works just like a Milestone Phase. At the conclusion of this phase, you will be awarded your final payment.
162 |
163 | ### Stale Designation
164 |
165 | Once a project initiates and the grant is initially approved, a participant needs to formally submit an update in the form of a deliverable on GitHub within the first 30 days, if not, the project will be marked as "stale". Additionally, once a progress milestone is approved, a participant needs to formally submit an update in the form of a deliverable on GitHub within 30 days, if not, the project will be marked as "stale".
166 | Clawback:
167 | If a grant is marked 'Stale' and is not updated within 30 days, the grant will be 'Closed'. You will be required to reapply to complete any previously approved work and You shall be responsible for paying back any prior funds paid to you for that grant if the work is left in a state where either the scope of work completed does not conform to the milestones outlined in your application, as determined in the sole discretion of the Foundation, and/or not delivered to the milestone delivery guidelines outlined in the Terms.
168 |
169 | ## 5. Scope of these Terms and Conditions
170 |
171 | The subject matter of these Terms and Conditions is (i) the development of the Software by You in accordance with the Specifications, Milestones and Time Schedule, as well as any related activities (including any development activities undertaken before the Effective Date in relation to the Software) (collectively referred to as "Development Work") in accordance with the terms of these Terms and Conditions.
172 |
173 |
174 | Unless expressly agreed otherwise in writing by the Foundation, the Grantee shall not subcontract, even partially, the development of the project/deliverable to any third party. If the project/deliverable, in whole or in part, is subcontracted to a third party without the consent of the Foundation, the Foundation is entitled to immediately terminate the Grant Agreement and to recover the grant amount already disbursed.
175 |
176 | The Parties acknowledge and agree that the requirements set out in the Milestones may only be varied or amended by submitting a request via the comment section below their application issue and the following reevaluation by the committee under the same conditions as the initial application review process specified above.
177 |
178 | In performing your obligations under these Terms and Conditions, You shall:
179 | use reasonable skill and care;
180 | comply with any date or time specified according to the Time Schedule;
181 | perform your obligations in accordance with good industry practice, being practices in relation to the development of software and related deliverables the same as or similar to the Software that are usually followed by other suppliers in the same industry, including adherence to industry codes of practice and industry standards in relation to such products and services;
182 | perform your obligations in accordance with all laws and codes of conducts applicable;
183 | ensure that your development team consists of a sufficient number of appropriately skilled and experienced individuals
184 | develop the Software as an open source software under the Apache license version 2.0.
185 |
186 |
187 |
188 | ## 6. Obligations of Grantee
189 |
190 | You shall deliver the Software, as well as all related deliverables, including but not limited to the source code, to the Foundation free of defects, fully compliant with the Specifications and in accordance with the Time Schedule.
191 |
192 | The Foundation shall be in the position to further develop, re-engineering and using the delivered Software without any technical or other limitations.
193 |
194 | You shall bear all costs and expenses incurred in connection with the Development Work.
195 |
196 | You shall remain positive towards the Foundation, the Foundation representatives and its goals, plans and projects. You shall advocate for the Foundation's projects' and subprojects' aims during the term of the Agreement.
197 |
198 | You shall, at all times during the term of the Agreement refrain from making, causing to be made, publishing, ratifying, endorsing, re-publishing or promulgating any and all disparaging remarks or derogatory, false, negative, critical, vilifying or otherwise detrimental statements or comments, whether implied or expressed, made in any format to any party or entity with respect to the Foundation, its officers, directors, employees, council members, advisors or otherwise affiliated individuals, entities and projects, including, but not limited to negative statements pertaining to:
199 |
200 | 1. any management style, methods of doing business, quality of products and services, the business affairs, operation, financial condition and standing in the community; and
201 | 2. any treatment of its officers, directors, employees, council members, advisors or otherwise affiliated individuals and any circumstances surrounding any such employment and/or separation of employment from the Foundation or advisory relationships.
202 |
203 |
204 |
205 | ## 7. Grant Terms.
206 |
207 | The Foundation shall grant You, as compensation for the delivery of the Software and the related deliverables and the grant of license rights on the Intellectual Property Rights to the Foundation, a Grant.
208 | The Parties agree that the Grant is a lump-sum payment and that no additional compensation is due for the actual development costs incurred. The Grant is paid as milestone payments for the accomplishment of the Milestones. You shall not be entitled to an increase in compensation, even if you have had more work or greater expenses than anticipated. An increase in compensation is also excluded if extraordinary circumstances which could not have been foreseen prevent the completion of the Software or make it excessively difficult.
209 | Except as specifically provided otherwise, the Grant shall be due and payable on or before twenty (20) calendar days after receiving an invoice from You and upon acceptance by the Foundation. of the Software and/or Milestones. The Parties acknowledge and agree that the Foundation. shall be entitled to make Milestones payments. The Parties acknowledge and agree that any partial or advanced payments by the Foundation or any third party shall be set off against the total amount of the Grant.
210 |
211 |
212 |
213 | ## 8. Taxes and other duties
214 |
215 | You are solely responsible for determining what, if any, taxes or other duties apply to Your Grant. It is also Your responsibility to withhold, collect, report, and remit the correct taxes to the appropriate tax authorities, according to the legislation in force. the Foundation is not responsible and shall be in no way held liable for withholding, collecting, reporting, and remitting and taxes arising from, or in connection to Your Grant.
216 |
217 |
218 |
219 | ## 9. Warranties and Liabilities.
220 |
221 | You hereby warrant that You are the owner of all Intellectual Property Rights, title and interest in and to the Software andthe related deliverables, free and clear of all liens and encumbrances and that You have the exclusive and unlimited right and authority to use and dispose of the Software and the related deliverables by granting to the Foundation. license rights according to these Terms and Conditions and such use and right to dispose did not and will not conflict with, infringe upon or violate any copyright or any other proprietary right of any other person. You further warrant that there are no licenses or rights currently in effect in favor of any third party to use the Software and the related deliverables which would impair the rights granted to the Foundation. as provided for under these Terms and Conditions; and that there is no pending or threatened claim, action, suit, investigation or proceeding of any kind challenging, alleging or asserting that the Software and the related deliverables were improperly or invalidly granted or are otherwise not protected as Intellectual Property Rights.You further warrant that the Software and the related deliverables are free of defects in materials and workmanship and fully conform the Specifications and perform the functions and criteria as described in the Specifications and are sufficient and fit for the intended use as described in the Specifications.
222 |
223 | You shall hold the Foundation. as well as its sublicensees harmless against any and all liability and damages for the infringement of Intellectual Property Rights of third parties, insofar as the infringement of such third party rights was caused by the intended use of the Software according to the Specifications. the Foundation. shall immediately inform You in writing of any third party claims asserted and authorize You to conduct the defense, including the conclusion of a settlement, entirely at its own costs. In this respect, You shall use best efforts to provide the Foundation. with the right to continue, or let continue, using the Software or replace or modify the Software without deterioration or limitations of the functions and criteria agreed in the Specifications and without any additional costs. Should none of these measures be possible, the Foundation. shall be entitled to withdraw from these Terms and Conditions and request the reimbursement of the Grant.
224 |
225 |
226 |
227 | ## 10. Term and Termination
228 |
229 | These Terms and Conditions (i) comes into force on the Effective Date (notwithstanding that these Terms and Conditions shall apply to Development Work carried out prior to the Effective Date); and (ii) shall remain in force (unless terminated earlier in accordance with its terms) until the acceptance of the Software by the Foundation. and full payment of the Grant.
230 |
231 | Both Parties agrees that the Foundation shall have the right to terminate the Grant during periods of market volatility as determined in the Foundation’s sole discretion. You agree that the Foundation’s right to terminate due to volatile market conditions is in the best interests of both Parties and You waive any and all claims for any damages whatsoever arising from termination due to volatile market conditions.
232 |
233 | Termination with immediate effect will occur if the terms of the Terms and Conditions agreement is violated, as follows:
234 |
235 | (i) if a deadline according to the Time Schedule is not met;
236 | (ii) if You become bankrupt, insolvent, wound-up or dissolved or otherwise loses its legal personality as a validly standing entity;
237 | (iii) if there is a Change in Control and the Foundation. has not given his prior written consent to such Change in control; and/or
238 | (iv) in the event You do not comply with or if you cause, in any way and at the Foundation’s sole discretion, any damage to the Foundation or Stacks image or reputation.
239 |
240 | The Foundation reserves the right, it its sole discretion, to terminate the Grant and/or Your involvement, with or without cause.
241 |
242 | ## 11. Notices
243 |
244 | We may provide any notice to You under these terms and conditions by posting a notice on our Website, adding a comment to the initial pull request of your application on GitHub or sending an email to the email address associated with Your access account to the network. Notices We provide by posting on the Website will be effective upon posting. You will be deemed to have received any email sent to the email address then associated with Your account when We have sent the email (or the next regular working day thereafter), whether or not You actually receive or read the email. It is Your responsibility to keep Your email address current.
245 |
246 | To give Us notice under these terms and conditions, You must contact us by email to [grants@stacks.org]. We may update this email address for notices to us by posting a notice on Our Website. Notices to us will be effective one business day after they are sent. All communications and notices to be made or given pursuant to these terms and conditions must be in English language.
247 |
248 |
249 |
250 | ## 12. Stacks Network
251 |
252 | If You are using Stacks network for the purpose of the software development, research and/or the production of software documentation and technical education material You agree to be bound by specific term as follows:
253 |
254 | You are free to use the software to gain access to and use the Stacks network and to build your own network(s) and have your network interact with other networks which are also part of the Stacks network.
255 |
256 | YOU SHALL AT ALL TIMES NOTE THAT NO PARTY (NEITHER WE OR YOU), INCLUDING BUT NOT LIMITED TO ANY PARTY INVOLVED IN, OR HAVING CONTRIBUTED TO THE DEVELOPMENT OF, THE STACKS NETWORK AND ANY OF THE AFFILIATES, DIRECTORS, EMPLOYEES, CONTRACTORS, SERVICE PROVIDERS OR AGENTS OF SUCH PARTIES (THE "PARTIES INVOLVED") OWNS OR CONTROL THE STACKS NETWORK OR ANY ACCESSORY, UPGRADE, RELATED SOFTWARE OR ANY OTHER MODIFICATION TO IT (INCLUDING, BUT NOT LIMITED TO, STACKS NETWORK USER INTERFACE) AND YOU ARE SOLELY AND IN FULL RESPONSIBLE FOR YOUR USE OF EACH AND ANY OF THEM. THERE IS NO CENTRAL OVERSIGHT OVER THE STACKS NETWORK. IT IS BUILT BY THE PARTICIPANTS AND PARTICIPANTS OF THEIR NETWORKS THEMSELVES. FOR THE AVOIDANCE OF DOUBT, THE STACKS OPEN INTERNET FOUNDATION ASSUMES NO RESPONSIBILITY OR LIABILITY FOR (1) AVAILABILITY AND OPERABILITY OF THE STACKS NETWORK AND ITS UNDERLYING SOFTWARE, (2) INTEROPERABILITY OF YOUR NETWORK WITH OTHER THIRD PARTY NETWORKS (THIS LARGELY DEPENDS ON EXTERNAL FACTORS BEYOND OF THE STACKS OPEN INTERNET FOUNDATION'S REASONABLE CONTROL SUCH AS, IN PARTICULAR THE INFRASTRUCTURE AND OPERABILITY OF THIRD PARTY NETWORKS AND THEIR INTERNET-CONNECTIVITY MEASURES) OR (3) SUITABILITY OF THE STACKS NETWORK FOR YOUR OWN BUSINESS PURPOSES. YOU ARE USING THE STACKS NETWORK FOR YOUR OWN BUSINESS PURPOSES AT YOUR SOLE AND OWN RISK.
257 |
258 |
259 |
260 | ## 13. Acknowledgement and assumption of risks
261 |
262 | You shall at all times acknowledge and agree that certain risks exist in relation to using the Stacks network. You fully acknowledge and agree that:
263 |
264 | No Party, including but not limited to the Parties involved, owns or controls the Stacks network. It is built by the end users themselves.
265 | No Party, including but not limited to the Parties involved, has any authority to approve, prevent, restrict or anyhow exercise control over any interaction that occurs through the Stacks network. You and end users are free to build their own network and network-based applications and provide them to customers under their own terms and conditions, provided that such applications should also run and be offered in a decentralized manner (as e.g. distributed ledger technology or often referred to as "blockchain" or any future adaptations of such technologies) without central oversight.
266 | You shall not have any expectations over the performance, suitability for business or interoperability of the Stacks network for Your own business purposes.
267 | Stacks network source code has not passed a third party security audit and can be potentially unstable and could cause unexpected effects and system failures. You are aware of this risk and must address it within Your own privacy compliance model when establishing technical and organizational measures on data security for Your end customers.
268 | By using the Stacks network You covenant, represent, and warrant that Your use of the network complies with Your jurisdiction of residence and You are fully able and legally competent to use the Stacks network.
269 | In the event Your use of the Stacks network does not comply with the applicable law of Your jurisdiction of residence, You shall be fully liable for any consequences incurred thereof and fully acknowledge and agree that We shall not be held liable for Your use of the Stacks network
270 | There is a risk that advances in cryptography or technical advances (such as the development of quantum computers) could present risks to blockchain-based applications and cryptocurrencies, Ethereum or tokens which could result in the theft or loss of such elements.
271 | The network (as well as any network You build based upon it) is susceptible to mining attacks (including but not limited to double-spend attacks, majority mining power attacks, "selfish-mining" attacks and race condition attacks. Despite the efforts of the Foundation, the risk of known or novel mining attacks exists.
272 | There are risks associated with using the network, such as e.g. failure of hardware, software and Internet connections. You acknowledge that the Foundation shall not be responsible for any communication failures, disruptions, errors, distortions or delays You may experience when using the network.
273 | network source code is provided on an "AS IS" basis, without warranties and conditions of any kind, either express or implied, including, without limitation, any warranties or conditions of title, merchantability, fitness for a particular purpose, and non-infringement, unless otherwise required by mandatory applicable law.
274 | The entire risk as to the quality and performance of using the network is borne by You.
275 | You are solely responsible for determining the appropriateness of using or redistributing the network source code and/or any Derivative Work and assume any risks associated with Your exercise of permission granted under this License.
276 | You are solely responsible to regularly check for any modifications and updates to the network source code published at
277 |
278 |
279 |
280 | ### Intellectual property
281 |
282 | As regards the network and its underlying technology, the Foundation is offering You the right to use it open-source based and the Foundation does not retain any proprietary intellectual property rights therein (see the GPL-License Version 3 available under ).
283 |
284 | However, the Foundation retains all rights, title and interest in any intellectual property rights relating to its business (such as trademarks or logos on its Website or copyrights/know-how in other business offerings not related to the network).
285 |
286 |
287 |
288 | ## 14. Privacy
289 |
290 | To the extent that You will gain access to and collect and process personally identifiable data through the network (or any own network built upon it) and maybe even store it outside of these networks (i.e. "off-chain"). In this context, You represent and warrant to be compliant with the applicable data protection laws, in particular, to collect personal data lawfully, in good faith, and to retain and process such data proportionately only for the purposes of processing made evident at the time of collection and that such data will be secured with adequate technical and organizational measures against unauthorized use and to comply with third party data processing principles and not transfer such data into countries with a non-adequate data protection standard compared to Yours without adequate contractual safeguards.
291 |
292 |
293 |
294 | ## 15. Miscellaneous
295 | The Parties are independent contractors. These Terms and Conditions are an agreement at arms' length between the Parties and do not constitute a partnership, association or joint venture under any applicable law. Consequently, the provisions of these Terms and Conditions shall not, under any circumstances, be interpreted as creating any such relationship between the Parties. Neither Party may bind the other in any manner whatsoever or in favor of anyone whatsoever.
296 |
297 | The failure of any of the Parties to avail itself or to enforce any of the provisions of these Terms and Conditions or any rights with respect thereto shall in no way be considered to be a waiver of such provisions or rights, or in any way to affect the validity of these Terms and Conditions. No waiver shall be effective unless expressly made in writing and signed by an authorized representative of the waiving Party.
298 |
299 | If any provision of these Terms and Conditions is held to be void, invalid or inoperative, the remaining provisions of these Terms and Conditions shall not be affected and shall continue to be in effect, and the invalid provision shall be deemed modified to the least degree necessary to remedy such invalidity.
300 |
301 | These Terms and Conditions or individual rights and obligations arising from it may only be assigned or transferred to third parties with the prior written consent of the other Party, save that the Foundation may freely assign any of its Intellectual Property Rights and any rights or obligations pursuant to these Terms and Conditions to any of its Affiliates.
302 |
303 | These Terms and Conditions and any documents referred to in it shall constitute the entire agreement between the Parties in relation to the subject matter hereof, and shall supersede all previous agreements, arrangements and understandings between the Parties with respect hereto.
304 |
305 | Indemnification. To the fullest extent permitted by applicable law, you will indemnify, defend and hold harmless the Foundation and our respective past, present and future employees, officers, directors, contractors, consultants, equity holders, suppliers, vendors, service providers, parent companies, subsidiaries, affiliates, agents, representatives, predecessors, successors and assigns (the “Foundation Parties”) from and against all claims, demands, actions, damages, losses, costs and expenses (including attorneys’ fees) that arise from or relate to: (i) your acceptance or use of Stacks Open Internet Foundation Grant Program; (ii) your responsibilities or obligations under these Grant Terms; (iii) your violation of these Grant Terms; (iv) any application, product or service you develop or use in connection with this Stacks Development Grant; and (v) your violation of any rights of, or laws or regulations applicable to, any other person or entity. The Foundation reserves the right to exercise sole control over the defense, at your expense, of any claim subject to indemnification under Section 9(a). This indemnity is in addition to, and not in lieu of, any other indemnities set forth in a written agreement between you and the Foundation.
306 |
307 | Limitation of Liability. TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW: (I) IN NO EVENT WILL THE FOUNDATION OR ANY OF THE FOUNDATION PARTIES BE LIABLE FOR LOSS OF PROFITS OR ANY INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES OF ANY KIND (INCLUDING, BUT NOT LIMITED TO, WHERE RELATED TO LOSS OF REVENUE, INCOME OR PROFITS, LOSS OF USE OR DATA, OR DAMAGES FOR BUSINESS INTERRUPTION) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF STACKS OPEN INTERNET FOUNDATION GRANT PROGRAM, OR OTHERWISE RELATED TO THESE GRANT TERMS, REGARDLESS OF THE FORM OF ACTION, WHETHER BASED IN CONTRACT, TORT (INCLUDING, BUT NOT LIMITED TO, SIMPLE NEGLIGENCE, WHETHER ACTIVE, PASSIVE OR IMPUTED), OR ANY OTHER LEGAL OR EQUITABLE THEORY (EVEN IF THE PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND REGARDLESS OF WHETHER SUCH DAMAGES WERE FORESEEABLE); AND (II) IN NO EVENT WILL THE AGGREGATE LIABILITY OF THE FOUNDATION AND THE FOUNDATION PARTIES (JOINTLY), WHETHER IN CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE, WHETHER ACTIVE, PASSIVE OR IMPUTED), OR OTHER THEORY, ARISING OUT OF OR RELATING TO THESE GRANT TERMS OR THE USE OF STACKS OPEN INTERNET FOUNDATION GRANT PROGRAM, EXCEED THE AGGREGATE VALUE OF GRANT AMOUNT(S) ACCEPTED BY YOU.
308 |
309 | Release. To the fullest extent permitted by applicable law, you release the Foundation and the other the Foundation Parties from responsibility, liability, claims, demands and damages (actual and consequential) of every kind and nature, known and unknown (including, but not limited to, claims of negligence), arising out of or related to disputes between users and the acts or omissions of third parties. You expressly waive any rights you may have under California Civil Code § 1542 (as set forth below) as well as any other statute or common law principles that would otherwise limit the coverage of this release (including similar laws in other applicable jurisdictions) to include only those claims which you may know or suspect to exist in your favor at the time of agreeing to this release. You acknowledge that each has read this Agreement and knows and understands the full contents and effect of it. Purchaser further declares that it understands the full nature, extent, and import of California Civil Code § 1542 and of this entire Agreement, and has sought and obtained the advice of its own counsel with respect to that statute and this Agreement. Accordingly, with respect to the released matters, you hereby waives and relinquishes any and all rights or benefits that they may have under the provisions of Section 1542 of the California Civil Code, which reads as follows:
310 | A general release does not extend to claims that the creditor or releasing party does not know or suspect to exist in his or her favor at the time of executing the release and that, if known by him or her, would have materially affected his or her settlement with the debtor or released party.
311 |
312 |
313 |
314 | ## 16. Dispute Resolution; Arbitration
315 | PLEASE READ THE FOLLOWING SECTION CAREFULLY BECAUSE IT CONTAINS ADDITIONAL PROVISIONS APPLICABLE ONLY TO INDIVIDUALS LOCATED, RESIDENT, OR DOMICILED IN THE UNITED STATES. IF YOU ARE LOCATED, RESIDENT, OR DOMICILED IN THE UNITED STATES, THIS SECTION REQUIRES YOU TO ARBITRATE CERTAIN DISPUTES AND CLAIMS WITH THE FOUNDATION AND LIMITS THE MANNER IN WHICH YOU CAN SEEK RELIEF FROM US.
316 | Binding Arbitration. Except for any disputes, claims, suits, actions, causes of action, demands or proceedings (collectively, “Disputes”) in which either Party seeks injunctive or other equitable relief for the alleged unlawful use of intellectual property, including, without limitation, copyrights, trademarks, trade names, logos, trade secrets or patents, you and the Foundation (i) waive your and the Foundation’s respective rights to have any and all Disputes arising from or related to these Grant Terms resolved in a court, and (ii) waive your and the Foundation’s respective rights to a jury trial. Instead, you and the Foundation will arbitrate Disputes through binding arbitration (which is the referral of a Dispute to one or more persons charged with reviewing the Dispute and making a final and binding determination to resolve it instead of having the Dispute decided by a judge or jury in court).
317 | No Class Arbitrations, Class Actions or Representative Actions. Any Dispute arising out of or related to these Grant Terms is personal to you and the Foundation and will be resolved solely through individual arbitration and will not be brought as a class arbitration, class action or any other type of representative proceeding. There will be no class arbitration or arbitration in which an individual attempts to resolve a Dispute as a representative of another individual or group of individuals. Further, a Dispute cannot be brought as a class or other type of representative action, whether within or outside of arbitration, or on behalf of any other individual or group of individuals.
318 | Federal Arbitration Act. These Grant Terms affect interstate commerce and the enforceability of this Section 12 will be both substantively and procedurally governed by and construed and enforced in accordance with the Federal Arbitration Act, 9 U.S.C. § 1 et seq. (the “FAA”), to the maximum extent permitted by applicable law.
319 | Notice; Informal Dispute Resolution. Each Party will notify the other Party in writing of any Dispute within 30 days of the date it arises, so that the Parties can attempt in good faith to resolve the Dispute informally. Notice to the Foundation shall be sent by e-mail to the Foundation at grants@stacks.org. We may provide notice to you via email to the email address you provide us in connection with Registration. Your notice must include (i) your name, postal address, email address and telephone number, (ii) a description in reasonable detail of the nature or basis of the Dispute, and (iii) the specific relief that you are seeking. If you and the Foundation cannot agree how to resolve the Dispute within 30 days after the date notice is received by the applicable Party, then either you or the Foundation may, as appropriate and in accordance with this Section 12, commence an arbitration proceeding or, to the extent specifically provided for in Section 12(a), file a claim in court.
320 | Any arbitration will occur in San Francisco County, California. Arbitration will be conducted confidentially by a single arbitrator in accordance with the rules of the Judicial Arbitration and Mediation Services (“JAMS”), which are hereby incorporated by reference. The state and federal courts located in San Francisco County, California will have exclusive jurisdiction over any appeals and the enforcement of an arbitration award. You may also litigate a Dispute in the small claims court located in the county where you reside if the Dispute meets the requirements to be heard in small claims court.
321 | Authority of Arbitrator. As limited by the FAA, these Grant Terms and the applicable JAMS rules, the arbitrator will have (i) the exclusive authority and jurisdiction to make all procedural and substantive decisions regarding a Dispute, including the determination of whether a Dispute is arbitrable, and (ii) the authority to grant any remedy that would otherwise be available in court; provided, however, that the arbitrator does not have the authority to conduct a class arbitration or a representative action, which is prohibited by these Grant Terms. The arbitrator may only conduct an individual arbitration and may not consolidate more than one individual’s claims, preside over any type of class or representative proceeding or preside over any proceeding involving more than one individual.
322 | Rules of JAMS. The rules of JAMS and additional information about JAMS are available on the JAMS website. By agreeing to be bound by these Grant Terms, you either (i) acknowledge and agree that you have read and understand the rules of JAMS, or (ii) waive your opportunity to read the rules of JAMS and any claim that the rules of JAMS are unfair or should not apply for any reason.
323 | Severability of Dispute Resolution; Arbitration. If any term, clause or provision of this Section 12 is held invalid or unenforceable, it will be so held to the minimum extent required by law, and all other terms, clauses and provisions of this Section 12 will remain valid and enforceable. Further, the waivers set forth in Section 12 are severable from the other provisions of these Grant Terms and will remain valid and enforceable, except as prohibited by applicable law.
324 |
325 |
326 |
327 | ## 17. Governing Law and Venue
328 | The validity, interpretation, construction and performance of this Agreement, and all acts and transactions pursuant hereto and the rights and obligations of the parties hereto shall be governed, construed and interpreted in accordance with the laws of the state of Delaware, without giving effect to principles of conflicts of law. Any Dispute between the Parties arising out or relating to these Grant Terms or its subject matter or formation (including non-contractual Disputes of claims) that is not subject to arbitration will be resolved in the courts of Delaware.
329 |
330 |
331 |
332 | ## 18. Severability
333 | If any term, clause or provision of these Grant Terms is held unlawful, void or unenforceable, then that term, clause or provision will be severable from these Grant Terms and will not affect the validity or enforceability of any remaining part of that term, clause or provision, or any other term, clause or provision of these Grant Terms.
334 |
335 |
336 |
337 | ## 19. Modification of Grant Terms
338 | We have the right to modify these Grant Terms if we reasonably believe that such modifications are necessary to comply with applicable laws or regulations or to address technical inaccuracies. If we make changes, we will provide notice to you via email to the email address you provide during Registration. The amended Grant Terms will be effective immediately, and your continued use or holding of Grant Amount(s) or any portion thereof you accepted as Stacks Open Internet Foundation Grant Program shall constitute your acceptance of the modified Grant Terms.
339 |
340 |
--------------------------------------------------------------------------------
/docs/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/.DS_Store
--------------------------------------------------------------------------------
/docs/assets/images/blog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/blog.png
--------------------------------------------------------------------------------
/docs/assets/images/discord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/discord.png
--------------------------------------------------------------------------------
/docs/assets/images/header-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/header-new.png
--------------------------------------------------------------------------------
/docs/assets/images/stacks-foundation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/stacks-foundation.png
--------------------------------------------------------------------------------
/docs/assets/images/stacks-governance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/stacks-governance.png
--------------------------------------------------------------------------------
/docs/assets/images/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/twitter.png
--------------------------------------------------------------------------------
/docs/assets/images/web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksgov/grants-program/c10f32f77b0b8ef6329a990bf4b5fe22475fd6e0/docs/assets/images/web.png
--------------------------------------------------------------------------------