mirror of
https://github.com/autistic-symposium/web3-starter-sol.git
synced 2025-07-29 17:58:44 -04:00
Initial commit
This commit is contained in:
commit
6a1272df4c
3 changed files with 53 additions and 0 deletions
1
.github/.gitkeep
vendored
Normal file
1
.github/.gitkeep
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
|
31
.github/workflows/validate_urls.yml
vendored
Normal file
31
.github/workflows/validate_urls.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
name: validate links
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
concurrency:
|
||||
group: ${{github.workflow}}-${{github.ref}}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
unit:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: set up ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.1
|
||||
bundler-cache: true
|
||||
|
||||
- name: install awesome_bot
|
||||
run: gem install awesome_bot
|
||||
|
||||
- name: validate URLs
|
||||
run: awesome_bot README.md --allow-redirect --request-delay 0.4
|
21
README.md
Normal file
21
README.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
## 🥷🏻🛵⛓️ playing pvp in the metaweb: solidity edition
|
||||
|
||||
<br>
|
||||
|
||||
### in this repo
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
### solidity resources
|
||||
|
||||
* [solidity docs](https://docs.soliditylang.org/en/v0.8.12/)
|
||||
* [openzeppelin docs](https://docs.openzeppelin.com/)
|
||||
* [solidity by example](https://solidity-by-example.org/)
|
||||
* [smart contract programmer](https://www.youtube.com/channel/UCJWh7F3AFyQ_x01VKzr9eyA/videos)
|
||||
* [solidity cheatsheet and best practices](https://github.com/manojpramesh/solidity-cheatsheet)
|
||||
* [solidity vscode plugin](https://marketplace.visualstudio.com/items?itemName=tintinweb.solidity-visual-auditor)
|
||||
* [another solidity vscode plugin](https://marketplace.visualstudio.com/items?itemName=JuanBlanco.solidity)
|
||||
* [founder](https://getfoundry.sh/)
|
||||
* [founder book](https://book.getfoundry.sh/forge/differential-ffi-testing)
|
Loading…
Add table
Add a link
Reference in a new issue