Initial commit

This commit is contained in:
mvonsteinkirch 2022-12-24 20:07:49 -08:00
commit 6a1272df4c
3 changed files with 53 additions and 0 deletions

1
.github/.gitkeep vendored Normal file
View file

@ -0,0 +1 @@

31
.github/workflows/validate_urls.yml vendored Normal file
View 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
View 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)