Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugocaillard/clearness
Source code of the Clearness blog. Learn to code Smart Contracts on Bitcoin thanks to Stacks and the Clarity Language
https://github.com/hugocaillard/clearness
bitcoin clarity smart-contracts stacks web3
Last synced: about 1 month ago
JSON representation
Source code of the Clearness blog. Learn to code Smart Contracts on Bitcoin thanks to Stacks and the Clarity Language
- Host: GitHub
- URL: https://github.com/hugocaillard/clearness
- Owner: hugocaillard
- License: other
- Created: 2022-03-17T16:34:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-05T17:32:06.000Z (about 2 years ago)
- Last Synced: 2024-04-18T18:10:43.914Z (7 months ago)
- Topics: bitcoin, clarity, smart-contracts, stacks, web3
- Language: TypeScript
- Homepage: https://www.clearness.dev
- Size: 3.37 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-code-snippets.txt
Awesome Lists containing this project
README
# Clearness
Source code and articles for [clearness.dev/](https://www.clearness.dev/)
## Roadmap
- [x] build the blog with remix.run
- [x] og meta and images
- [x] open source the "voting" [repo](https://github.com/hugocaillard/clarity-voting-tuto)
- [x] set license
- [x] analytics with plausible
- [x] open source blog repo
- [x] update licenses (inspired by [overreacted](https://github.com/gaearon/overreacted.io))
- [ ] improve existing "annexes" and "clarity" articles
- [ ] "from 0 to clarity" - how to get started with no coding experience
- [ ] "from JS to clarity" - transfer JS/TS knowledge to clarity
- [ ] "define functions" - read-only, public, privat - arguments and return/resonse types
- [ ] "deploy on mainnet and testnet"- series
- [x] first series of articles "voting system"
- [x] "build the web3 app" to interact with the voting system
- [ ] part 2 of "voting system": NFT reward, deployment## Development
- [Remix Docs](https://remix.run/docs)
To run your Remix app locally, make sure your project's local dependencies are installed:
```bash
$ npm install
```
Afterwards, start the Remix development server like so:```bash
$ npm run dev
```