Skip to content

Commit 8c4cfeb

Browse files
committed
add disclaimer and licence
1 parent 09ca355 commit 8c4cfeb

6 files changed

Lines changed: 85 additions & 0 deletions

File tree

DISCLAIMER.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Disclaimer
2+
3+
**Every Simplicity** is an informational index of publicly available Simplicity programs.
4+
It is provided for educational and research purposes only.
5+
6+
## Not Affiliated with Blockstream
7+
8+
This is an independent, community project and is **not officially endorsed by, affiliated with,
9+
or associated with Blockstream Research or Blockstream**. All Blockstream trademarks, logos,
10+
and brand names are the property of Blockstream. References to Blockstream repositories are
11+
for informational purposes only.
12+
13+
## No Financial Advice
14+
15+
Nothing in this repository or the associated website constitutes financial advice,
16+
investment advice, or a recommendation to use any of the catalogued programs.
17+
Do not use these contracts to manage real funds without independent professional review.
18+
19+
## No Warranty
20+
21+
All programs are sourced from third-party public repositories. This project makes no
22+
representations as to their correctness, security, or fitness for any purpose.
23+
Smart contract bugs can result in permanent, irreversible loss of funds.
24+
25+
## Use at Your Own Risk
26+
27+
Simplicity is an experimental language. Contracts indexed here have not been audited by
28+
this project. Any use of these programs on mainnet or with real assets is entirely at
29+
your own risk.
30+
31+
## Third-Party Content
32+
33+
Programs catalogued here belong to their respective authors and are subject to their
34+
own licenses. This project does not claim ownership of any indexed contract.
35+
36+
## No Liability
37+
38+
The maintainers of this project accept no liability for any loss, damage, or legal
39+
consequences arising from use of any information or code found in this catalog.

LICENSE

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
MIT License
2+
3+
Copyright (c) 2026 stringhandler
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
---
24+
25+
Note: The Simplicity programs indexed in `data/programs/` are sourced from
26+
third-party public repositories. They are not covered by this license and
27+
remain subject to their respective authors' licenses and terms.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A searchable catalog of every `.simplicityhl` file on the internet.
44

5+
> **Disclaimer:** This is an independent, community project and is not officially endorsed by, affiliated with, or associated with Blockstream. Simplicity programs indexed here are sourced from public third-party repositories and have not been audited. This is not financial advice. Use at your own risk. See [DISCLAIMER.md](DISCLAIMER.md) for full details.
6+
57
## Adding a program
68

79
Requires: Docker (running), Rust/Cargo.

cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "simplicity-catalog"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MIT"
56

67
[[bin]]
78
name = "simplicity-catalog"

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "every-simplicity",
33
"version": "0.1.0",
44
"description": "A searchable catalog of every .simplicityhl file on the internet",
5+
"license": "MIT",
56
"private": true,
67
"type": "module",
78
"scripts": {

site/build.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,14 @@ function buildHtml(programs) {
385385
}
386386
.mermaid-modal-close:hover { color: #e6edf3; }
387387
388+
footer {
389+
border-top: 1px solid #21262d;
390+
padding: 1.25rem 2rem;
391+
font-size: 0.8rem;
392+
color: #8b949e;
393+
line-height: 1.6;
394+
}
395+
388396
.tabs {
389397
display: flex;
390398
gap: 0;
@@ -604,6 +612,13 @@ function buildHtml(programs) {
604612
</div>
605613
</div>
606614
615+
<footer>
616+
<strong style="color:#c9d1d9">Disclaimer:</strong>
617+
This is an independent, community project and is <strong style="color:#c9d1d9">not officially endorsed by, affiliated with, or associated with Blockstream</strong>.
618+
Programs indexed here are sourced from public third-party repositories and have not been audited by this project.
619+
This is not financial advice. Do not use these contracts with real funds without independent professional review. Use at your own risk.
620+
</footer>
621+
607622
<div class="ext-modal" id="ext-modal">
608623
<div class="ext-modal-inner">
609624
<h2>External link</h2>

0 commit comments

Comments
 (0)