From dac813f263679b4792b46606cbcd82607f97ca3d Mon Sep 17 00:00:00 2001 From: Molaryy Date: Sat, 26 Oct 2024 12:04:44 +0200 Subject: [PATCH] feat: added github action spell check + inco workshop --- .github/workflows/markdown.yaml | 10 ++++++++++ .../README.md | 6 +++--- .../SETUP.md | 2 +- .../step5/ERC20/ERC20.sol | 0 .../step5/ERC20/IERC20.sol | 0 .../step5/ERC20/extensions/IERC20Metadata.sol | 0 .../step5/ERC20/utils/Context.sol | 0 .../step5/ERC20/utils/SafeERC20.sol | 0 .../step5/ERC20/utils/TokenTimelock.sol | 0 9 files changed, 14 insertions(+), 4 deletions(-) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/README.md (95%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/SETUP.md (98%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/step5/ERC20/ERC20.sol (100%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/step5/ERC20/IERC20.sol (100%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/step5/ERC20/extensions/IERC20Metadata.sol (100%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/step5/ERC20/utils/Context.sol (100%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/step5/ERC20/utils/SafeERC20.sol (100%) rename p2p/{2.Starton_Smart_Contracts => 2.inco_liars-dice}/step5/ERC20/utils/TokenTimelock.sol (100%) diff --git a/.github/workflows/markdown.yaml b/.github/workflows/markdown.yaml index 87a51418..f83ece5c 100644 --- a/.github/workflows/markdown.yaml +++ b/.github/workflows/markdown.yaml @@ -35,3 +35,13 @@ jobs: .github/workflows/config/.markdownlint.jsonc, ${{ steps.changed-files.outputs.all_changed_files }} separator: "," + spell-check: + runs-on: ubuntu-latest + steps: + - name: Spell checker + uses: actions/checkout@v3 + uses: rojopolis/spellcheck-github-actions@v0 + name: Spellcheck + with: + source_files: $(find . -type f -name "*.md" -print) + task_name: Markdown diff --git a/p2p/2.Starton_Smart_Contracts/README.md b/p2p/2.inco_liars-dice/README.md similarity index 95% rename from p2p/2.Starton_Smart_Contracts/README.md rename to p2p/2.inco_liars-dice/README.md index e3151142..81777bef 100644 --- a/p2p/2.Starton_Smart_Contracts/README.md +++ b/p2p/2.inco_liars-dice/README.md @@ -4,7 +4,7 @@ ✔️ Learn how to deploy and interact with a contract -✔️ Discover the Starton tools to easily build blockchain applications +✔️ Discover Inco and what's the FHE in an EVM ## Step 0: Initialization @@ -103,8 +103,8 @@ But there's still a lot to discover, here are a few links: ## Authors -| [
Ismaël Fall](https://github.com/Doozers) | [
Reza Rahemtola](https://github.com/RezaRahemtola) -| :---: | :---: | +| [
Mohammed JBILOU](https://github.com/Molaryy) | +| :---: |

Organization

diff --git a/p2p/2.Starton_Smart_Contracts/SETUP.md b/p2p/2.inco_liars-dice/SETUP.md similarity index 98% rename from p2p/2.Starton_Smart_Contracts/SETUP.md rename to p2p/2.inco_liars-dice/SETUP.md index bbf8f0f9..c28f7877 100644 --- a/p2p/2.Starton_Smart_Contracts/SETUP.md +++ b/p2p/2.inco_liars-dice/SETUP.md @@ -6,7 +6,7 @@ To make API calls, you will need to install a tool like [Postman](https://www.po > 💡 You can also use [Hoppscotch](https://hoppscotch.io/), [curl](https://curl.haxx.se/) (often already installed on your computer), or whatever other tool you want for your tests since they will be personal, but we highly recommend `postman` as we will explain you how to use it. -## Starton +## Forge In this workshop, you'll use [Starton](https://www.starton.io/), a service to easily connect Web2 applications to blockchain with a simple API. With it, you can do a lot of things: monitoring on-chain events, deploying an interacting with smart contracts, uploading files to IPFS... diff --git a/p2p/2.Starton_Smart_Contracts/step5/ERC20/ERC20.sol b/p2p/2.inco_liars-dice/step5/ERC20/ERC20.sol similarity index 100% rename from p2p/2.Starton_Smart_Contracts/step5/ERC20/ERC20.sol rename to p2p/2.inco_liars-dice/step5/ERC20/ERC20.sol diff --git a/p2p/2.Starton_Smart_Contracts/step5/ERC20/IERC20.sol b/p2p/2.inco_liars-dice/step5/ERC20/IERC20.sol similarity index 100% rename from p2p/2.Starton_Smart_Contracts/step5/ERC20/IERC20.sol rename to p2p/2.inco_liars-dice/step5/ERC20/IERC20.sol diff --git a/p2p/2.Starton_Smart_Contracts/step5/ERC20/extensions/IERC20Metadata.sol b/p2p/2.inco_liars-dice/step5/ERC20/extensions/IERC20Metadata.sol similarity index 100% rename from p2p/2.Starton_Smart_Contracts/step5/ERC20/extensions/IERC20Metadata.sol rename to p2p/2.inco_liars-dice/step5/ERC20/extensions/IERC20Metadata.sol diff --git a/p2p/2.Starton_Smart_Contracts/step5/ERC20/utils/Context.sol b/p2p/2.inco_liars-dice/step5/ERC20/utils/Context.sol similarity index 100% rename from p2p/2.Starton_Smart_Contracts/step5/ERC20/utils/Context.sol rename to p2p/2.inco_liars-dice/step5/ERC20/utils/Context.sol diff --git a/p2p/2.Starton_Smart_Contracts/step5/ERC20/utils/SafeERC20.sol b/p2p/2.inco_liars-dice/step5/ERC20/utils/SafeERC20.sol similarity index 100% rename from p2p/2.Starton_Smart_Contracts/step5/ERC20/utils/SafeERC20.sol rename to p2p/2.inco_liars-dice/step5/ERC20/utils/SafeERC20.sol diff --git a/p2p/2.Starton_Smart_Contracts/step5/ERC20/utils/TokenTimelock.sol b/p2p/2.inco_liars-dice/step5/ERC20/utils/TokenTimelock.sol similarity index 100% rename from p2p/2.Starton_Smart_Contracts/step5/ERC20/utils/TokenTimelock.sol rename to p2p/2.inco_liars-dice/step5/ERC20/utils/TokenTimelock.sol