From d459a8562689711dc14925d50bdc8904aade1972 Mon Sep 17 00:00:00 2001 From: Reyth3 Date: Tue, 16 Jan 2024 21:02:46 +0100 Subject: [PATCH] feat: added project files --- .changeset/config.json | 10 + .github/workflows/add-to-project.yml | 22 + .github/workflows/release.yml | 49 + .gitignore | 43 + .npmrc | 10 + .nvmrc | 1 + .prettierignore | 4 + .prettierrc.js | 8 + .simple-git-hooks.js | 8 + .vscode/extensions.json | 13 + .vscode/settings.json | 47 + .vscode/workshop.code-snippets | 109 + .yarnrc.yml | 1 + CONTRIBUTING.md | 45 + LICENSE | 674 ++ README.md | 327 + contracts/.env.development.example | 1 + contracts/.eslintignore | 6 + contracts/.eslintrc.json | 16 + contracts/.gitignore | 134 + contracts/.lintstagedrc.json | 4 + contracts/.prettierignore | 6 + contracts/CHANGELOG.md | 87 + contracts/Cargo.toml | 4 + contracts/build-all.sh | 25 + .../phone_numbers/phone_numbers.contract | 1 + .../phone_numbers/phone_numbers.json | 1086 +++ .../phone_numbers/phone_numbers.wasm | Bin 0 -> 10529 bytes contracts/package.json | 40 + contracts/postinstall.sh | 17 + contracts/rust-toolchain | 1 + contracts/scripts/deploy.ts | 36 + contracts/scripts/script.template.ts | 50 + contracts/scripts/utils/getDeploymentData.ts | 26 + contracts/scripts/utils/initPolkadotJs.ts | 50 + .../scripts/utils/writeContractAddresses.ts | 42 + contracts/src/phone_numbers/Cargo.toml | 19 + contracts/src/phone_numbers/lib.rs | 639 ++ contracts/test-all.sh | 15 + contracts/tsconfig.json | 24 + frontend/.env.local.example | 19 + frontend/.eslintignore | 8 + frontend/.eslintrc.json | 25 + frontend/.gitignore | 44 + frontend/.lintstagedrc.json | 4 + frontend/.prettierignore | 10 + frontend/.prettierrc.js | 26 + frontend/CHANGELOG.md | 127 + frontend/components.json | 16 + frontend/next.config.js | 25 + frontend/package.json | 76 + frontend/postcss.config.js | 6 + frontend/postinstall.sh | 13 + frontend/public/icons/azns-icon.svg | 12 + frontend/public/icons/github-button.svg | 17 + frontend/public/icons/github.svg | 1 + frontend/public/icons/telegram-button.svg | 23 + frontend/public/icons/vercel-button.svg | 17 + frontend/public/images/inkathon-logo.png | Bin 0 -> 21505 bytes frontend/public/images/inkathon-og-banner.jpg | Bin 0 -> 152357 bytes .../src/app/components/home-page-title.tsx | 97 + frontend/src/app/components/home-top-bar.tsx | 26 + frontend/src/app/favicon.ico | Bin 0 -> 15086 bytes frontend/src/app/globals.css | 80 + frontend/src/app/layout.tsx | 59 + frontend/src/app/page.tsx | 40 + frontend/src/app/providers.tsx | 21 + frontend/src/app/toast-config.tsx | 35 + frontend/src/components/ui/button.tsx | 66 + frontend/src/components/ui/card.tsx | 80 + frontend/src/components/ui/dropdown-menu.tsx | 190 + frontend/src/components/ui/form.tsx | 172 + frontend/src/components/ui/input.tsx | 25 + frontend/src/components/ui/label.tsx | 21 + frontend/src/components/ui/spinner.tsx | 10 + frontend/src/components/ui/tooltip.tsx | 30 + frontend/src/components/web3/chain-info.tsx | 115 + .../src/components/web3/connect-button.tsx | 240 + .../web3/greeter-contract-interactions.tsx | 135 + frontend/src/config/environment.ts | 15 + frontend/src/config/get-supported-chains.ts | 11 + frontend/src/config/get-url.ts | 15 + frontend/src/deployments/deployments.ts | 29 + frontend/src/utils/cn.ts | 6 + frontend/src/utils/contract-tx-with-toast.tsx | 96 + frontend/src/utils/truncate-hash.ts | 5 + frontend/tailwind.config.ts | 85 + frontend/tsconfig.json | 29 + inkathon-devtooling-banner.png | Bin 0 -> 806567 bytes inkathon-stack-diagram.png | Bin 0 -> 739472 bytes inkathon.code-workspace | 31 + package.json | 37 + pnpm-lock.yaml | 7589 +++++++++++++++++ pnpm-workspace.yaml | 3 + vercel.json | 8 + 95 files changed, 13570 insertions(+) create mode 100644 .changeset/config.json create mode 100644 .github/workflows/add-to-project.yml create mode 100644 .github/workflows/release.yml create mode 100644 .gitignore create mode 100644 .npmrc create mode 100644 .nvmrc create mode 100644 .prettierignore create mode 100644 .prettierrc.js create mode 100644 .simple-git-hooks.js create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json create mode 100644 .vscode/workshop.code-snippets create mode 100644 .yarnrc.yml create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 contracts/.env.development.example create mode 100644 contracts/.eslintignore create mode 100644 contracts/.eslintrc.json create mode 100755 contracts/.gitignore create mode 100644 contracts/.lintstagedrc.json create mode 100644 contracts/.prettierignore create mode 100644 contracts/CHANGELOG.md create mode 100644 contracts/Cargo.toml create mode 100755 contracts/build-all.sh create mode 100644 contracts/deployments/phone_numbers/phone_numbers.contract create mode 100644 contracts/deployments/phone_numbers/phone_numbers.json create mode 100644 contracts/deployments/phone_numbers/phone_numbers.wasm create mode 100644 contracts/package.json create mode 100755 contracts/postinstall.sh create mode 100644 contracts/rust-toolchain create mode 100644 contracts/scripts/deploy.ts create mode 100644 contracts/scripts/script.template.ts create mode 100644 contracts/scripts/utils/getDeploymentData.ts create mode 100644 contracts/scripts/utils/initPolkadotJs.ts create mode 100644 contracts/scripts/utils/writeContractAddresses.ts create mode 100755 contracts/src/phone_numbers/Cargo.toml create mode 100755 contracts/src/phone_numbers/lib.rs create mode 100755 contracts/test-all.sh create mode 100644 contracts/tsconfig.json create mode 100644 frontend/.env.local.example create mode 100644 frontend/.eslintignore create mode 100644 frontend/.eslintrc.json create mode 100644 frontend/.gitignore create mode 100644 frontend/.lintstagedrc.json create mode 100644 frontend/.prettierignore create mode 100644 frontend/.prettierrc.js create mode 100644 frontend/CHANGELOG.md create mode 100644 frontend/components.json create mode 100644 frontend/next.config.js create mode 100644 frontend/package.json create mode 100644 frontend/postcss.config.js create mode 100755 frontend/postinstall.sh create mode 100644 frontend/public/icons/azns-icon.svg create mode 100644 frontend/public/icons/github-button.svg create mode 100644 frontend/public/icons/github.svg create mode 100644 frontend/public/icons/telegram-button.svg create mode 100644 frontend/public/icons/vercel-button.svg create mode 100644 frontend/public/images/inkathon-logo.png create mode 100644 frontend/public/images/inkathon-og-banner.jpg create mode 100644 frontend/src/app/components/home-page-title.tsx create mode 100644 frontend/src/app/components/home-top-bar.tsx create mode 100644 frontend/src/app/favicon.ico create mode 100644 frontend/src/app/globals.css create mode 100644 frontend/src/app/layout.tsx create mode 100644 frontend/src/app/page.tsx create mode 100644 frontend/src/app/providers.tsx create mode 100644 frontend/src/app/toast-config.tsx create mode 100644 frontend/src/components/ui/button.tsx create mode 100644 frontend/src/components/ui/card.tsx create mode 100644 frontend/src/components/ui/dropdown-menu.tsx create mode 100644 frontend/src/components/ui/form.tsx create mode 100644 frontend/src/components/ui/input.tsx create mode 100644 frontend/src/components/ui/label.tsx create mode 100644 frontend/src/components/ui/spinner.tsx create mode 100644 frontend/src/components/ui/tooltip.tsx create mode 100644 frontend/src/components/web3/chain-info.tsx create mode 100644 frontend/src/components/web3/connect-button.tsx create mode 100644 frontend/src/components/web3/greeter-contract-interactions.tsx create mode 100644 frontend/src/config/environment.ts create mode 100644 frontend/src/config/get-supported-chains.ts create mode 100644 frontend/src/config/get-url.ts create mode 100644 frontend/src/deployments/deployments.ts create mode 100644 frontend/src/utils/cn.ts create mode 100644 frontend/src/utils/contract-tx-with-toast.tsx create mode 100644 frontend/src/utils/truncate-hash.ts create mode 100644 frontend/tailwind.config.ts create mode 100644 frontend/tsconfig.json create mode 100644 inkathon-devtooling-banner.png create mode 100644 inkathon-stack-diagram.png create mode 100644 inkathon.code-workspace create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 pnpm-workspace.yaml create mode 100644 vercel.json diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 0000000..2cc1dae --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json", + "changelog": ["@changesets/changelog-github", { "repo": "scio-labs/inkathon" }], + "commit": false, + "fixed": [], + "privatePackages": { "version": true, "tag": true }, + "linked": [["@inkathon/*"]], + "baseBranch": "main", + "updateInternalDependencies": "patch" +} diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..6b07c5b --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json +name: Add issue or pull request to project + +on: + issues: + types: + - opened + - reopened + # pull_request: + # types: + # - opened + # - reopened + +jobs: + add-to-project: + name: Add issue or pull request to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/scio-labs/projects/3 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..2d23c94 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,49 @@ +# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json +name: Release + +on: + push: + branches: + - main + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + release: + name: Release + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [20] + pnpm-version: [8.11] + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + with: + # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits + fetch-depth: 0 + submodules: true + + - name: Set up pnpm action ${{ matrix.pnpm-version }} + uses: pnpm/action-setup@v2 + with: + version: ${{ matrix.pnpm-version }} + + - name: Set up Node ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + cache: 'pnpm' + node-version: ${{ matrix.node-version }} + + - name: Install Dependencies + run: pnpm install --frozen-lockfile + + - name: Create Release Pull Request + uses: changesets/action@v1 + with: + title: 'chore(changeset): Bump package version' + commit: 'chore(changeset): Bump package version' + version: pnpm changeset version + publish: pnpm changeset publish + env: + GITHUB_TOKEN: ${{ secrets.CHANGESETS_PAT }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..657428b --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# package management +**/node_modules +**/.pnp +.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files +.env +.env*.local + +# vercel +.vercel +.gitsigners + +# typescript +*.tsbuildinfo +dist + +# turbo +.turbo + +# coverage +coverage +coverage.json + +# VSCode +.history/ diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..3bf54bc --- /dev/null +++ b/.npmrc @@ -0,0 +1,10 @@ +init-author-name=Scio Labs +init-author-email=hello@scio.xyz +init-author-url=https://scio.xyz/ +init-license=GPL-3.0 + +auto-install-peers = true +enable-pre-post-scripts = true + +public-hoist-pattern[]=*eslint* +public-hoist-pattern[]=*prettier* diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..85aee5a --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v20 \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..696a85e --- /dev/null +++ b/.prettierignore @@ -0,0 +1,4 @@ +package-lock.json +pnpm-lock.yaml +node_modules +LICENSE \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..d6f6bc5 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,8 @@ +module.exports = { + semi: false, + singleQuote: true, + trailingComma: 'all', + printWidth: 100, + tabWidth: 2, + useTabs: false, +} diff --git a/.simple-git-hooks.js b/.simple-git-hooks.js new file mode 100644 index 0000000..f507fab --- /dev/null +++ b/.simple-git-hooks.js @@ -0,0 +1,8 @@ +module.exports = { + 'pre-commit': ` +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" + +pnpm lint-staged + `, +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..a18c1bd --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,13 @@ +{ + "recommendations": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "wayou.vscode-todo-highlight", + "tamasfe.even-better-toml", + "rust-lang.rust-analyzer", + "ink-analyzer.ink-analyzer", + "gruntfuggly.todo-tree", + "mikestead.dotenv", + "bradlc.vscode-tailwindcss" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..238a4e4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,47 @@ +{ + "search.exclude": { + "**/*.{jpg,jpeg,png,svg,webm,mp4,ttf,woff,woff2}": true + }, + "search.useIgnoreFiles": true, + "search.useGlobalIgnoreFiles": true, + "search.useParentIgnoreFiles": true, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.organizeImports": "always", + "source.fixAll.eslint": "always" + }, + "files.associations": { + ".env.*": "dotenv", + "*.css": "tailwindcss" + }, + "[javascriptreact][typescriptreact][javascript][typescript][markdown][html][css][scss][sass][json][jsonc][yaml]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[javascriptreact][typescriptreact][javascript][typescript]": { + "tailwindCSS.experimental.classRegex": [ + ["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], + ["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"] + ] + }, + "typescript.updateImportsOnFileMove.enabled": "always", + "javascript.updateImportsOnFileMove.enabled": "always", + "javascript.preferences.importModuleSpecifier": "shortest", + "typescript.preferences.importModuleSpecifier": "shortest", + "[toml]": { + "editor.defaultFormatter": "tamasfe.even-better-toml" + }, + "evenBetterToml.formatter.indentString": " ", + "evenBetterToml.formatter.columnWidth": 120, + "[rust]": { + "editor.defaultFormatter": "rust-lang.rust-analyzer" + }, + "peacock.color": "#8758FF", + "workbench.colorCustomizations": { + "sash.hoverBorder": "#ac8bff", + "statusBar.background": "#8758ff", + "statusBar.foreground": "#e7e7e7", + "statusBarItem.hoverBackground": "#ac8bff", + "statusBarItem.remoteBackground": "#8758ff", + "statusBarItem.remoteForeground": "#e7e7e7" + } +} diff --git a/.vscode/workshop.code-snippets b/.vscode/workshop.code-snippets new file mode 100644 index 0000000..841288e --- /dev/null +++ b/.vscode/workshop.code-snippets @@ -0,0 +1,109 @@ +{ + "Workshop Contracts Snippet #1": { + "scope": "rust", + "prefix": "Workshop Contracts Snippet #1", + "body": [ + "/// Reverses and stores the `message` string", + "#[ink(message)]", + "pub fn reverse_message(&mut self) {", + " self.message = self.message.chars().rev().collect::();", + "}" + ] + }, + "Workshop Contracts Snippet #2": { + "scope": "rust", + "prefix": "Workshop Contracts Snippet #2", + "body": [ + "#[ink::test]", + "fn reverse_message_works() {", + " let message_1 = String::from(\"gm ink!\");", + " let message_1_reversed = String::from(\"!kni mg\");", + " let mut greeter = Greeter::new(message_1.clone());", + " assert_eq!(greeter.greet(), message_1);", + " greeter.reverse_message();", + " assert_eq!(greeter.greet(), message_1_reversed);", + "}" + ] + }, + "Workshop Frontend Snippet #1": { + "scope": "typescriptreact", + "prefix": "Workshop Frontend Snippet #1", + "body": [ + "// Reverse Greeting", + "const reverseGreeting = async () => {", + " if (!activeAccount || !contract || !activeSigner || !api) {", + " toast.error('Wallet not connected. Try again…')", + " return", + " }", + "", + " setUpdateIsLoading(true)", + " try {", + " await contractTxWithToast(api, activeAccount.address, contract, 'reverseMessage', {}, [])", + " } catch (e) {", + " console.error(e)", + " } finally {", + " setUpdateIsLoading(false)", + " await fetchGreeting()", + " }", + "}", + ] + }, + "Workshop Frontend Snippet #2": { + "scope": "typescriptreact", + "prefix": "Workshop Frontend Snippet #2", + "body": [ + "{/* Reverse Greeting */}", + "", + " ", + " ", + " Submit", + " ", + " ", + "", + ] + } + "Workshop Scripts Snippet #1": { + "scope": "typescript", + "prefix": "Workshop Scripts Snippet #1", + "body": [ + "import { transferBalance } from '@scio-labs/use-inkathon'", + "import { initPolkadotJs } from './utils/initPolkadotJs'", + "", + "/**", + " * Example script that transfers tokens to the passed address from Alice.", + " *", + " * Parameters:", + " * - `ACCOUNT_URI`: Sender address URI (i.e. `//Alice`)", + " * - `ADDRESS`: Receiver address", + " * - `AMOUNT`: Token amount to transfer (optional, defaults to `100`)", + " * - `CHAIN`: Chain ID (optional, defaults to `development`)", + " *", + " * Example usage:", + " * - `ADDRESS=5fei… pnpm run script make-it-rain`", + " */", + "const main = async () => {", + " const { api, account, toBNWithDecimals } = await initPolkadotJs()", + "", + " const receiverAddress = process.env.ADDRESS", + " if (!receiverAddress) throw new Error('Missing `ADDRESS` variable')", + " const tokenAmount = toBNWithDecimals(process.env.AMOUNT ? parseInt(process.env.AMOUNT) : 100)", + "", + " console.log(`\nTransferring ${tokenAmount} tokens to ${receiverAddress}…`)", + " await transferBalance(api, account, receiverAddress, tokenAmount)", + "}", + "", + "main()", + " .catch((error) => {", + " console.error(error)", + " process.exit(1)", + " })", + " .finally(() => process.exit(0))", + ] + } +} diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..3186f3f --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1 @@ +nodeLinker: node-modules diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..829fd1f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,45 @@ +# Contributing Guidelines + +[Scio Labs](https://scio.xyz) actively welcomes contributions from anyone to make this a community-driven effort. There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests, or writing code. + +Our ink! developer tooling initiative is made up of the following projects: + +- `create-ink-app` CLI (_Coming soon_) +- [`ink!athon`](https://github.com/scio-labs/inkathon) Boilerplate +- [`useInkathon`](https://github.com/scio-labs/use-inkathon) Hooks & Utility Library +- [`zink!`](https://github.com/scio-labs/zink) Smart Contract Macros + +_To ensure a smooth and efficient collaboration, please follow the guidelines below._ + +## Issues + +- Before starting work, please check the existing issues for your planned feature or bug fix. +- If there isn't an existing issue, create one. This allows us to avoid duplicate work and discuss the implementation details upfront. +- If you want to work on an issue, please comment on it to let us know. This helps us keep track of who is working on what. + +## Pull Requests + +- All changes should be made through pull requests (PRs). +- Please ensure your PR is linked to the relevant issue. +- Include a clear and detailed description of the changes in your PR. +- Request a review once your PR is ready. + +## Code Style + +- Please follow the existing coding style. +- Make sure your changes pass the lint checks. + +> [!IMPORTANT] +> +> - Please install all recommended VSCode extensions (see `.vscode/extensions.json`). +> - After installing dependencies, enable the `pre-commit` hook in your local repository via `pnpm simple-git-hooks`. +> - Make sure to always use the `inkathon.code-workspace` file when working on the project in VSCode. + +## Communication + +- Be respectful and considerate in all interactions. +- If you have questions or need help, don't hesitate to ask. +- For code, feature, or bug discussions, please use the relevant GitHub issue or PR. +- To chat with us or ask questions, join our [Telegram Group](https://t.me/inkathon). πŸ’¬ + +Thanks for your contributions! πŸ™ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e72bfdd --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..c2a0cce --- /dev/null +++ b/README.md @@ -0,0 +1,327 @@ +![inkathon Devtooling Banner](inkathon-devtooling-banner.png) + +# ink!athon Boilerplate + +[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) +[![Built with ink!](https://raw.githubusercontent.com/paritytech/ink/master/.images/badge.svg)](https://use.ink) +![Rust](https://img.shields.io/badge/Rust-000000?logo=rust&logoColor=white) +![TypeScript](https://img.shields.io/badge/TypeScript-000000?logo=typescript&logoColor=white) +![Next.js](https://img.shields.io/badge/Next.js-000000?logo=next.js&logoColor=white) + +This is a full-stack dApp boilerplate for ink! smart contracts with an integrated frontend. It can be used to quickly start developing your hackathon idea or to scaffold a production-ready Web3 application. + +The project is part of a [Scio Labs](https://scio.xyz) initiative to improve the developer experience in the ink! ecosystem and a proud member of the [Aleph Zero EFP](https://alephzero.org/ecosystem-funding-program). πŸ’œ + +Other projects include: + +- `create-ink-app` CLI (_Coming soon_) +- [`ink!athon`](https://github.com/scio-labs/inkathon) Boilerplate +- [`useInkathon`](https://github.com/scio-labs/use-inkathon) Hooks & Utility Library +- [`zink!`](https://github.com/scio-labs/zink) Smart Contract Macros + +**Join the discussion in our [Telegram Group](https://t.me/inkathon)** πŸ’¬ + +**If you want to contribute, please read our [Contributor Guidelines](https://github.com/scio-labs/inkathon/blob/main/CONTRIBUTING.md)** πŸ™ + +--- + +**Table of Contents:** + +1. [About πŸ“–](#about-) +2. [Getting started πŸš€](#getting-started-) + 1. [1. Run the frontend](#1-run-the-frontend) + 2. [2. Build \& deploy contracts on a local node](#2-build--deploy-contracts-on-a-local-node) + 3. [3. Connect the frontend to the local node](#3-connect-the-frontend-to-the-local-node) +3. [Customization 🎨](#customization-) + 1. [1. Project Name](#1-project-name) + 2. [2. Custom Contracts](#2-custom-contracts) + 3. [3. Custom Scripts](#3-custom-scripts) +4. [The Stack πŸ₯ž](#the-stack-) +5. [Live Examples 🌐](#live-examples-) +6. [Deployment 🚒](#deployment-) + 1. [Environment Variables](#environment-variables) + 2. [Contract Deployment](#contract-deployment) +7. [VSCode Setup πŸ› ](#vscode-setup-) + 1. [Workspace](#workspace) + 2. [Plugins](#plugins) +8. [FAQs \& Troubleshooting πŸ’¬](#faqs--troubleshooting-) + +--- + +## About πŸ“– + +The boilerplate comes with a small sample ink! `Greeter` contract which stores a `message` (the "greeting") and allows anyone to update it. The frontend contains simple UI components to connect your wallet and interact with the contract (i.e. read & write the `message`). Try it out live on [inkathon.xyz](https://inkathon.xyz). + +## Getting started πŸš€ + +### 1. Run the frontend + +The frontend works out of the box, without a local node running, as the sample contract is pre-deployed on certain live testnets (i.e. `alephzero-testnet` and `shibuya`). Necessary deployment metadata and addresses are provided under `contracts/deployments/`. + +> **Pre-requisites:** +> +> - Setup Node.js v18+ (recommended via [nvm](https://github.com/nvm-sh/nvm) with `nvm install 18`) +> - Install [pnpm](https://pnpm.io/installation) (recommended via [Node.js Corepack](https://nodejs.org/api/corepack.html) or `npm i -g pnpm`) +> - Clone this repository + +
+Special Instructions for Windows Users + +> [!IMPORTANT] +> Windows users must either use [WSL](https://learn.microsoft.com/windows/wsl/install) (recommended) or a custom shell like [Git Bash](https://git-scm.com/downloads). PowerShell is not supported. + +> **Pre-requisites when using WSL for Linux:** +> +> - Install [WSL](https://learn.microsoft.com/windows/wsl/install) and execute _all_ commands in the WSL terminal +> - Setup Node.js v18+ (recommended via [nvm](https://github.com/nvm-sh/nvm) with `nvm install 18`) +> - Install the following npm packages globally: +> - `npm i -g npm` +> - `npm i -g pnpm node-gyp make` +> - Clone this repository into the WSL file system (e.g. `/home//inkathon`). +> +> **Tip:** You can enter `\\wsl$\` in the top bar of the Windows Explorer to access the WSL file system visually. + +
+ +```bash +# Install dependencies (once) +# NOTE: This automatically creates an `.env.local` file +pnpm install + +# Start Next.js frontend +pnpm run dev +``` + +Optionally, to enable [`simple-git-hooks`](https://github.com/toplenboren/simple-git-hooks) (for automatic linting & formatting when committing), you can run the following command once: `pnpm simple-git-hooks`. + +### 2. Build & deploy contracts on a local node + +The `contracts/package.json` file contains shorthand scripts for building, testing, and deploying your contracts. To run these scripts, you need to set `contracts/` as the active working directory in your terminal. + +> **Pre-requisites:** +> +> - Install Rust via the [Substrate Docs](https://docs.substrate.io/install/) (skip the "Compile a Substrate node" section) +> - Install [`cargo contract`](https://github.com/paritytech/cargo-contract) +> - Install [`substrate-contracts-node`](https://github.com/paritytech/substrate-contracts-node) + +```bash +# Build contracts and move artifacts to `contracts/deployments/{contract}/` folders +pnpm run build + +# Start local node with persistence (contracts stay deployed after restart) +# NOTE: When using Brave, shields have to be taken down for the UIs +pnpm run node + +## IMPORTANT: Open a separate terminal window and keep the node running + +# Deploy the contracts on the local node +pnpm run deploy +``` + +Alternatively, you can also deploy contracts manually using [Contracts UI](https://contracts-ui.substrate.io/) (`pnpm contracts-ui`) in the browser. + +### 3. Connect the frontend to the local node + +Open the `frontend/.env.local` file and set the `NEXT_PUBLIC_DEFAULT_CHAIN` variable to `development`. Then restart the frontend and you should be able to interact with the contracts deployed on your local node. + +_Read more about environment variables and all available chain constants in the [Environment Variables](#environment-variables) section below._ + +## Customization 🎨 + +### 1. Project Name + +There are multiple places where you need to insert your project's name and identifier. Most of these occurrences are highlighted with a `/* TODO */` comment in the code. You can easily replace them one by one by installing the [`todo-tree`](https://marketplace.visualstudio.com/items?itemName=gruntfuggly.todo-tree) plugin. + +Additionally, there are the following un-highlighted occurrences: + +- the name of the `inkathon.code-workspace` file +- the `package.json`'s name & metadata in the root directory as well as in the `contracts/` and `frontend/` packages +- the workspace dependency (`@inkathon/contracts`) defined in `frontend/package.json` and imported in `frontend/src/deployments/deployments.ts` + +### 2. Custom Contracts + +To replace the default `Greeter` contract or add a new one, you need to do the following: + +- Add a new contract directory under `contracts/src/` +- Add it as another workspace member to the `contracts/Cargo.toml` file +- Add another deployment script or adjust `contracts/scripts/deploy.ts` +- Adjust the `ContractIds` enum and `getDeployments` function in `frontend/src/deployments/deployments.ts` + +### 3. Custom Scripts + +Adding custom scripts is useful to interact with your contracts or test certain functionality. Therefore, just duplicate & reuse the `contracts/scripts/script.template.ts` file and run it via `pnpm run script `. This command will run the TypeScript file directly via [`tsx`](https://github.com/privatenumber/tsx). + +For general scripts, the same environment variable initialization & configuration applies as described below in the [Deployment](#deployment) section (e.g. to change the target network). + +## The Stack πŸ₯ž + +
+The Stack in Detail + +- Monorepo Workspace with `contracts/` and `frontend/` directories as packages. +- Package Manager: `pnpm` or `yarn@stable` (Read more in the [FAQs](#faqs--troubleshooting) section below) +- Smart Contract Development: Rust, ink!, `cargo-contract`, `substrate-contracts-node` +- Frontend: Next.js (app-dir), React, TypeScript + - Contract Interactions: `polkadot-js`, [`useInkathon`](https://github.com/scio-labs/use-inkathon) React Hooks & Utility Library (alternatively: [`useInk`](https://use.ink/frontend/getting-started)) + - Styling: `shadcn/ui`, `tailwindcss` + - Linting & Formatting: `eslint`, `prettier`, `simple-git-hooks`, `lint-staged` + +Styling, linting, and formatting libraries can be fully dropped or replaced with alternatives. + +
+ +![inkathon Stack Diagram](inkathon-stack-diagram.png) + +## Live Examples 🌐 + +Below you find live examples that use this boilerplate or have a similar setup inspired by it: + +- [inkathon.xyz](https://inkathon.xyz) – Live demo deployment of this boilerplate +- [AZERO.ID](https://azero.id) – Domain Name Service for Aleph Zero and beyond +- Multiple hackathon projects from [ETHWarsaw](https://ethwarsaw-2023.devpost.com/submissions/), [HackOnChain](https://www.hackonchain.xyz/), [ETHDam](https://www.ethdam.com/), and the [Polkadot ink! Hackathon](https://www.encode.club/polkadot-ink-hackathon). + +## Deployment 🚒 + +Spinning up a deployment via Vercel is pretty straightforward as the necessary settings are already configured in `vercel.json`. If you haven't cloned the repository yet, you can also use the **Deploy** button below to create a new repository from this template. + +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fnext.js%2Ftree%2Fcanary%2Fexamples%2Fhello-world&env=NEXT_PUBLIC_DEFAULT_CHAIN&envDescription=Insert%20%60alephzero-testnet%60%20or%20%60shibuya%60&envLink=https%3A%2F%2Fgithub.com%2Fscio-labs%2Finkathon%23environment-variables&project-name=inkathon&repository-name=inkathon&redirect-url=https%3A%2F%2Fgithub.com%2Fscio-labs%2Finkathon&demo-url=https%3A%2F%2Finkathon.xyz) + +### Environment Variables + +One key element making this boilerplate so flexible is the usage of environment variables to configure the active network in the frontend. This is done by setting the `NEXT_PUBLIC_DEFAULT_CHAIN` variable in the `frontend/.env.local` file, or in the Vercel deployment settings respectively. + +
+All Supported Chain Constants + +| Network Identifier | Name | Type | +| ------------------- | ----------------------- | ------- | +| `development` | ️Local Development Node | Testnet | +| `alephzero-testnet` | Aleph Zero Testnet | Testnet | +| `rococo` | Rococo | Testnet | +| `shibuya` | Shibuya Testnet | Testnet | +| `shiden` | Shiden | Mainnet | +| `alephzero` | Aleph Zero | Mainnet | +| `astar` | Astar | Mainnet | + +Source: https://github.com/scio-labs/use-inkathon/blob/main/src/chains.ts + +> [!NOTE] +> Chains can also be supplied manually by creating a [`SubstrateChain`](https://github.com/scio-labs/use-inkathon/blob/main/src/chains.ts#L4) object. If you think a chain is missing, please open an issue or PR. + +
+ +All environment variables are imported from `process.env` in [`frontend/src/config/environment.ts`](https://github.com/scio-labs/inkathon/blob/main/frontend/src/config/environment.ts) and re-exported from there. For improved type safety, Always only import environment variables from `@/config/environment` and never directly from `process.env`. + +| Environment Variables | [Default Values](https://github.com/scio-labs/inkathon/blob/main/frontend/.env.local.example) | Description | +| ------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `NEXT_PUBLIC_DEFAULT_CHAIN` \*️⃣ | ️`alephzero-testnet` | The network (Substrate-based chain) the frontend should connect to by default and what contract deployment artifacts to import. | +| `NEXT_PUBLIC_PRODUCTION_MODE` | `false` | Optional boolean flag to differentiate production environment (e.g. for SEO or Analytics). | +| `NEXT_PUBLIC_URL` | `http://localhost:3000` | Optional string that defines the base URL of the frontend (will be auto-inferred from Vercel environment variables). | +| `NEXT_PUBLIC_SUPPORTED_CHAINS` | – | Optional array with network identifers (e.g. `["alephzero-testnet", "shibuya"]`) that are supported by the frontend, **if the dApp is supposed to be multi-chain**. | + +\*️⃣ Required + +### Contract Deployment + +In the [Getting Started](#getting-started) section above, we've already deployed the sample `Greeter` contract on a local node. To target a live network, we can use the `CHAIN` environment variable when running the `deploy` script. + +```bash +CHAIN=alephzero-testnet pnpm run deploy +``` + +Further, dynamically loaded environment files with the `.env.{chain}` naming convention can be used to add additional configuration about the deployer account. + +```bash +# .env.alephzero-testnet +ACCOUNT_URI=bottom drive obey lake curtain smoke basket hold race lonely fit walk//Alice +``` + +When running the same script again, this deployer account defined there will be used to sign the extrinsic. + +> [!WARNING] +> These files are gitignored by default, but you should still be extra cautious when adding sensitive information to them. + +## VSCode Setup πŸ›  + +### Workspace + +It can be helpful to develop in VSCode by opening the workspace file `inkathon.code-workspace` instead of just the plain directory. This approach offers multiple advantages, like sections in the file explorer, or shortcut actions to open the terminal in the correct directory. + +Consider installin the [`zoma.vscode-auto-open-workspace`](https://marketplace.visualstudio.com/items?itemName=zoma.vscode-auto-open-workspace) extension to automatically open the workspace file when opening the directory. + +### Plugins + +Additionally, the VSCode plugins listed below are recommended as they can be very helpful when working with this boilerplate. + +
+All Recommended Plugins + +| Plugin Name | Description | +| ---------------------------------------------------------------------------------------------------------------- | --------------------------------------------- | +| [`dbaeumer.vscode-eslint`](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) | Adds ESLint editor support. | +| [`esbenp.prettier-vscode`](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) | Adds Prettier editor support. | +| [`bradlc.vscode-tailwindcss`](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss) | Adds tailwindcss editor support. | +| [`rust-lang.rust-analyzer`](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) | Adds Rust language support. | +| [`ink-analyzer.ink-analyzer`](https://marketplace.visualstudio.com/items?itemName=ink-analyzer.ink-analyzer) | Adds ink! language support. | +| [`tamasfe.even-better-toml`](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml) | Adds `.toml` file support. | +| [`gruntfuggly.todo-tree`](https://marketplace.visualstudio.com/items?itemName=gruntfuggly.todo-tree) | Lists all `TODO` comments in your workspace. | +| [`wayou.vscode-todo-highlight`](https://marketplace.visualstudio.com/items?itemName=wayou.vscode-todo-highlight) | Highlights `TODO` comments in your workspace. | +| [`mikestead.dotenv`](https://marketplace.visualstudio.com/items?itemName=mikestead.dotenv) | Adds syntax highlighting for `.env` files. | + +
+ +## FAQs & Troubleshooting πŸ’¬ + +
+Which package managers are supported? Do I have to use pnpm? + +For monorepo workspaces, [pnpm](https://pnpm.io) is likely the fastest and most reliable choice. When using it though, it's strongly recommended everyone on the team uses it. No installs should be performed nor any other lock files should be committed. + +As an alternative, [yarn](https://yarnpkg.com/) is also supported and can be used for installation. Caveats when using yarn: + +- Only the stable version of yarn (currently v3) is supported, not [yarn classic](https://classic.yarnpkg.com/) (v1). +- `yarn.lock` files should be committed instead of `.pnpm-lock.yaml` files. +- The `pnpm` CLI is still used in many `package.json` scripts, so these would have to be adjusted manually. + +> [!IMPORTANT] +> As [npm](https://www.npmjs.com/) lacks support for the `workspace` import protocol, it's not compatible with ink!athon. + +
+ +
+How to solve `Cannot find module './greeter/development.ts'`? + +Sometimes, Next.js doesn't pick up changes (i.e. file creations) in the `contracts/deployments/{contract}/` folders correctly. E.g., when you just deployed on a local node for the first time and set the frontend's `.env.local` to connect to the `development` network. + +To fix this, you can delete the build cache at `frontend/.next`. This is currently the only solution and will force Next.js to rebuild the project and pick up the new files. + +> [!NOTE] +> To prevent this behavior, the `contracts/package.json` file contains a small `postinstall` script that creates an empty `development.ts` file if none exists. + +
+ +
+How to approach styling? + +Currently it offers styling via the following options out of the box: + +- [shadcn/ui](https://ui.shadcn.com/) - Re-usable components built using [Radix UI](https://radix-ui.com/) and [Tailwind CSS](https://tailwindcss.com/). +- Vanilla [Tailwind CSS](https://tailwindcss.com/) styled styles via `className` and `*.module.(s)css` files. +- Default (S)CSS styles. + +> [!INFO] +> This boilerplate tries to stay as un-opinonated in regards to styling, which means you can use any styling or component library. + +
+ +
+Resources to learn more about Substrate, ink!, and polkadot.js + +- [ink! Documentation](https://use.ink/) +- [polkadot.js Documentation](https://polkadot.js.org/docs/) +- [Polkadot Wiki ink! Tools](https://wiki.polkadot.network/docs/build-open-source) +- [Aleph Zero Documentation](https://docs.alephzero.org/aleph-zero/build/) +- [ink!athon Workshop Recording](https://youtube.com/watch?v=SoNLZfsd0mQ) +- [ink!athon Telegram Group](https://t.me/inkathon) + +
diff --git a/contracts/.env.development.example b/contracts/.env.development.example new file mode 100644 index 0000000..951988b --- /dev/null +++ b/contracts/.env.development.example @@ -0,0 +1 @@ +ACCOUNT_URI=//Alice \ No newline at end of file diff --git a/contracts/.eslintignore b/contracts/.eslintignore new file mode 100644 index 0000000..709c9aa --- /dev/null +++ b/contracts/.eslintignore @@ -0,0 +1,6 @@ +node_modules +deployments +target +src +dist +.node-data \ No newline at end of file diff --git a/contracts/.eslintrc.json b/contracts/.eslintrc.json new file mode 100644 index 0000000..6fcf228 --- /dev/null +++ b/contracts/.eslintrc.json @@ -0,0 +1,16 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "plugins": ["@typescript-eslint"], + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"], + "rules": { + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-empty-interface": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-non-null-assertion": "warn", + "@typescript-eslint/no-empty-function": "warn", + "no-extra-boolean-cast": "off", + "prefer-const": "warn" + } +} diff --git a/contracts/.gitignore b/contracts/.gitignore new file mode 100755 index 0000000..44d4cf1 --- /dev/null +++ b/contracts/.gitignore @@ -0,0 +1,134 @@ +### Rust ### + +# Ignore build artifacts from the local tests sub-crate. +target/ +debug/ + +# Ignore backup files creates by cargo fmt. +**/*.rs.bk + +# Remove Cargo.lock when creating an executable, leave it for libraries +# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock +Cargo.lock + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +### Editors ### + +# JetBrains +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### JetBrains Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +### Custom ### + +# misc +.DS_Store +*.pem + +# Substrate Contracts Node Persistence Cache +.node-data + +# Local deployments +deployments/**/development.json +deployments/**/development.ts + +# Environment files +*.env* +!.env*.example diff --git a/contracts/.lintstagedrc.json b/contracts/.lintstagedrc.json new file mode 100644 index 0000000..ffda8b8 --- /dev/null +++ b/contracts/.lintstagedrc.json @@ -0,0 +1,4 @@ +{ + "*.{js,ts}": ["pnpm run lint:fix"], + "*.{json,md,mdx,html,css,yml,yaml}": ["pnpm run lint:format"] +} diff --git a/contracts/.prettierignore b/contracts/.prettierignore new file mode 100644 index 0000000..709c9aa --- /dev/null +++ b/contracts/.prettierignore @@ -0,0 +1,6 @@ +node_modules +deployments +target +src +dist +.node-data \ No newline at end of file diff --git a/contracts/CHANGELOG.md b/contracts/CHANGELOG.md new file mode 100644 index 0000000..be4258c --- /dev/null +++ b/contracts/CHANGELOG.md @@ -0,0 +1,87 @@ +# @inkathon/contracts + +## 0.4.2 + +### Patch Changes + +- [`cf68f5f`](https://github.com/scio-labs/inkathon/commit/cf68f5f96888c69434014ff4f8eccdd3558d20bc) Thanks [@wottpal](https://github.com/wottpal)! - Further simplify contract scripts by moving required explicit types to `use-inkathon`. Also changing the module resolution setting in `tsconfig.json` to import directly from sub-paths like `@scio-labs/use-inkathon/types` which makes the scripts in a context like Next.js app-dir API routes. + +- [`bc7d7ed`](https://github.com/scio-labs/inkathon/commit/bc7d7ed546fc2f17b6adaf96e34645f84ac2a5e0) Thanks [@wottpal](https://github.com/wottpal)! - Move VSCode settings to `settings.json` file but keep `inkathon.code-workspace`. It's now also supported by default to develop with ink!athon without opening the code-workspace file. + +## 0.4.1 + +### Patch Changes + +- [`14e8e11`](https://github.com/scio-labs/inkathon/commit/14e8e11ebc857e81b7cfa97e7c3c7f28d8dbccc3) Thanks [@wottpal](https://github.com/wottpal)! - Add sample code snippets from live workshops (greeter message reversion & make-it-rain script) + +## 0.4.0 + +### Minor Changes + +- [#42](https://github.com/scio-labs/inkathon/pull/42) [`0533391`](https://github.com/scio-labs/inkathon/commit/0533391ac6f9b953ba0cb231af8b3037e80bcbab) Thanks [@ical10](https://github.com/ical10)! - Update project default to Node 20. + +## 0.3.2 + +### Patch Changes + +- [#39](https://github.com/scio-labs/inkathon/pull/39) [`47aed1b`](https://github.com/scio-labs/inkathon/commit/47aed1b722138bd6fca2883337151d3c0b77e4a3) Thanks [@ical10](https://github.com/ical10)! - Deploy contracts & add deployment addresses for Rococo Contracts test-network. + +## 0.3.1 + +### Patch Changes + +- [`e73d9b8`](https://github.com/scio-labs/inkathon/commit/e73d9b86a4299702c59538ac43612b9977d479be) Thanks [@wottpal](https://github.com/wottpal)! - Replace `ts-node` with `tsx` (https://github.com/privatenumber/tsx) for less-verbose TypeScript script execution. + +## 0.3.0 + +### Minor Changes + +- [`cda19ae`](https://github.com/scio-labs/inkathon/commit/cda19aeb4107c076daeb17a455fecfbd7f373044) Thanks [@wottpal](https://github.com/wottpal)! - Vastly reduce boilerplate for JS/TS script initialization of Polkadot.js. You no longer need to read and parse dotenv environment variables in every script. + +## 0.2.1 + +### Patch Changes + +- [`3f4179e`](https://github.com/scio-labs/inkathon/commit/3f4179e9325b155324d23796234d9f853ae03dd9) Thanks [@wottpal](https://github.com/wottpal)! - Add workaround to run ESM-enabled ts-node scripts with Node.js 20. Related: https://github.com/TypeStrong/ts-node/issues/1997 + +## 0.2.0 + +### Minor Changes + +- [`c2cfbe4`](https://github.com/scio-labs/inkathon/commit/c2cfbe428a4e86f7ddb3d25886d4da79238b69be) Thanks [@wottpal](https://github.com/wottpal)! - Ensure & document Windows, Ubuntu, and macOS compatibility. 🌈 + +## 0.1.3 + +### Patch Changes + +- [`4bda28d`](https://github.com/scio-labs/inkathon/commit/4bda28d645abc8d8684d33bac788f04c278d7b4e) Thanks [@wottpal](https://github.com/wottpal)! - Further cross-platform script improvements (i.e. regarding the touch command). + +## 0.1.2 + +### Patch Changes + +- [`2b9bc68`](https://github.com/scio-labs/inkathon/commit/2b9bc689876ea195a1cf2f6af1ca2414bcf04172) Thanks [@wottpal](https://github.com/wottpal)! - Make cp/copy command work cross-platform (i.e. on Windows) for postinstall and build-all scripts. + +## 0.1.0 + +### Minor Changes + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`cf04f67`](https://github.com/scio-labs/inkathon/commit/cf04f671c06276ffc51e33c1e38c181173227d75) Thanks [@wottpal](https://github.com/wottpal)! - Add `contract/scripts/script.template.ts` template script and simplify script initialization in general. + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Move `frontend` and `contracts` packages to the root level + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Auto-detect available contracts in build & test shell scripts + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`7a41afe`](https://github.com/scio-labs/inkathon/commit/7a41afe1e7c2f45b6d3972760c173a4a2197c643) Thanks [@wottpal](https://github.com/wottpal)! - Add contributor guidelines at `CONTRIBUTING.md`. + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Add pnpm/npm shorthand script for JS/TS script execution (i.e. `pnpm run script deploy`) + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`3598618`](https://github.com/scio-labs/inkathon/commit/3598618f87d788ec51964167557210ed8b659797) Thanks [@wottpal](https://github.com/wottpal)! - Major README.md overhaul & improvements + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Switch from `husky` to `simple-git-hooks` pre-commit hooks + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`07d8381`](https://github.com/scio-labs/inkathon/commit/07d83819c48f4aaa129ccc3d27929767b916c93d) Thanks [@wottpal](https://github.com/wottpal)! - Add compatability for using yarn (stable only, not classic v1) as the package manager. Note: npm is still not compatible as it lacks support for the workspace import protocol. + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Move ink! contract files under `contracts/src/` + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Setup changeset integration for version, release, and changelog management. diff --git a/contracts/Cargo.toml b/contracts/Cargo.toml new file mode 100644 index 0000000..7596cf8 --- /dev/null +++ b/contracts/Cargo.toml @@ -0,0 +1,4 @@ +[workspace] + +resolver = "1" +members = ["src/*"] diff --git a/contracts/build-all.sh b/contracts/build-all.sh new file mode 100755 index 0000000..2d97e4d --- /dev/null +++ b/contracts/build-all.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +set -eu + +# ENVIRONMENT VARIABLES +CONTRACTS_DIR="${CONTRACTS_DIR:=./src}" # Base contract directory +DIR="${DIR:=./deployments}" # Output directory for build files + +# Copy command helper (cross-platform) +CP_CMD=$(command -v cp &> /dev/null && echo "cp" || echo "copy") + +# Determine all contracts under `$CONTRACTS_DIR` +contracts=($(find $CONTRACTS_DIR -maxdepth 1 -type d -exec test -f {}/Cargo.toml \; -print | xargs -n 1 basename)) + +# Build all contracts +for i in "${contracts[@]}" +do + echo -e "\nBuilding '$CONTRACTS_DIR/$i/Cargo.toml'…" + cargo contract build --release --quiet --manifest-path $CONTRACTS_DIR/$i/Cargo.toml + + echo "Copying build files to '$DIR/$i/'…" + mkdir -p $DIR/$i + $CP_CMD ./target/ink/$i/$i.contract $DIR/$i/ + $CP_CMD ./target/ink/$i/$i.wasm $DIR/$i/ + $CP_CMD ./target/ink/$i/$i.json $DIR/$i/ +done \ No newline at end of file diff --git a/contracts/deployments/phone_numbers/phone_numbers.contract b/contracts/deployments/phone_numbers/phone_numbers.contract new file mode 100644 index 0000000..890d8f4 --- /dev/null +++ b/contracts/deployments/phone_numbers/phone_numbers.contract @@ -0,0 +1 @@ +{"source":{"hash":"0x7ab4757f5ccad6a2cbbdd4b42243cc29f3b3870f0f4ef24d1d6850b103495040","language":"ink! 4.3.0","compiler":"rustc 1.75.0","wasm":"0x0061736d0100000001380a60027f7f0060037f7f7f0060027f7f017f60017f0060000060047f7f7f7f017f60037f7f7f017f60047f7f7f7f0060017f017f6000017f02e0010b057365616c310b6765745f73746f726167650005057365616c301176616c75655f7472616e736665727265640000057365616c3005696e7075740000057365616c300663616c6c65720000057365616c300f686173685f626c616b65325f3235360001057365616c300d6465706f7369745f6576656e740007057365616c320b7365745f73746f726167650005057365616c310d636c6561725f73746f726167650002057365616c3110636f6e7461696e735f73746f726167650002057365616c300b7365616c5f72657475726e000103656e76066d656d6f727902010210032c2b060001000000000003000802000100010000000000010309020002020301000404010200000304020604010608017f01418080040b0711020463616c6c0030066465706c6f7900330a8d4d2b2b01017f037f2002200346047f200005200020036a200120036a2d00003a0000200341016a21030c010b0b0b0c00200020014184800410340bec0101037f230041106b220324002003428080013702082003419882043602042001200341046a2201102320022001100e024020032802082204200328020c2201490d00200328020421022003200420016b220436020420022001200120026a2201200341046a10002102200420032802042205490d002000027f02400240024020020e0400040401040b20054120490d0120002001290000370001200041196a200141186a290000370000200041116a200141106a290000370000200041096a200141086a29000037000041010c020b41000c010b200041003a000141020b3a0000200341106a24000f0b000bba0101047f230041106b2202240020024280800137020820024198820436020441f2bbdea97b200241046a2203100e20012003100f024020022802082204200228020c2201490d00200228020421032002200420016b220436020420032001200120036a2201200241046a10002103200420022802042205490d002000027f0240024020030e0400030301030b20054104490d024101210320012800000c010b4100210341000b36020420002003360200200241106a24000f0b000b2601017f230041106b220224002002200036020c20012002410c6a4104101f200241106a24000b0a00200120004120101f0b0c00200020014188800410340b990101037f230041106b2202240020024280800137020820024198820436020441f2bbdea97b200241046a2203100e20002003100f024020022802082204200228020c2200490d00200228020421032002410036020c2002200420006b3602082002200020036a3602042001200241046a100e200228020c220120022802084b0d00200320002002280204200110061a200241106a24000f0b000b0a0041848004200010130b5201017f230041106b220224002002428080013702082002419882043602042000200241046a2200102320012000100e200228020c220020022802084b0440000b2002280204200010071a200241106a24000b0d0041848004200010154100470b5501017f230041106b220224002002428080013702082002419882043602042000200241046a2200102320012000100e200228020c220020022802084b0440000b20022802042000102c2100200241106a240020000bbf0101057f230041306b2202240002402000280204220420002802082203490d00200028020021052002410036020c2002200420036b22043602082002200320056a220536020420012802002001280204200241046a22061017200128020820061018200228020c220120022802084b0d00200241046a22062002280204200110192002410036022c20022004360228200220053602242006200241246a100f2003200228022c6a22012003490d0020002001360208200241306a24000f0b000b100020012002101c200220002001101f0b210020002d000045044020014100102e0f0b20014101102e200041016a2001100f0bed0101077f230041406a22032400200341186a22044200370300200341106a22054200370300200341086a22064200370300200342003703000240200241214f0440200341386a22074200370300200341306a22084200370300200341286a220942003703002003420037032020012002200341206a1004200420072903003703002005200829030037030020062009290300370300200320032903203703000c010b200320012002100a1a0b20002003290300370000200041186a200341186a290300370000200041106a200341106a290300370000200041086a200341086a290300370000200341406b24000bbf0101057f230041306b2202240002402000280204220420002802082203490d00200028020021052002410036020c2002200420036b22043602082002200320056a220536020420012802002001280204200241046a2206101720012802082006100f200228020c220120022802084b0d00200241046a22062002280204200110192002410036022c20022004360228200220053602242006200241246a100f2003200228022c6a22012003490d0020002001360208200241306a24000f0b000b6b01047f230041106b2202240002402000280204220420002802082203490d00200028020021052002410036020c2002200420036b3602082002200320056a3602042001200241046a101c2003200228020c6a22012003490d0020002001360208200241106a24000f0b000b7401017f230041106b2202240002402000413f4d044020012000410274102e0c010b200041ffff004d0440200220004102744101723b010e20012002410e6a4102101f0c010b200041ffffffff034d044020004102744102722001100e0c010b20014103102e20002001100e0b200241106a24000be60101057f230041106b22032400410121050240200128020422024120490d002001200241206b36020420012001280200220241206a360200200341086a210620012802042204410449047f4101052001200441046b36020420012001280200220141046a3602002001280000210441000b2101200620043602042006200136020020032802080d00200328020c210120002002290000370004200041246a20013602002000411c6a200241186a290000370000200041146a200241106a2900003700002000410c6a200241086a290000370000410021050b20002005360200200341106a24000b2601017f230041106b22022400200220003a000f20012002410f6a4101101f200241106a24000b4801027f024002402000280208220320026a22042003490d00200420002802044b0d00200420036b2002470d01200028020020036a20012002100a1a200020043602080f0b000b000b6d01017f230041106b2201240020014180800136020c419882042001410c6a1003200041998204290000370001200041096a41a18204290000370000200041116a41a98204290000370000200041186a41b082042900003700002000419882042d00003a0000200141106a24000b4d02017f027e230041206b2200240020004200370308200042003703002000411036021c20002000411c6a10012000290308210120002903002102200041206a2400410541042001200284501b0b6201027f230041106b2202240020024280800137020820024198820436020441b386e1ec7a200241046a2203100e20002003100f20012003100f200228020c220020022802084b0440000b20022802042000102c2100200241106a240020004100470b0b0020002802002001100e0b2f01037f20012d0000220220002d000022037245210420034520024572047f200405200041016a200141016a10250b0b4601037f027f41202102034041002002450d011a200241016b210220012d0000210320002d00002104200041016a2100200141016a210120032004460d000b200420036b0b450be90a01087f230041b0016b22012400200141046a200041cc00100a1a2001428080013702542001419882043602500240027f024002400240024020012d000441016b0e020102000b200141d0006a4104101b20014188016a2202200141d8006a2802003602002001200129025037038001200141a4016a220320014180016a2200419c8004102720012001410c6a36027c20014116360278200141a880043602742003200141f4006a10162002200141ac016a280200360200200120012902a4013703800120012001412d6a3602ac01200141143602a801200141be80043602a401200020031016200141f0006a200228020036020020012001290380013703682001200141086a360288012001411436028401200141d28004360280010c020b200141d0006a4104101b20014188016a2202200141d8006a2802003602002001200129025037038001200141a4016a220320014180016a220041f8800410272001200141086a36027c200141163602782001418481043602742003200141f4006a101a2002200141ac016a280200360200200120012902a401370380012001200141286a3602ac01200141143602a8012001419a81043602a40120002003101a200141f0006a200228020036020020012001290380013703682001200141c8006a360288012001411436028401200141ae8104360280010c010b200141d0006a4103101b2001280254220220012802582200490d022001280250210320014100360288012001200220006b2204360284012001200020036a220736028001418c8004410020014180016a22051017200541c281044116101f20012802880122052001280284014b0d0220014180016a220620012802800120051019200141003602ac01200120043602a801200120073602a4012006200141a4016a100f2000200020012802ac016a22044b0d02200141fc006a2200200436020020012002360278200120033602742001200141046a4102723602ac012001411d3602a801200141d881043602a401200141f4006a200141a4016a101a200141f0006a22022000280200360200200120012902743703682001200141266a360288012001412036028401200141f5810436028001200141e8006a20014180016a101a200128026c220320022802002200490d02200320006b210220012802680c010b200141dc006a2107230041306b2202240002400240200141e8006a2203280204220520032802082204490d00200328020021062002410036020c2002200520046b22053602082002200420066a220636020420002802002000280204200241046a2208101720002802082802002008100e200228020c220020022802084b0d00200241046a22082002280204200010192002410036022c20022005360228200220063602242008200241246a100f2004200228022c6a22002004490d00200341086a22042000360200200741086a200428020036020020072003290200370200200241306a24000c010b000b2001280260220220012802642200490d01200220006b2102200128025c0b210420012002360284012001200020046a220336028001024002400240024020012d000441016b0e020102000b2002450d03200341003a000020014101360288012001410c6a20014180016a220210182001412d6a2002101820012802082002100e0c020b2002450d02200341013a00002001410136028801200141086a20014180016a2202100f200141286a2002100f200141c8006a2802002002100e0c010b2002450d01200341023a00002001410136028801200141046a41027220014180016a2202100f200141266a2002100f20012d00052002101e0b20012802880122022001280284014b0d002004200020012802800120021005200141b0016a24000f0b000bdd0101057f230041306b2203240002402001280204220520012802082204490d00200128020021062003410036020c2003200520046b22053602082003200420066a220636020420022802002002280204200341046a22071017200720022802084110101f200328020c220220032802084b0d00200341046a22072003280204200210192003410036022c20032005360228200320063602242007200341246a100f2004200328022c6a22022004490d00200141086a22042002360200200041086a200428020036020020002001290200370200200341306a24000f0b000b4401027f4198820441003a000041012103200141ff017141074704404199820441013a000041022103200121020b2003419882046a20023a00002000200341016a102d000b1300419882044181023b010041014102102d000b5301037f230041106b220024002000428080013702082000419882043602044100200041046a100e200028020c220120002802084b0440000b200028020422022001200120026a410010061a200041106a24000b950101027f230041106b220324002003428080013702082003419882043602042000200341046a2200102320012000100e024020032802082204200328020c2200490d00200328020421012003410036020c2003200420006b3602082003200020016a3602042002200341046a100f200328020c220220032802084b0d00200120002003280204200210061a200341106a24000f0b000b0b00200020011008417f470b0d0020004198820420011009000b2d01017f2000280208220220002802044904402000200241016a360208200028020020026a20013a00000f0b000b3101017f230041d0006b22012400200141086a200041c800100a1a200141003a0004200141046a1026200141d0006a24000ba622010a7f230041d0026b2200240002400240024002400240102141ff01714105470d00200041808001360280024198820420004180026a10022000280280022202418180014f0d0020024104490d022000419c820436029c012000200241046b22063602a001419b82042d00002105419a82042d00002103419982042d00002101027f02400240024002400240024002400240024002400240419882042d00002204410b6b0e05070e0e0e01000b20044127460d02200441e800460d042004418401460d052004419901460d01200441b101460d07200441cf01460d030c0d0b200141d900460d07200141f50047200341ff017141da004772200541ff017141d600472006411f4d72720d0c200041d8006a41ab8204290000370300200041e0006a41b38204290000370300200041e8006a41bb82042d00003a0000200041a38204290000370350419f82042800002104419d82042f00002105419c82042d0000210641000c090b200141f20047200341ff0171410c4772200541ff0171411e47200641044972720d0b200041a0820436029c01419c8204280200210441010c080b200141d90047200341ff0171412d4772200541ff017141ea0147200641044972720d0a200041a0820436029c01419c8204280200210441020c070b200141d001460d05200141dd0147200341ff0171419a014772200541ff017141a20147200641044972720d09200041a0820436029c01419c8204280200210441080c060b2001411247200341ff017141e6004772200541ff017141a00147720d0820004180026a2000419c016a101d2000280280020d08200041d8006a20004190026a290200370300200041e0006a20004198026a290200370300200041e8006a200041a0026a2d00003a0000200020004188026a290200370350200041a1026a2d00002103200041a2026a2f01002107200041a4026a2802002108200028028402210441050c050b200141a10147200341ff017141dd004772200541ff017141a10147720d0720004180026a2000419c016a101d2000280280020d07200041d8006a20004190026a290200370300200041e0006a20004198026a290200370300200041e8006a200041a0026a2d00003a0000200020004188026a290200370350200041a1026a2d00002103200041a2026a2f01002107200041a4026a2802002108200028028402210441060c040b2001413947200641204972200341ff017141ef0047200541ff017141184772720d06200241c4006b2201415f4b2001410449720d0641ba82042f0100210741b982042d00002103419c8204280200210441bc82042802002108200041d8006a41a88204290200370300200041e0006a41b08204290200370300200041e8006a41b882042d00003a0000200041c8016a41c88204290200370300200041d0016a41d08204290200370300200041d8016a41d88204280200360200200041e0820436029c012000200241c8006b3602a001200041a08204290200370350200041c082042902003703c00141dc8204280200210241070c030b200141ef0147200341ff017141c1014772200541ff017141fb0047200641044972720d05200041a0820436029c012000200241086b3602a001419c8204280200210441090c020b200341ff0171412247200541ff017141e9014772200241c4006b41404f720d04200041c8016a41cb8204290000370300200041d0016a41d38204290000370300200041d8016a41db82042d00003a0000200041d8006a41ab8204290000370300200041e0006a41b38204290000370300200041e8006a41bb82042d00003a0000200041c382042900003703c001200041a3820429000037035041bf8204280000210841bd82042f0000210741bc82042d00002103419c82042d00002106419d82042f00002105419f8204280000210441030c010b200341ff017141c20147200641204972200541ff017141fb0047720d0320024124462203450440200041bd820436029c012000200241256b3602a00141bc82042d000021010b20030d0341014102200122024101461b410020011b22034102460d03419f82042800002104419d82042f00002105419c82042d00002106200041e8006a41bb82042d00003a0000200041e0006a41b38204290000370300200041d8006a41ab8204290000370300200041a3820429000037035041040b2109200041286a200041e8006a2d00003a0000200041206a200041e0006a290300370200200041186a200041d8006a290300370200200041386a200041c8016a290300370200200041406b200041d0016a290300370200200041c8006a200041d8016a28020036020020002000290350370210200020002903c0013702302000200236024c2000200836022c200020073b012a200020033a00292000200436020c200020053b010a200020063a0009200020093a00082000428080013702840220004198820436028002410020004180026a100e20002802840222052000280288022201490d0020002802800221022000200520016b22053602800220022001200120026a20004180026a1000200520002802800249720d002000410c6a2102200041086a41017221010240027f0240024002400240027f024002400240024002400240024002400240200941016b0e0901020304050a0b0607000b230041306b22022400200241186a200141086a290000370200200241206a200141106a290000370200200241286a200141186a2900003702002002200041cf026a36020c200220012900003702102002200241106a100d2002280200210020022802042103200241306a2400230041106b220124002001419882043602044198820441003a000020014280808180103702082003410020001b200141046a100e0c130b20004180026a22014101722004100b0c110b20004180026a2201410172200410100c100b230041d0006b220224002002200041cf026a36020c200241106a200141c000100a200241306a10222100200241d0006a2400230041106b220124002001419882043602044198820441003a000020014280808180103702082000200141046a101e0c100b200041e8006a200141186a2202290000370300200041e0006a200141106a2204290000370300200041d8006a200141086a220529000037030020002001290000370350200041c0016a22061020200041d0006a200610252206450440200041a2026a20012900003701002000419a026a200041d8016a29000037010020004192026a200041d0016a2900003701002000418a026a200041c8016a290000370100200041aa026a2005290000370100200041b2026a2004290000370100200041ba026a2002290000370100200020002900c00137018202200041023a008002200020033a00810220004180026a10260240200341ff0171450440200042808001370284022000419882043602800241b386e1ec7a20004180026a2201100e200041c0016a2001100f200041d0006a2001100f20002802880222012000280284024b0d0e200028028002200110071a0c010b200042808001370284022000419882043602800241b386e1ec7a20004180026a2201100e200041c0016a2001100f200041d0006a2001100f20002802880222012000280284024b0d0d20002802800222022001200120026a410010061a0b102a410721020c0d0b410621020c0c0b200041d4006a20024124100a21042000200041cf026a360250200041f4006a2802002103200041fc006a10202000419c016a22012003100b20004199026a20004194016a29000037000020004191026a2000418c016a29000037000020004189026a20004184016a2900003700002000200029007c37008102200041013a0080020240200120004180026a102445044020002d009c01450d0c410621012000419d016a200041fc006a1022450d010b20004198026a420037030020004190026a420037030020004188026a4200370300200042003703800241062101200420004180026a10250d00410421014188800420031015450d030b41010c030b200041c0016a22011020200120041031220141ff017141074604402000419d026a420037000020004195026a42003700002000418d026a420037000020004185026a4200370000200041a6026a20002900c001370100200041ae026a200041c8016a290000370100200041b6026a200041d0016a290000370100200041be026a200041d8016a290000370100200041013a00a502200041013a008402200020043602800220004180026a102f102a0b200141ff017141074720011028000b200041d0006a102020004180026a2004100b20002d008002450d05200041c9016a2000418a026a290000370000200041d1016a20004192026a290000370000200041d8016a20004199026a290000370000200020004182026a2900003700c101200020002d0081023a00c0014100200041c0016a200041d0006a1025450d061a2000419c026a200041e8006a29000037020020004194026a200041e0006a2900003702002000418c026a200041d8006a2900003702002000200029005037028402200041808004360280022000428080013702a00120004198820436029c0141f2bbdea97b2000419c016a2201100e20004184026a2001100f20002802a001220320002802a4012201490d08200028029c0121022000200320016b220336029c0120022001200120026a22012000419c016a100021022003200028029c012205490d080240024020020e04000a0a010a0b20054104490d09200128000022050d050c090b41050c060b4188800420032004102b200041d8016a20004194016a290000370300200041d0016a2000418c016a290000370300200041c8016a20004184016a290000370300200041e8016a200241086a290200370300200041f0016a200241106a290200370300200041f8016a200241186a2902003703002000200029007c3703c001200020022902003703e00120004184026a200041c0016a41c000100a1a200041c4026a2003360200200041013a00800220004180026a1026102a4107210141000b20011028000b20004184026a20024124100a21012000200041cf026a36028002200041a4026a2802002102200041c0016a220010202000200120021032220141ff01714107472202450440102a0b200220011028000b20004184026a200241c400100a21012000200041cf026a360280022001200041a4026a200041c4026a2802001032220141ff01714107472202450440102a0b200220011028000b2000419c026a200041e8006a29000037020020004194026a200041e0006a2900003702002000418c026a200041d8006a2900003702002000200029005037028402200041808004360280022000428080013702a00120004198820436029c0141f2bbdea97b2000419c016a2201100e20004184026a2001100f20002802a001220620002802a4012202490d03200028029c01210341002101200041003602a4012000200620026b3602a0012000200220036a36029c01200541016b2000419c016a100e20002802a401220520002802a0014b0d0320032002200028029c01200510061a200410122000419d026a200041e8006a29000037000020004195026a200041e0006a2900003700002000418d026a200041d8006a29000037000020004185026a2000290050370000200041a6026a4200370100200041ae026a4200370100200041b6026a4200370100200041be026a4200370100200041013a00a502200041013a008402200020043602800220004180026a102f102a410721020c020b41030b2102410121010b200120021028000b000b200620021028000b1029000b200041003a008002230041106b22022400200241808001360208200241988204360204024020012d00000440419882044181023b0100410221010c010b4198820441003a00002002410136020c200141016a200241046a1018200228020c220141818001490d00000b41002001102d000b200128020c2201418180014f0440000b41002001102d000b960101027f230041306b220224000240027f4102200110140d001a200241286a4200370300200241206a4200370300200241186a42003703002002420037031041062000200241106a10250d001a200241086a2000100d02402002280208450440410121030c010b200228020c41016a2203450d020b2000200310114184800420012000102b41070b2103200241306a240020030f0b000bfa0301037f230041c0016b22032400200341136a1020410321040240024020021014450d00200341cc006a2003412b6a290000370000200341c4006a200341236a2900003700002003413c6a2003411b6a29000037000020032003290013370034200341013a00332003419f016a2002100b200341ed006a4200370000200341e5006a4200370000200341dd006a420037000020034200370055200341013a00540240200341336a200341d4006a10240d000240200341336a2003419f016a10240d00200341d4006a220520021010200341336a200510240d0020032d009f01450d03200341a0016a200341346a1022450d010b418880042002101320021014450d01200341086a2000100d2003280208450440410521040c020b200328020c2204450d022000200441016b101120021012200120021031220441ff01714107470d01200341d9006a2000290000370000200341fa006a2001290000370100200341e1006a200041086a290000370000200341e9006a200041106a290000370000200341f1006a200041186a29000037000020034182016a200141086a2900003701002003418a016a200141106a29000037010020034192016a200141186a290000370100200341013a0058200341013a007920032002360254200341d4006a102f410721040c010b410121040b200341c0016a240020040f0b000b900101017f230041106b2200240002400240102141ff01714105470d0020004180800136020c419882042000410c6a1002200028020c2200418180014f0d00200041044f0440419882042d0000419b0147419982042d000041ae014772419a82042d0000419d014772419b82042d000041de004772450d020b1029000b000b102a4198820441003b010041004102102d000b3701017f230041306b220324002003410f6a20022001100c20032d000f4102460440000b20002003410f6a4121100a1a200341306a24000b0b9e020100418080040b9502f29d37b59edb16ed6076894d4572633732313a3a5472616e736665720c000100000000000c0001004572633732313a3a5472616e736665723a3a66726f6d4572633732313a3a5472616e736665723a3a746f4572633732313a3a5472616e736665723a3a69644572633732313a3a417070726f76616c00000c00010000000000660001004572633732313a3a417070726f76616c3a3a66726f6d4572633732313a3a417070726f76616c3a3a746f4572633732313a3a417070726f76616c3a3a69644572633732313a3a417070726f76616c466f72416c6c4572633732313a3a417070726f76616c466f72416c6c3a3a6f776e65724572633732313a3a417070726f76616c466f72416c6c3a3a6f70657261746f72","build_info":{"build_mode":"Release","cargo_contract_version":"3.2.0","rust_toolchain":"stable-x86_64-unknown-linux-gnu","wasm_opt_settings":{"keep_debug_symbols":false,"optimization_passes":"Z"}}},"contract":{"name":"phone-numbers","version":"0.0.1","authors":["Scio Labs "]},"spec":{"constructors":[{"args":[],"default":false,"docs":["Creates a new ERC-721 token contract."],"label":"new","payable":false,"returnType":{"displayName":["ink_primitives","ConstructorResult"],"type":5},"selector":"0x9bae9d5e"}],"docs":[],"environment":{"accountId":{"displayName":["AccountId"],"type":0},"balance":{"displayName":["Balance"],"type":15},"blockNumber":{"displayName":["BlockNumber"],"type":3},"chainExtension":{"displayName":["ChainExtension"],"type":18},"hash":{"displayName":["Hash"],"type":16},"maxEventTopics":4,"timestamp":{"displayName":["Timestamp"],"type":17}},"events":[{"args":[{"docs":[],"indexed":true,"label":"from","type":{"displayName":["Option"],"type":9}},{"docs":[],"indexed":true,"label":"to","type":{"displayName":["Option"],"type":9}},{"docs":[],"indexed":true,"label":"id","type":{"displayName":["TokenId"],"type":3}}],"docs":["Event emitted when a token transfer occurs."],"label":"Transfer"},{"args":[{"docs":[],"indexed":true,"label":"from","type":{"displayName":["AccountId"],"type":0}},{"docs":[],"indexed":true,"label":"to","type":{"displayName":["AccountId"],"type":0}},{"docs":[],"indexed":true,"label":"id","type":{"displayName":["TokenId"],"type":3}}],"docs":["Event emitted when a token approve occurs."],"label":"Approval"},{"args":[{"docs":[],"indexed":true,"label":"owner","type":{"displayName":["AccountId"],"type":0}},{"docs":[],"indexed":true,"label":"operator","type":{"displayName":["AccountId"],"type":0}},{"docs":[],"indexed":false,"label":"approved","type":{"displayName":["bool"],"type":11}}],"docs":["Event emitted when an operator is enabled or disabled for an owner.","The operator can manage all NFTs of the owner."],"label":"ApprovalForAll"}],"lang_error":{"displayName":["ink","LangError"],"type":6},"messages":[{"args":[{"label":"owner","type":{"displayName":["AccountId"],"type":0}}],"default":false,"docs":[" Returns the balance of the owner.",""," This represents the amount of unique tokens the owner has."],"label":"balance_of","mutates":false,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":7},"selector":"0x0f755a56"},{"args":[{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Returns the owner of the token."],"label":"owner_of","mutates":false,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":8},"selector":"0x99720c1e"},{"args":[{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Returns the approved account ID for this token if any."],"label":"get_approved","mutates":false,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":8},"selector":"0x27592dea"},{"args":[{"label":"owner","type":{"displayName":["AccountId"],"type":0}},{"label":"operator","type":{"displayName":["AccountId"],"type":0}}],"default":false,"docs":[" Returns `true` if the operator is approved by the owner."],"label":"is_approved_for_all","mutates":false,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":10},"selector":"0x0f5922e9"},{"args":[{"label":"to","type":{"displayName":["AccountId"],"type":0}},{"label":"approved","type":{"displayName":["bool"],"type":11}}],"default":false,"docs":[" Approves or disapproves the operator for all tokens of the caller."],"label":"set_approval_for_all","mutates":true,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":12},"selector":"0xcfd0c27b"},{"args":[{"label":"to","type":{"displayName":["AccountId"],"type":0}},{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Approves the account to transfer the specified token on behalf of the caller."],"label":"approve","mutates":true,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":12},"selector":"0x681266a0"},{"args":[{"label":"destination","type":{"displayName":["AccountId"],"type":0}},{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Transfers the token from the caller to the given destination."],"label":"transfer","mutates":true,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":12},"selector":"0x84a15da1"},{"args":[{"label":"from","type":{"displayName":["AccountId"],"type":0}},{"label":"to","type":{"displayName":["AccountId"],"type":0}},{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Transfer approved or owned token."],"label":"transfer_from","mutates":true,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":12},"selector":"0x0b396f18"},{"args":[{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Creates a new token."],"label":"mint","mutates":true,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":12},"selector":"0xcfdd9aa2"},{"args":[{"label":"id","type":{"displayName":["TokenId"],"type":3}}],"default":false,"docs":[" Deletes an existing token. Only the owner can burn the token."],"label":"burn","mutates":true,"payable":false,"returnType":{"displayName":["ink","MessageResult"],"type":12},"selector":"0xb1efc17b"}]},"storage":{"root":{"layout":{"struct":{"fields":[{"layout":{"root":{"layout":{"leaf":{"key":"0xed16db9e","ty":0}},"root_key":"0xed16db9e"}},"name":"token_owner"},{"layout":{"root":{"layout":{"leaf":{"key":"0x4d897660","ty":0}},"root_key":"0x4d897660"}},"name":"token_approvals"},{"layout":{"root":{"layout":{"leaf":{"key":"0xb5379df2","ty":3}},"root_key":"0xb5379df2"}},"name":"owned_tokens_count"},{"layout":{"root":{"layout":{"leaf":{"key":"0xad984333","ty":4}},"root_key":"0xad984333"}},"name":"operator_approvals"}],"name":"Erc721"}},"root_key":"0x00000000"}},"types":[{"id":0,"type":{"def":{"composite":{"fields":[{"type":1,"typeName":"[u8; 32]"}]}},"path":["ink_primitives","types","AccountId"]}},{"id":1,"type":{"def":{"array":{"len":32,"type":2}}}},{"id":2,"type":{"def":{"primitive":"u8"}}},{"id":3,"type":{"def":{"primitive":"u32"}}},{"id":4,"type":{"def":{"tuple":[]}}},{"id":5,"type":{"def":{"variant":{"variants":[{"fields":[{"type":4}],"index":0,"name":"Ok"},{"fields":[{"type":6}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":4},{"name":"E","type":6}],"path":["Result"]}},{"id":6,"type":{"def":{"variant":{"variants":[{"index":1,"name":"CouldNotReadInput"}]}},"path":["ink_primitives","LangError"]}},{"id":7,"type":{"def":{"variant":{"variants":[{"fields":[{"type":3}],"index":0,"name":"Ok"},{"fields":[{"type":6}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":3},{"name":"E","type":6}],"path":["Result"]}},{"id":8,"type":{"def":{"variant":{"variants":[{"fields":[{"type":9}],"index":0,"name":"Ok"},{"fields":[{"type":6}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":9},{"name":"E","type":6}],"path":["Result"]}},{"id":9,"type":{"def":{"variant":{"variants":[{"index":0,"name":"None"},{"fields":[{"type":0}],"index":1,"name":"Some"}]}},"params":[{"name":"T","type":0}],"path":["Option"]}},{"id":10,"type":{"def":{"variant":{"variants":[{"fields":[{"type":11}],"index":0,"name":"Ok"},{"fields":[{"type":6}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":11},{"name":"E","type":6}],"path":["Result"]}},{"id":11,"type":{"def":{"primitive":"bool"}}},{"id":12,"type":{"def":{"variant":{"variants":[{"fields":[{"type":13}],"index":0,"name":"Ok"},{"fields":[{"type":6}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":13},{"name":"E","type":6}],"path":["Result"]}},{"id":13,"type":{"def":{"variant":{"variants":[{"fields":[{"type":4}],"index":0,"name":"Ok"},{"fields":[{"type":14}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":4},{"name":"E","type":14}],"path":["Result"]}},{"id":14,"type":{"def":{"variant":{"variants":[{"index":0,"name":"NotOwner"},{"index":1,"name":"NotApproved"},{"index":2,"name":"TokenExists"},{"index":3,"name":"TokenNotFound"},{"index":4,"name":"CannotInsert"},{"index":5,"name":"CannotFetchValue"},{"index":6,"name":"NotAllowed"}]}},"path":["phone_numbers","erc721","Error"]}},{"id":15,"type":{"def":{"primitive":"u128"}}},{"id":16,"type":{"def":{"composite":{"fields":[{"type":1,"typeName":"[u8; 32]"}]}},"path":["ink_primitives","types","Hash"]}},{"id":17,"type":{"def":{"primitive":"u64"}}},{"id":18,"type":{"def":{"variant":{}},"path":["ink_env","types","NoChainExtension"]}}],"version":"4"} \ No newline at end of file diff --git a/contracts/deployments/phone_numbers/phone_numbers.json b/contracts/deployments/phone_numbers/phone_numbers.json new file mode 100644 index 0000000..077b63c --- /dev/null +++ b/contracts/deployments/phone_numbers/phone_numbers.json @@ -0,0 +1,1086 @@ +{ + "source": { + "hash": "0x7ab4757f5ccad6a2cbbdd4b42243cc29f3b3870f0f4ef24d1d6850b103495040", + "language": "ink! 4.3.0", + "compiler": "rustc 1.75.0", + "build_info": { + "build_mode": "Release", + "cargo_contract_version": "3.2.0", + "rust_toolchain": "stable-x86_64-unknown-linux-gnu", + "wasm_opt_settings": { + "keep_debug_symbols": false, + "optimization_passes": "Z" + } + } + }, + "contract": { + "name": "phone-numbers", + "version": "0.0.1", + "authors": [ + "Scio Labs " + ] + }, + "spec": { + "constructors": [ + { + "args": [], + "default": false, + "docs": [ + "Creates a new ERC-721 token contract." + ], + "label": "new", + "payable": false, + "returnType": { + "displayName": [ + "ink_primitives", + "ConstructorResult" + ], + "type": 5 + }, + "selector": "0x9bae9d5e" + } + ], + "docs": [], + "environment": { + "accountId": { + "displayName": [ + "AccountId" + ], + "type": 0 + }, + "balance": { + "displayName": [ + "Balance" + ], + "type": 15 + }, + "blockNumber": { + "displayName": [ + "BlockNumber" + ], + "type": 3 + }, + "chainExtension": { + "displayName": [ + "ChainExtension" + ], + "type": 18 + }, + "hash": { + "displayName": [ + "Hash" + ], + "type": 16 + }, + "maxEventTopics": 4, + "timestamp": { + "displayName": [ + "Timestamp" + ], + "type": 17 + } + }, + "events": [ + { + "args": [ + { + "docs": [], + "indexed": true, + "label": "from", + "type": { + "displayName": [ + "Option" + ], + "type": 9 + } + }, + { + "docs": [], + "indexed": true, + "label": "to", + "type": { + "displayName": [ + "Option" + ], + "type": 9 + } + }, + { + "docs": [], + "indexed": true, + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "docs": [ + "Event emitted when a token transfer occurs." + ], + "label": "Transfer" + }, + { + "args": [ + { + "docs": [], + "indexed": true, + "label": "from", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "docs": [], + "indexed": true, + "label": "to", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "docs": [], + "indexed": true, + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "docs": [ + "Event emitted when a token approve occurs." + ], + "label": "Approval" + }, + { + "args": [ + { + "docs": [], + "indexed": true, + "label": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "docs": [], + "indexed": true, + "label": "operator", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "docs": [], + "indexed": false, + "label": "approved", + "type": { + "displayName": [ + "bool" + ], + "type": 11 + } + } + ], + "docs": [ + "Event emitted when an operator is enabled or disabled for an owner.", + "The operator can manage all NFTs of the owner." + ], + "label": "ApprovalForAll" + } + ], + "lang_error": { + "displayName": [ + "ink", + "LangError" + ], + "type": 6 + }, + "messages": [ + { + "args": [ + { + "label": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + } + ], + "default": false, + "docs": [ + " Returns the balance of the owner.", + "", + " This represents the amount of unique tokens the owner has." + ], + "label": "balance_of", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 7 + }, + "selector": "0x0f755a56" + }, + { + "args": [ + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Returns the owner of the token." + ], + "label": "owner_of", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 8 + }, + "selector": "0x99720c1e" + }, + { + "args": [ + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Returns the approved account ID for this token if any." + ], + "label": "get_approved", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 8 + }, + "selector": "0x27592dea" + }, + { + "args": [ + { + "label": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "label": "operator", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + } + ], + "default": false, + "docs": [ + " Returns `true` if the operator is approved by the owner." + ], + "label": "is_approved_for_all", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 10 + }, + "selector": "0x0f5922e9" + }, + { + "args": [ + { + "label": "to", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "label": "approved", + "type": { + "displayName": [ + "bool" + ], + "type": 11 + } + } + ], + "default": false, + "docs": [ + " Approves or disapproves the operator for all tokens of the caller." + ], + "label": "set_approval_for_all", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 12 + }, + "selector": "0xcfd0c27b" + }, + { + "args": [ + { + "label": "to", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Approves the account to transfer the specified token on behalf of the caller." + ], + "label": "approve", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 12 + }, + "selector": "0x681266a0" + }, + { + "args": [ + { + "label": "destination", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Transfers the token from the caller to the given destination." + ], + "label": "transfer", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 12 + }, + "selector": "0x84a15da1" + }, + { + "args": [ + { + "label": "from", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "label": "to", + "type": { + "displayName": [ + "AccountId" + ], + "type": 0 + } + }, + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Transfer approved or owned token." + ], + "label": "transfer_from", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 12 + }, + "selector": "0x0b396f18" + }, + { + "args": [ + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Creates a new token." + ], + "label": "mint", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 12 + }, + "selector": "0xcfdd9aa2" + }, + { + "args": [ + { + "label": "id", + "type": { + "displayName": [ + "TokenId" + ], + "type": 3 + } + } + ], + "default": false, + "docs": [ + " Deletes an existing token. Only the owner can burn the token." + ], + "label": "burn", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "ink", + "MessageResult" + ], + "type": 12 + }, + "selector": "0xb1efc17b" + } + ] + }, + "storage": { + "root": { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "root": { + "layout": { + "leaf": { + "key": "0xed16db9e", + "ty": 0 + } + }, + "root_key": "0xed16db9e" + } + }, + "name": "token_owner" + }, + { + "layout": { + "root": { + "layout": { + "leaf": { + "key": "0x4d897660", + "ty": 0 + } + }, + "root_key": "0x4d897660" + } + }, + "name": "token_approvals" + }, + { + "layout": { + "root": { + "layout": { + "leaf": { + "key": "0xb5379df2", + "ty": 3 + } + }, + "root_key": "0xb5379df2" + } + }, + "name": "owned_tokens_count" + }, + { + "layout": { + "root": { + "layout": { + "leaf": { + "key": "0xad984333", + "ty": 4 + } + }, + "root_key": "0xad984333" + } + }, + "name": "operator_approvals" + } + ], + "name": "Erc721" + } + }, + "root_key": "0x00000000" + } + }, + "types": [ + { + "id": 0, + "type": { + "def": { + "composite": { + "fields": [ + { + "type": 1, + "typeName": "[u8; 32]" + } + ] + } + }, + "path": [ + "ink_primitives", + "types", + "AccountId" + ] + } + }, + { + "id": 1, + "type": { + "def": { + "array": { + "len": 32, + "type": 2 + } + } + } + }, + { + "id": 2, + "type": { + "def": { + "primitive": "u8" + } + } + }, + { + "id": 3, + "type": { + "def": { + "primitive": "u32" + } + } + }, + { + "id": 4, + "type": { + "def": { + "tuple": [] + } + } + }, + { + "id": 5, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 4 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 6 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 4 + }, + { + "name": "E", + "type": 6 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 6, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 1, + "name": "CouldNotReadInput" + } + ] + } + }, + "path": [ + "ink_primitives", + "LangError" + ] + } + }, + { + "id": 7, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 3 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 6 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 3 + }, + { + "name": "E", + "type": 6 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 8, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 9 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 6 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 9 + }, + { + "name": "E", + "type": 6 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 9, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 0, + "name": "None" + }, + { + "fields": [ + { + "type": 0 + } + ], + "index": 1, + "name": "Some" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 0 + } + ], + "path": [ + "Option" + ] + } + }, + { + "id": 10, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 11 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 6 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 11 + }, + { + "name": "E", + "type": 6 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 11, + "type": { + "def": { + "primitive": "bool" + } + } + }, + { + "id": 12, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 13 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 6 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 13 + }, + { + "name": "E", + "type": 6 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 13, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 4 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 14 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 4 + }, + { + "name": "E", + "type": 14 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 14, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 0, + "name": "NotOwner" + }, + { + "index": 1, + "name": "NotApproved" + }, + { + "index": 2, + "name": "TokenExists" + }, + { + "index": 3, + "name": "TokenNotFound" + }, + { + "index": 4, + "name": "CannotInsert" + }, + { + "index": 5, + "name": "CannotFetchValue" + }, + { + "index": 6, + "name": "NotAllowed" + } + ] + } + }, + "path": [ + "phone_numbers", + "erc721", + "Error" + ] + } + }, + { + "id": 15, + "type": { + "def": { + "primitive": "u128" + } + } + }, + { + "id": 16, + "type": { + "def": { + "composite": { + "fields": [ + { + "type": 1, + "typeName": "[u8; 32]" + } + ] + } + }, + "path": [ + "ink_primitives", + "types", + "Hash" + ] + } + }, + { + "id": 17, + "type": { + "def": { + "primitive": "u64" + } + } + }, + { + "id": 18, + "type": { + "def": { + "variant": {} + }, + "path": [ + "ink_env", + "types", + "NoChainExtension" + ] + } + } + ], + "version": "4" +} \ No newline at end of file diff --git a/contracts/deployments/phone_numbers/phone_numbers.wasm b/contracts/deployments/phone_numbers/phone_numbers.wasm new file mode 100644 index 0000000000000000000000000000000000000000..62f97ec566cbf4838be75d09c0e9127f84848502 GIT binary patch literal 10529 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 /dev/null; then + touch deployments/greeter/development.ts + else + copy /b deployments/greeter/development.ts +,, + fi +else + echo "Great, 'development.ts' already exists! Skipping…" +fi diff --git a/contracts/rust-toolchain b/contracts/rust-toolchain new file mode 100644 index 0000000..870bbe4 --- /dev/null +++ b/contracts/rust-toolchain @@ -0,0 +1 @@ +stable \ No newline at end of file diff --git a/contracts/scripts/deploy.ts b/contracts/scripts/deploy.ts new file mode 100644 index 0000000..367b8d0 --- /dev/null +++ b/contracts/scripts/deploy.ts @@ -0,0 +1,36 @@ +import { getDeploymentData } from '@/utils/getDeploymentData' +import { initPolkadotJs } from '@/utils/initPolkadotJs' +import { writeContractAddresses } from '@/utils/writeContractAddresses' +import { deployContract } from '@scio-labs/use-inkathon/helpers' + +/** + * Script that deploys the greeter contract and writes its address to a file. + * + * Parameters: + * - `DIR`: Directory to read contract build artifacts & write addresses to (optional, defaults to `./deployments`) + * - `CHAIN`: Chain ID (optional, defaults to `development`) + * + * Example usage: + * - `pnpm run deploy` + * - `CHAIN=alephzero-testnet pnpm run deploy` + */ +const main = async () => { + const initParams = await initPolkadotJs() + const { api, chain, account } = initParams + + // Deploy nft contract + const { abi, wasm } = await getDeploymentData('phone_numbers') + const nfts = await deployContract(api, account, abi, wasm, 'default', []) + + // Write contract addresses to `{contract}/{network}.ts` file(s) + await writeContractAddresses(chain.network, { + nfts, + }) +} + +main() + .catch((error) => { + console.error(error) + process.exit(1) + }) + .finally(() => process.exit(0)) diff --git a/contracts/scripts/script.template.ts b/contracts/scripts/script.template.ts new file mode 100644 index 0000000..69b73b6 --- /dev/null +++ b/contracts/scripts/script.template.ts @@ -0,0 +1,50 @@ +import { getDeploymentData } from '@/utils/getDeploymentData' +import { initPolkadotJs } from '@/utils/initPolkadotJs' +import { ContractPromise } from '@polkadot/api-contract' +import { + contractQuery, + contractTx, + decodeOutput, + deployContract, +} from '@scio-labs/use-inkathon/helpers' + +/** + * Example script that updates & reads a message from a greeter contract. + * Can be used as a template for other scripts. + * + * Parameters: + * - `DIR`: Directory to read contract build artifacts (optional, defaults to `./deployments`) + * - `CHAIN`: Chain ID (optional, defaults to `development`) + * + * Example usage: + * - `pnpm run script ` + * - `CHAIN=alephzero-testnet pnpm run script ` + */ +const main = async () => { + const { api, account } = await initPolkadotJs() + + // Deploy greeter contract + const { abi, wasm } = await getDeploymentData('greeter') + const { address } = await deployContract(api, account, abi, wasm, 'default', []) + const contract = new ContractPromise(api, abi, address) + + // Update message + try { + await contractTx(api, account, contract, 'set_message', {}, ['Hello, script!']) + console.log('\nSuccessfully updated greeting') + } catch (error) { + console.error('Error while updating greeting', error) + } + + // Read message + const result = await contractQuery(api, '', contract, 'greet') + const { decodedOutput } = decodeOutput(result, contract, 'greet') + console.log('\nQueried greeting:', decodedOutput) +} + +main() + .catch((error) => { + console.error(error) + process.exit(1) + }) + .finally(() => process.exit(0)) diff --git a/contracts/scripts/utils/getDeploymentData.ts b/contracts/scripts/utils/getDeploymentData.ts new file mode 100644 index 0000000..3a1e7c1 --- /dev/null +++ b/contracts/scripts/utils/getDeploymentData.ts @@ -0,0 +1,26 @@ +import { readFile } from 'fs/promises' +import path from 'path' + +/** + * Reads the contract deployment files (wasm & abi). + * NOTE: Base directory can be configured via the `DIR` environment variable + */ +export const getDeploymentData = async (contractName: string) => { + const baseDir = process.env.DIR || './deployments' + const contractPath = path.join(path.resolve(), baseDir, contractName) + + let abi, wasm + try { + abi = JSON.parse(await readFile(path.join(contractPath, `${contractName}.json`), 'utf-8')) + wasm = await readFile(path.join(contractPath, `${contractName}.wasm`)) + } catch (e) { + console.error(e) + throw new Error("Couldn't find contract deployment files. Did you build it via `pnpm build`?") + } + + return { + contractPath, + abi, + wasm, + } +} diff --git a/contracts/scripts/utils/initPolkadotJs.ts b/contracts/scripts/utils/initPolkadotJs.ts new file mode 100644 index 0000000..ef2efd6 --- /dev/null +++ b/contracts/scripts/utils/initPolkadotJs.ts @@ -0,0 +1,50 @@ +import { ApiPromise, Keyring } from '@polkadot/api' +import { IKeyringPair } from '@polkadot/types/types/interfaces' +import { BN } from '@polkadot/util' +import { getSubstrateChain } from '@scio-labs/use-inkathon/chains' +import { getBalance, initPolkadotJs as initApi } from '@scio-labs/use-inkathon/helpers' +import { SubstrateChain } from '@scio-labs/use-inkathon/types' +import * as dotenv from 'dotenv' + +// Dynamically load environment from `.env.{chainId}` +const chainId = process.env.CHAIN || 'development' +dotenv.config({ path: `.env.${chainId}` }) + +/** + * Initialize Polkadot.js API with given RPC & account from given URI. + */ +export type InitParams = { + chain: SubstrateChain + api: ApiPromise + keyring: Keyring + account: IKeyringPair + decimals: number + prefix: number + toBNWithDecimals: (_: number | string) => BN +} +export const initPolkadotJs = async (): Promise => { + const accountUti = process.env.ACCOUNT_URI || '//Alice' + const chain = getSubstrateChain(chainId) + if (!chain) throw new Error(`Chain '${chainId}' not found`) + + // Initialize api + const { api } = await initApi(chain, { noInitWarn: true }) + + // Print chain info + const network = (await api.rpc.system.chain())?.toString() || '' + const version = (await api.rpc.system.version())?.toString() || '' + console.log(`Initialized API on ${network} (${version})`) + + // Get decimals & prefix + const decimals = api.registry.chainDecimals?.[0] || 12 + const prefix = api.registry.chainSS58 || 42 + const toBNWithDecimals = (n: number | string) => new BN(n).mul(new BN(10).pow(new BN(decimals))) + + // Initialize account & set signer + const keyring = new Keyring({ type: 'sr25519' }) + const account = keyring.addFromUri(accountUti) + const balance = await getBalance(api, account.address) + console.log(`Initialized Account: ${account.address} (${balance.balanceFormatted})\n`) + + return { api, chain, keyring, account, decimals, prefix, toBNWithDecimals } +} diff --git a/contracts/scripts/utils/writeContractAddresses.ts b/contracts/scripts/utils/writeContractAddresses.ts new file mode 100644 index 0000000..d3d1b1a --- /dev/null +++ b/contracts/scripts/utils/writeContractAddresses.ts @@ -0,0 +1,42 @@ +import { DeployedContract } from '@scio-labs/use-inkathon/types' +import { writeFile } from 'fs/promises' +import path from 'path' + +/** + * Writes each given contract address & blockNumber to a `{baseDir}/{contract}/{network}.ts` file. + * NOTE: Base directory can be configured via the `DIR` environment variable + */ +export const writeContractAddresses = async ( + networkId: string, + contractDeployments: Record, + metadata?: { [key: string]: string | number }, +) => { + const baseDir = process.env.DIR || './deployments' + + console.log() + for (const [contractName, deployment] of Object.entries(contractDeployments)) { + const relativePath = path.join(baseDir, contractName, `${networkId}.ts`) + const absolutePath = path.join(path.resolve(), relativePath) + + let fileContents = '' + + if (deployment?.address) { + fileContents += `export const address = '${deployment.address}'\n` + } + + if (deployment?.blockNumber) { + fileContents += `export const blockNumber = ${deployment.blockNumber}\n` + } + + // Iterate over metadata keys and write them to the file + if (metadata) { + for (const [key, value] of Object.entries(metadata)) { + const valueFormatted = typeof value === 'string' ? `'${value}'` : value + fileContents += `export const ${key} = ${valueFormatted}\n` + } + } + + await writeFile(absolutePath, fileContents) + console.log(`Exported deployment info to file: ${relativePath}`) + } +} diff --git a/contracts/src/phone_numbers/Cargo.toml b/contracts/src/phone_numbers/Cargo.toml new file mode 100755 index 0000000..7e2c492 --- /dev/null +++ b/contracts/src/phone_numbers/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "phone-numbers" +version = "0.0.1" +authors = ["Scio Labs "] +edition = "2021" + +[dependencies] +ink = { version = "4.3.0", default-features = false } + +scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } +scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } + +[lib] +path = "lib.rs" + +[features] +default = ["std"] +std = ["ink/std", "scale/std", "scale-info/std"] +ink-as-dependency = [] diff --git a/contracts/src/phone_numbers/lib.rs b/contracts/src/phone_numbers/lib.rs new file mode 100755 index 0000000..3e0fb3e --- /dev/null +++ b/contracts/src/phone_numbers/lib.rs @@ -0,0 +1,639 @@ +//! # ERC-721 +//! +//! This is an ERC-721 Token implementation. +//! +//! ## Warning +//! +//! This contract is an *example*. It is neither audited nor endorsed for production use. +//! Do **not** rely on it to keep anything of value secure. +//! +//! ## Overview +//! +//! This contract demonstrates how to build non-fungible or unique tokens using ink!. +//! +//! ## Error Handling +//! +//! Any function that modifies the state returns a `Result` type and does not changes the +//! state if the `Error` occurs. +//! The errors are defined as an `enum` type. Any other error or invariant violation +//! triggers a panic and therefore rolls back the transaction. +//! +//! ## Token Management +//! +//! After creating a new token, the function caller becomes the owner. +//! A token can be created, transferred, or destroyed. +//! +//! Token owners can assign other accounts for transferring specific tokens on their +//! behalf. It is also possible to authorize an operator (higher rights) for another +//! account to handle tokens. +//! +//! ### Token Creation +//! +//! Token creation start by calling the `mint(&mut self, id: u32)` function. +//! The token owner becomes the function caller. The Token ID needs to be specified +//! as the argument on this function call. +//! +//! ### Token Transfer +//! +//! Transfers may be initiated by: +//! - The owner of a token +//! - The approved address of a token +//! - An authorized operator of the current owner of a token +//! +//! The token owner can transfer a token by calling the `transfer` or `transfer_from` +//! functions. An approved address can make a token transfer by calling the +//! `transfer_from` function. Operators can transfer tokens on another account's behalf or +//! can approve a token transfer for a different account. +//! +//! ### Token Removal +//! +//! Tokens can be destroyed by burning them. Only the token owner is allowed to burn a +//! token. + +#![cfg_attr(not(feature = "std"), no_std, no_main)] + +#[ink::contract] +mod erc721 { + use ink::storage::Mapping; + + use scale::{ + Decode, + Encode, + }; + + /// A token ID. + pub type TokenId = u32; + + #[ink(storage)] + #[derive(Default)] + pub struct Erc721 { + /// Mapping from token to owner. + token_owner: Mapping, + /// Mapping from token to approvals users. + token_approvals: Mapping, + /// Mapping from owner to number of owned token. + owned_tokens_count: Mapping, + /// Mapping from owner to operator approvals. + operator_approvals: Mapping<(AccountId, AccountId), ()>, + } + + #[derive(Encode, Decode, Debug, PartialEq, Eq, Copy, Clone)] + #[cfg_attr(feature = "std", derive(scale_info::TypeInfo))] + pub enum Error { + NotOwner, + NotApproved, + TokenExists, + TokenNotFound, + CannotInsert, + CannotFetchValue, + NotAllowed, + } + + /// Event emitted when a token transfer occurs. + #[ink(event)] + pub struct Transfer { + #[ink(topic)] + from: Option, + #[ink(topic)] + to: Option, + #[ink(topic)] + id: TokenId, + } + + /// Event emitted when a token approve occurs. + #[ink(event)] + pub struct Approval { + #[ink(topic)] + from: AccountId, + #[ink(topic)] + to: AccountId, + #[ink(topic)] + id: TokenId, + } + + /// Event emitted when an operator is enabled or disabled for an owner. + /// The operator can manage all NFTs of the owner. + #[ink(event)] + pub struct ApprovalForAll { + #[ink(topic)] + owner: AccountId, + #[ink(topic)] + operator: AccountId, + approved: bool, + } + + impl Erc721 { + /// Creates a new ERC-721 token contract. + #[ink(constructor)] + pub fn new() -> Self { + Default::default() + } + + /// Returns the balance of the owner. + /// + /// This represents the amount of unique tokens the owner has. + #[ink(message)] + pub fn balance_of(&self, owner: AccountId) -> u32 { + self.balance_of_or_zero(&owner) + } + + /// Returns the owner of the token. + #[ink(message)] + pub fn owner_of(&self, id: TokenId) -> Option { + self.token_owner.get(id) + } + + /// Returns the approved account ID for this token if any. + #[ink(message)] + pub fn get_approved(&self, id: TokenId) -> Option { + self.token_approvals.get(id) + } + + /// Returns `true` if the operator is approved by the owner. + #[ink(message)] + pub fn is_approved_for_all(&self, owner: AccountId, operator: AccountId) -> bool { + self.approved_for_all(owner, operator) + } + + /// Approves or disapproves the operator for all tokens of the caller. + #[ink(message)] + pub fn set_approval_for_all( + &mut self, + to: AccountId, + approved: bool, + ) -> Result<(), Error> { + self.approve_for_all(to, approved)?; + Ok(()) + } + + /// Approves the account to transfer the specified token on behalf of the caller. + #[ink(message)] + pub fn approve(&mut self, to: AccountId, id: TokenId) -> Result<(), Error> { + self.approve_for(&to, id)?; + Ok(()) + } + + /// Transfers the token from the caller to the given destination. + #[ink(message)] + pub fn transfer( + &mut self, + destination: AccountId, + id: TokenId, + ) -> Result<(), Error> { + let caller = self.env().caller(); + self.transfer_token_from(&caller, &destination, id)?; + Ok(()) + } + + /// Transfer approved or owned token. + #[ink(message)] + pub fn transfer_from( + &mut self, + from: AccountId, + to: AccountId, + id: TokenId, + ) -> Result<(), Error> { + self.transfer_token_from(&from, &to, id)?; + Ok(()) + } + + /// Creates a new token. + #[ink(message)] + pub fn mint(&mut self, id: TokenId) -> Result<(), Error> { + let caller = self.env().caller(); + self.add_token_to(&caller, id)?; + self.env().emit_event(Transfer { + from: Some(AccountId::from([0x0; 32])), + to: Some(caller), + id, + }); + Ok(()) + } + + /// Deletes an existing token. Only the owner can burn the token. + #[ink(message)] + pub fn burn(&mut self, id: TokenId) -> Result<(), Error> { + let caller = self.env().caller(); + let Self { + token_owner, + owned_tokens_count, + .. + } = self; + + let owner = token_owner.get(id).ok_or(Error::TokenNotFound)?; + if owner != caller { + return Err(Error::NotOwner) + }; + + let count = owned_tokens_count + .get(caller) + .map(|c| c - 1) + .ok_or(Error::CannotFetchValue)?; + owned_tokens_count.insert(caller, &count); + token_owner.remove(id); + + self.env().emit_event(Transfer { + from: Some(caller), + to: Some(AccountId::from([0x0; 32])), + id, + }); + + Ok(()) + } + + /// Transfers token `id` `from` the sender to the `to` `AccountId`. + fn transfer_token_from( + &mut self, + from: &AccountId, + to: &AccountId, + id: TokenId, + ) -> Result<(), Error> { + let caller = self.env().caller(); + if !self.exists(id) { + return Err(Error::TokenNotFound) + }; + if !self.approved_or_owner(Some(caller), id) { + return Err(Error::NotApproved) + }; + self.clear_approval(id); + self.remove_token_from(from, id)?; + self.add_token_to(to, id)?; + self.env().emit_event(Transfer { + from: Some(*from), + to: Some(*to), + id, + }); + Ok(()) + } + + /// Removes token `id` from the owner. + fn remove_token_from( + &mut self, + from: &AccountId, + id: TokenId, + ) -> Result<(), Error> { + let Self { + token_owner, + owned_tokens_count, + .. + } = self; + + if !token_owner.contains(id) { + return Err(Error::TokenNotFound) + } + + let count = owned_tokens_count + .get(from) + .map(|c| c - 1) + .ok_or(Error::CannotFetchValue)?; + owned_tokens_count.insert(from, &count); + token_owner.remove(id); + + Ok(()) + } + + /// Adds the token `id` to the `to` AccountID. + fn add_token_to(&mut self, to: &AccountId, id: TokenId) -> Result<(), Error> { + let Self { + token_owner, + owned_tokens_count, + .. + } = self; + + if token_owner.contains(id) { + return Err(Error::TokenExists) + } + + if *to == AccountId::from([0x0; 32]) { + return Err(Error::NotAllowed) + }; + + let count = owned_tokens_count.get(to).map(|c| c + 1).unwrap_or(1); + + owned_tokens_count.insert(to, &count); + token_owner.insert(id, to); + + Ok(()) + } + + /// Approves or disapproves the operator to transfer all tokens of the caller. + fn approve_for_all( + &mut self, + to: AccountId, + approved: bool, + ) -> Result<(), Error> { + let caller = self.env().caller(); + if to == caller { + return Err(Error::NotAllowed) + } + self.env().emit_event(ApprovalForAll { + owner: caller, + operator: to, + approved, + }); + + if approved { + self.operator_approvals.insert((&caller, &to), &()); + } else { + self.operator_approvals.remove((&caller, &to)); + } + + Ok(()) + } + + /// Approve the passed `AccountId` to transfer the specified token on behalf of + /// the message's sender. + fn approve_for(&mut self, to: &AccountId, id: TokenId) -> Result<(), Error> { + let caller = self.env().caller(); + let owner = self.owner_of(id); + if !(owner == Some(caller) + || self.approved_for_all(owner.expect("Error with AccountId"), caller)) + { + return Err(Error::NotAllowed) + }; + + if *to == AccountId::from([0x0; 32]) { + return Err(Error::NotAllowed) + }; + + if self.token_approvals.contains(id) { + return Err(Error::CannotInsert) + } else { + self.token_approvals.insert(id, to); + } + + self.env().emit_event(Approval { + from: caller, + to: *to, + id, + }); + + Ok(()) + } + + /// Removes existing approval from token `id`. + fn clear_approval(&mut self, id: TokenId) { + self.token_approvals.remove(id); + } + + // Returns the total number of tokens from an account. + fn balance_of_or_zero(&self, of: &AccountId) -> u32 { + self.owned_tokens_count.get(of).unwrap_or(0) + } + + /// Gets an operator on other Account's behalf. + fn approved_for_all(&self, owner: AccountId, operator: AccountId) -> bool { + self.operator_approvals.contains((&owner, &operator)) + } + + /// Returns true if the `AccountId` `from` is the owner of token `id` + /// or it has been approved on behalf of the token `id` owner. + fn approved_or_owner(&self, from: Option, id: TokenId) -> bool { + let owner = self.owner_of(id); + from != Some(AccountId::from([0x0; 32])) + && (from == owner + || from == self.token_approvals.get(id) + || self.approved_for_all( + owner.expect("Error with AccountId"), + from.expect("Error with AccountId"), + )) + } + + /// Returns true if token `id` exists or false if it does not. + fn exists(&self, id: TokenId) -> bool { + self.token_owner.contains(id) + } + } + + /// Unit tests + #[cfg(test)] + mod tests { + /// Imports all the definitions from the outer scope so we can use them here. + use super::*; + + #[ink::test] + fn mint_works() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Token 1 does not exists. + assert_eq!(erc721.owner_of(1), None); + // Alice does not owns tokens. + assert_eq!(erc721.balance_of(accounts.alice), 0); + // Create token Id 1. + assert_eq!(erc721.mint(1), Ok(())); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + } + + #[ink::test] + fn mint_existing_should_fail() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1. + assert_eq!(erc721.mint(1), Ok(())); + // The first Transfer event takes place + assert_eq!(1, ink::env::test::recorded_events().count()); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Alice owns token Id 1. + assert_eq!(erc721.owner_of(1), Some(accounts.alice)); + // Cannot create token Id if it exists. + // Bob cannot own token Id 1. + assert_eq!(erc721.mint(1), Err(Error::TokenExists)); + } + + #[ink::test] + fn transfer_works() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1 for Alice + assert_eq!(erc721.mint(1), Ok(())); + // Alice owns token 1 + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Bob does not owns any token + assert_eq!(erc721.balance_of(accounts.bob), 0); + // The first Transfer event takes place + assert_eq!(1, ink::env::test::recorded_events().count()); + // Alice transfers token 1 to Bob + assert_eq!(erc721.transfer(accounts.bob, 1), Ok(())); + // The second Transfer event takes place + assert_eq!(2, ink::env::test::recorded_events().count()); + // Bob owns token 1 + assert_eq!(erc721.balance_of(accounts.bob), 1); + } + + #[ink::test] + fn invalid_transfer_should_fail() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Transfer token fails if it does not exists. + assert_eq!(erc721.transfer(accounts.bob, 2), Err(Error::TokenNotFound)); + // Token Id 2 does not exists. + assert_eq!(erc721.owner_of(2), None); + // Create token Id 2. + assert_eq!(erc721.mint(2), Ok(())); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Token Id 2 is owned by Alice. + assert_eq!(erc721.owner_of(2), Some(accounts.alice)); + // Set Bob as caller + set_caller(accounts.bob); + // Bob cannot transfer not owned tokens. + assert_eq!(erc721.transfer(accounts.eve, 2), Err(Error::NotApproved)); + } + + #[ink::test] + fn approved_transfer_works() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1. + assert_eq!(erc721.mint(1), Ok(())); + // Token Id 1 is owned by Alice. + assert_eq!(erc721.owner_of(1), Some(accounts.alice)); + // Approve token Id 1 transfer for Bob on behalf of Alice. + assert_eq!(erc721.approve(accounts.bob, 1), Ok(())); + // Set Bob as caller + set_caller(accounts.bob); + // Bob transfers token Id 1 from Alice to Eve. + assert_eq!( + erc721.transfer_from(accounts.alice, accounts.eve, 1), + Ok(()) + ); + // TokenId 3 is owned by Eve. + assert_eq!(erc721.owner_of(1), Some(accounts.eve)); + // Alice does not owns tokens. + assert_eq!(erc721.balance_of(accounts.alice), 0); + // Bob does not owns tokens. + assert_eq!(erc721.balance_of(accounts.bob), 0); + // Eve owns 1 token. + assert_eq!(erc721.balance_of(accounts.eve), 1); + } + + #[ink::test] + fn approved_for_all_works() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1. + assert_eq!(erc721.mint(1), Ok(())); + // Create token Id 2. + assert_eq!(erc721.mint(2), Ok(())); + // Alice owns 2 tokens. + assert_eq!(erc721.balance_of(accounts.alice), 2); + // Approve token Id 1 transfer for Bob on behalf of Alice. + assert_eq!(erc721.set_approval_for_all(accounts.bob, true), Ok(())); + // Bob is an approved operator for Alice + assert!(erc721.is_approved_for_all(accounts.alice, accounts.bob)); + // Set Bob as caller + set_caller(accounts.bob); + // Bob transfers token Id 1 from Alice to Eve. + assert_eq!( + erc721.transfer_from(accounts.alice, accounts.eve, 1), + Ok(()) + ); + // TokenId 1 is owned by Eve. + assert_eq!(erc721.owner_of(1), Some(accounts.eve)); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Bob transfers token Id 2 from Alice to Eve. + assert_eq!( + erc721.transfer_from(accounts.alice, accounts.eve, 2), + Ok(()) + ); + // Bob does not own tokens. + assert_eq!(erc721.balance_of(accounts.bob), 0); + // Eve owns 2 tokens. + assert_eq!(erc721.balance_of(accounts.eve), 2); + // Remove operator approval for Bob on behalf of Alice. + set_caller(accounts.alice); + assert_eq!(erc721.set_approval_for_all(accounts.bob, false), Ok(())); + // Bob is not an approved operator for Alice. + assert!(!erc721.is_approved_for_all(accounts.alice, accounts.bob)); + } + + #[ink::test] + fn not_approved_transfer_should_fail() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1. + assert_eq!(erc721.mint(1), Ok(())); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Bob does not owns tokens. + assert_eq!(erc721.balance_of(accounts.bob), 0); + // Eve does not owns tokens. + assert_eq!(erc721.balance_of(accounts.eve), 0); + // Set Eve as caller + set_caller(accounts.eve); + // Eve is not an approved operator by Alice. + assert_eq!( + erc721.transfer_from(accounts.alice, accounts.frank, 1), + Err(Error::NotApproved) + ); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Bob does not owns tokens. + assert_eq!(erc721.balance_of(accounts.bob), 0); + // Eve does not owns tokens. + assert_eq!(erc721.balance_of(accounts.eve), 0); + } + + #[ink::test] + fn burn_works() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1 for Alice + assert_eq!(erc721.mint(1), Ok(())); + // Alice owns 1 token. + assert_eq!(erc721.balance_of(accounts.alice), 1); + // Alice owns token Id 1. + assert_eq!(erc721.owner_of(1), Some(accounts.alice)); + // Destroy token Id 1. + assert_eq!(erc721.burn(1), Ok(())); + // Alice does not owns tokens. + assert_eq!(erc721.balance_of(accounts.alice), 0); + // Token Id 1 does not exists + assert_eq!(erc721.owner_of(1), None); + } + + #[ink::test] + fn burn_fails_token_not_found() { + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Try burning a non existent token + assert_eq!(erc721.burn(1), Err(Error::TokenNotFound)); + } + + #[ink::test] + fn burn_fails_not_owner() { + let accounts = + ink::env::test::default_accounts::(); + // Create a new contract instance. + let mut erc721 = Erc721::new(); + // Create token Id 1 for Alice + assert_eq!(erc721.mint(1), Ok(())); + // Try burning this token with a different account + set_caller(accounts.eve); + assert_eq!(erc721.burn(1), Err(Error::NotOwner)); + } + + fn set_caller(sender: AccountId) { + ink::env::test::set_caller::(sender); + } + } +} \ No newline at end of file diff --git a/contracts/test-all.sh b/contracts/test-all.sh new file mode 100755 index 0000000..7350556 --- /dev/null +++ b/contracts/test-all.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +set -eu + +# ENVIRONMENT VARIABLES +CONTRACTS_DIR="${CONTRACTS_DIR:=./src}" # Base contract directory + +# Determine all contracts under `$CONTRACTS_DIR` +contracts=($(find $CONTRACTS_DIR -maxdepth 1 -type d -exec test -f {}/Cargo.toml \; -print | xargs -n 1 basename)) + +# Test all contracts +for i in "${contracts[@]}" +do + echo -e "\nTesting '$CONTRACTS_DIR/$i/Cargo.toml'…" + cargo test --manifest-path $CONTRACTS_DIR/$i/Cargo.toml +done \ No newline at end of file diff --git a/contracts/tsconfig.json b/contracts/tsconfig.json new file mode 100644 index 0000000..8bcbc3d --- /dev/null +++ b/contracts/tsconfig.json @@ -0,0 +1,24 @@ +{ + "ts-node": { + "esm": true, + "experimentalSpecifierResolution": "node" + }, + "compilerOptions": { + "module": "esnext", + "moduleResolution": "bundler", + "target": "esnext", + "sourceMap": true, + "outDir": "dist", + "resolveJsonModule": true, + "esModuleInterop": true, + "skipLibCheck": true, + "allowJs": true, + "composite": true, + "baseUrl": ".", + "paths": { + "@/*": ["./scripts/*"] + } + }, + "exclude": ["node_modules", "dist", "target", "./*/target"], + "include": ["./deployments/**/*.json", "./deployments/**/*.ts", "./scripts/**/*.ts"] +} diff --git a/frontend/.env.local.example b/frontend/.env.local.example new file mode 100644 index 0000000..accd13a --- /dev/null +++ b/frontend/.env.local.example @@ -0,0 +1,19 @@ +## DOCS: https://github.com/scio-labs/inkathon#environment-variables + +## How use those variables in the frontend code? +## β†’ 1. Add them in `./src/config/environment.ts` +## β†’ 2. Always import `env` from `@config/environment` (not from `process.env`) + +## Flag to differentiate production environments (i.e. for analytics) +NEXT_PUBLIC_PRODUCTION_MODE=false + +## Active deployment url (i.e. useful for fetching from Next.js API routes) +NEXT_PUBLIC_URL=http://localhost:3000 + +## Default chain identifer the frontend should connect to first +NEXT_PUBLIC_DEFAULT_CHAIN=alephzero-testnet +# NEXT_PUBLIC_DEFAULT_CHAIN=development + +## [Optional] Multiple supported chain identifers the frontend connects to +## IMPORTANT: It's mandatory to use double quotes in the array +# NEXT_PUBLIC_SUPPORTED_CHAINS=[ "development", "alephzero-testnet", "rococo", "shibuya" ] \ No newline at end of file diff --git a/frontend/.eslintignore b/frontend/.eslintignore new file mode 100644 index 0000000..c4c528d --- /dev/null +++ b/frontend/.eslintignore @@ -0,0 +1,8 @@ +package-lock.json +pnpm-lock.yaml +node_modules +LICENSE + +out +.next +public \ No newline at end of file diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json new file mode 100644 index 0000000..19a6e8c --- /dev/null +++ b/frontend/.eslintrc.json @@ -0,0 +1,25 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "plugins": ["@typescript-eslint"], + "extends": [ + "eslint:recommended", + "next/core-web-vitals", + "plugin:@typescript-eslint/recommended", + "prettier" + ], + "rules": { + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-empty-interface": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-non-null-assertion": "warn", + "@typescript-eslint/no-empty-function": "warn", + "react/no-children-prop": "warn", + "react-hooks/exhaustive-deps": "off", + "react/jsx-no-target-blank": "off", + "no-extra-boolean-cast": "off", + "prefer-const": "warn", + "no-restricted-imports": ["warn", { "patterns": ["process"] }] + } +} diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..69f6e69 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,44 @@ +# package management +**/node_modules +**/.pnp +.pnp.js +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# testing +/coverage + +# next.js +/.next/ +/out/ +next-env.d.ts + +# production +/build + +# local env files +.env +.env*.local + +# vercel +.vercel +.gitsigners + +# typescript +*.tsbuildinfo +dist diff --git a/frontend/.lintstagedrc.json b/frontend/.lintstagedrc.json new file mode 100644 index 0000000..6fb5b53 --- /dev/null +++ b/frontend/.lintstagedrc.json @@ -0,0 +1,4 @@ +{ + "*.{js,jsx,ts,tsx}": ["pnpm run lint:fix"], + "*.{json,md,mdx,html,css,yml,yaml}": ["pnpm run lint:format"] +} diff --git a/frontend/.prettierignore b/frontend/.prettierignore new file mode 100644 index 0000000..ea0d543 --- /dev/null +++ b/frontend/.prettierignore @@ -0,0 +1,10 @@ +package-lock.json +pnpm-lock.yaml +node_modules +LICENSE + +out +.next +public + +src/components/ui \ No newline at end of file diff --git a/frontend/.prettierrc.js b/frontend/.prettierrc.js new file mode 100644 index 0000000..65e90e0 --- /dev/null +++ b/frontend/.prettierrc.js @@ -0,0 +1,26 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +/* eslint-env node */ + +/** @type {import('prettier').Config} */ +module.exports = { + ...require('../.prettierrc.js'), + plugins: ['@trivago/prettier-plugin-sort-imports', 'prettier-plugin-tailwindcss'], + importOrder: [ + '^((react|next)/(.*)$)|^((react|next)$)', + '', + '^@/(config|types|styles|shared|lib|utils|hooks|components|app|pages|features)/(.*)$', + '^[./]', + ], + importOrderSeparation: true, + overrides: [ + { + files: ['*.ts', '*.tsx'], + options: { + parser: 'typescript', + importOrderParserPlugins: ['typescript', 'jsx'], + }, + }, + ], + tailwindConfig: 'tailwind.config.ts', + tailwindFunctions: ['clsx', 'cva'], +} diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md new file mode 100644 index 0000000..a874ce3 --- /dev/null +++ b/frontend/CHANGELOG.md @@ -0,0 +1,127 @@ +# @inkathon/frontend + +## 0.4.2 + +### Patch Changes + +- [`bc7d7ed`](https://github.com/scio-labs/inkathon/commit/bc7d7ed546fc2f17b6adaf96e34645f84ac2a5e0) Thanks [@wottpal](https://github.com/wottpal)! - Move VSCode settings to `settings.json` file but keep `inkathon.code-workspace`. It's now also supported by default to develop with ink!athon without opening the code-workspace file. + +- Updated dependencies [[`cf68f5f`](https://github.com/scio-labs/inkathon/commit/cf68f5f96888c69434014ff4f8eccdd3558d20bc), [`bc7d7ed`](https://github.com/scio-labs/inkathon/commit/bc7d7ed546fc2f17b6adaf96e34645f84ac2a5e0)]: + - @inkathon/contracts@0.4.2 + +## 0.4.1 + +### Patch Changes + +- [`14e8e11`](https://github.com/scio-labs/inkathon/commit/14e8e11ebc857e81b7cfa97e7c3c7f28d8dbccc3) Thanks [@wottpal](https://github.com/wottpal)! - Add sample code snippets from live workshops (greeter message reversion & make-it-rain script) + +- Updated dependencies [[`14e8e11`](https://github.com/scio-labs/inkathon/commit/14e8e11ebc857e81b7cfa97e7c3c7f28d8dbccc3)]: + - @inkathon/contracts@0.4.1 + +## 0.4.0 + +### Minor Changes + +- [#42](https://github.com/scio-labs/inkathon/pull/42) [`0533391`](https://github.com/scio-labs/inkathon/commit/0533391ac6f9b953ba0cb231af8b3037e80bcbab) Thanks [@ical10](https://github.com/ical10)! - Update project default to Node 20. + +- [#42](https://github.com/scio-labs/inkathon/pull/42) [`bc721ea`](https://github.com/scio-labs/inkathon/commit/bc721ea638a33d5d9d993eecddfd2a6f3ece1bfe) Thanks [@ical10](https://github.com/ical10)! - - Migrate the current pages directory to the Next.js 13 app directory. + - Migrate to `shadcn/ui` components and vanilla tailwind. + +### Patch Changes + +- Updated dependencies [[`0533391`](https://github.com/scio-labs/inkathon/commit/0533391ac6f9b953ba0cb231af8b3037e80bcbab)]: + - @inkathon/contracts@0.4.0 + +## 0.3.2 + +### Patch Changes + +- Updated dependencies [[`47aed1b`](https://github.com/scio-labs/inkathon/commit/47aed1b722138bd6fca2883337151d3c0b77e4a3)]: + - @inkathon/contracts@0.3.2 + +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`e73d9b8`](https://github.com/scio-labs/inkathon/commit/e73d9b86a4299702c59538ac43612b9977d479be)]: + - @inkathon/contracts@0.3.1 + +## 0.3.0 + +### Minor Changes + +- [`64adba1`](https://github.com/scio-labs/inkathon/commit/64adba196dd98ad272bbb4a99b4f7bc7186ae385) Thanks [@wottpal](https://github.com/wottpal)! - Add Nightly Connect support for Aleph Zero, Aleph Zero Testnet, and Local Node. Checkout: https://connect.nightly.app/. + +## 0.3.0 + +### Patch Changes + +- Updated dependencies [[`cda19ae`](https://github.com/scio-labs/inkathon/commit/cda19aeb4107c076daeb17a455fecfbd7f373044)]: + - @inkathon/contracts@0.3.0 + +## 0.2.1 + +### Patch Changes + +- Updated dependencies [[`3f4179e`](https://github.com/scio-labs/inkathon/commit/3f4179e9325b155324d23796234d9f853ae03dd9)]: + - @inkathon/contracts@0.2.1 + +## 0.2.0 + +### Minor Changes + +- [`c2cfbe4`](https://github.com/scio-labs/inkathon/commit/c2cfbe428a4e86f7ddb3d25886d4da79238b69be) Thanks [@wottpal](https://github.com/wottpal)! - Ensure & document Windows, Ubuntu, and macOS compatibility. 🌈 + +### Patch Changes + +- Updated dependencies [[`c2cfbe4`](https://github.com/scio-labs/inkathon/commit/c2cfbe428a4e86f7ddb3d25886d4da79238b69be)]: + - @inkathon/contracts@0.2.0 + +## 0.1.3 + +### Patch Changes + +- [`4bda28d`](https://github.com/scio-labs/inkathon/commit/4bda28d645abc8d8684d33bac788f04c278d7b4e) Thanks [@wottpal](https://github.com/wottpal)! - Further cross-platform script improvements (i.e. regarding the touch command). + +- Updated dependencies [[`4bda28d`](https://github.com/scio-labs/inkathon/commit/4bda28d645abc8d8684d33bac788f04c278d7b4e)]: + - @inkathon/contracts@0.1.3 + +## 0.1.2 + +### Patch Changes + +- [`2b9bc68`](https://github.com/scio-labs/inkathon/commit/2b9bc689876ea195a1cf2f6af1ca2414bcf04172) Thanks [@wottpal](https://github.com/wottpal)! - Make cp/copy command work cross-platform (i.e. on Windows) for postinstall and build-all scripts. + +- Updated dependencies [[`2b9bc68`](https://github.com/scio-labs/inkathon/commit/2b9bc689876ea195a1cf2f6af1ca2414bcf04172)]: + - @inkathon/contracts@0.1.2 + +## 0.1.1 + +### Patch Changes + +- [`1556c0f`](https://github.com/scio-labs/inkathon/commit/1556c0fb526c0b0219217cd19ab2a47dcc038ba4) Thanks [@wottpal](https://github.com/wottpal)! - Fix `@polkadot/*` package warnings about cjs/esm duplications. + +## 0.1.0 + +### Minor Changes + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Move `frontend` and `contracts` packages to the root level + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`7a41afe`](https://github.com/scio-labs/inkathon/commit/7a41afe1e7c2f45b6d3972760c173a4a2197c643) Thanks [@wottpal](https://github.com/wottpal)! - Add contributor guidelines at `CONTRIBUTING.md`. + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`3598618`](https://github.com/scio-labs/inkathon/commit/3598618f87d788ec51964167557210ed8b659797) Thanks [@wottpal](https://github.com/wottpal)! - Major README.md overhaul & improvements + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Switch from `husky` to `simple-git-hooks` pre-commit hooks + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`07d8381`](https://github.com/scio-labs/inkathon/commit/07d83819c48f4aaa129ccc3d27929767b916c93d) Thanks [@wottpal](https://github.com/wottpal)! - Add compatability for using yarn (stable only, not classic v1) as the package manager. Note: npm is still not compatible as it lacks support for the workspace import protocol. + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Auto-create `.env.local` files upon first package install if non-existent + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964) Thanks [@wottpal](https://github.com/wottpal)! - Setup changeset integration for version, release, and changelog management. + +- [#30](https://github.com/scio-labs/inkathon/pull/30) [`bda4108`](https://github.com/scio-labs/inkathon/commit/bda4108c9aac8234bdb5989caea0daa8d12f46fb) Thanks [@wottpal](https://github.com/wottpal)! - Change `@…` local import path shortcut to `@/…` (create-next-app default). + +### Patch Changes + +- Updated dependencies [[`cf04f67`](https://github.com/scio-labs/inkathon/commit/cf04f671c06276ffc51e33c1e38c181173227d75), [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964), [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964), [`7a41afe`](https://github.com/scio-labs/inkathon/commit/7a41afe1e7c2f45b6d3972760c173a4a2197c643), [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964), [`3598618`](https://github.com/scio-labs/inkathon/commit/3598618f87d788ec51964167557210ed8b659797), [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964), [`07d8381`](https://github.com/scio-labs/inkathon/commit/07d83819c48f4aaa129ccc3d27929767b916c93d), [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964), [`1839164`](https://github.com/scio-labs/inkathon/commit/183916440fb3043d06c1fd603aba923eb21a5964)]: + - @inkathon/contracts@0.1.0 diff --git a/frontend/components.json b/frontend/components.json new file mode 100644 index 0000000..9990aa4 --- /dev/null +++ b/frontend/components.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "default", + "rsc": true, + "tsx": true, + "tailwind": { + "config": "tailwind.config.ts", + "css": "src/app/globals.css", + "baseColor": "zinc", + "cssVariables": true + }, + "aliases": { + "components": "@/components", + "utils": "@/utils/cn" + } +} diff --git a/frontend/next.config.js b/frontend/next.config.js new file mode 100644 index 0000000..b4bb55b --- /dev/null +++ b/frontend/next.config.js @@ -0,0 +1,25 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +/* eslint-env node */ +// @ts-check + +/** + * @type {import('next').NextConfig} + **/ +const nextConfig = { + reactStrictMode: true, + // Fix for warnings about cjs/esm package duplication + // See: https://github.com/polkadot-js/api/issues/5636 + transpilePackages: [ + '**@polkadot/**', + '@polkadot/api', + '@polkadot/api-contract', + '@polkadot/extension-dapp', + '@polkadot/extension-inject', + '@polkadot/keyring', + '@polkadot/types', + '@polkadot/util', + '@polkadot/util-crypto', + ], +} + +module.exports = nextConfig diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..4ca3de1 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,76 @@ +{ + "name": "@inkathon/frontend", + "private": true, + "version": "0.4.2", + "scripts": { + "postinstall": "bash postinstall.sh", + "dev": "NODE_ENV=development POLKADOTJS_DISABLE_ESM_CJS_WARNING_FLAG=1 next dev", + "node": "pnpm run -F contracts node", + "dev-and-node": "concurrently \"pnpm dev\" \"pnpm node\" --names \"Next,Node\" --kill-others", + "build": "NODE_ENV=production next build", + "start": "NODE_ENV=production next start", + "type-check": "tsc --pretty --noEmit", + "sync-types": "typesync", + "lint": "prettier . --check && eslint .", + "lint:fix": "prettier . --write && eslint . --fix", + "lint:format": "prettier . --write" + }, + "dependencies": { + "@azns/resolver-core": "^1.6.0", + "@azns/resolver-react": "^1.6.0", + "@hookform/resolvers": "^3.3.4", + "@inkathon/contracts": "workspace:*", + "@polkadot/api": "^10.11.2", + "@polkadot/api-contract": "^10.11.2", + "@polkadot/extension-dapp": "^0.46.6", + "@polkadot/extension-inject": "^0.46.6", + "@polkadot/keyring": "^12.6.2", + "@polkadot/types": "^10.11.2", + "@polkadot/util": "^12.6.2", + "@polkadot/util-crypto": "^12.6.2", + "@radix-ui/react-dropdown-menu": "^2.0.6", + "@radix-ui/react-label": "^2.0.2", + "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-tooltip": "^1.0.7", + "@scio-labs/use-inkathon": "^0.6.3", + "@vercel/analytics": "^1.1.1", + "autoprefixer": "^10.4.16", + "class-variance-authority": "^0.7.0", + "clsx": "^2.1.0", + "geist": "^1.2.0", + "lucide-react": "^0.309.0", + "next": "^14.0.4", + "postcss": "^8.4.33", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-hook-form": "^7.49.3", + "react-hot-toast": "^2.4.1", + "react-icons": "^5.0.1", + "sharp": "^0.33.1", + "spinners-react": "^1.0.7", + "tailwind-merge": "^2.2.0", + "tailwindcss-animate": "^1.0.7", + "use-async-effect": "^2.2.7", + "zod": "^3.22.4" + }, + "devDependencies": { + "@trivago/prettier-plugin-sort-imports": "^4.3.0", + "@types/downloadjs": "^1.4.5", + "@types/eslint": "^8.56.2", + "@types/eslint-config-prettier": "^6.11.3", + "@types/node": "^20.11.0", + "@types/react": "^18.2.47", + "@types/react-dom": "^18.2.18", + "@typescript-eslint/eslint-plugin": "^6.18.1", + "@typescript-eslint/parser": "^6.18.1", + "concurrently": "^8.2.2", + "eslint": "^8.56.0", + "eslint-config-next": "^14.0.4", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-react": "^7.33.2", + "prettier": "^3.1.1", + "prettier-plugin-tailwindcss": "^0.5.11", + "tailwindcss": "^3.4.1", + "typescript": "^5.3.3" + } +} diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 0000000..33ad091 --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/frontend/postinstall.sh b/frontend/postinstall.sh new file mode 100755 index 0000000..4e5a231 --- /dev/null +++ b/frontend/postinstall.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -eu + +# This script creates a default '.env.local' file if it doesn't exist yet. +# More information about environment variables: https://github.com/scio-labs/inkathon#environment-variables + +if [[ ! -e .env.local ]]; then + echo "Creating default '.env.local'…" + CP_CMD=$(command -v cp &> /dev/null && echo "cp" || echo "copy") + $CP_CMD .env.local.example .env.local +else + echo "Great, '.env.local' already exists! Skipping…" +fi diff --git a/frontend/public/icons/azns-icon.svg b/frontend/public/icons/azns-icon.svg new file mode 100644 index 0000000..7c22548 --- /dev/null +++ b/frontend/public/icons/azns-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/frontend/public/icons/github-button.svg b/frontend/public/icons/github-button.svg new file mode 100644 index 0000000..2558614 --- /dev/null +++ b/frontend/public/icons/github-button.svg @@ -0,0 +1,17 @@ + + + github-button + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend/public/icons/github.svg b/frontend/public/icons/github.svg new file mode 100644 index 0000000..eb0a499 --- /dev/null +++ b/frontend/public/icons/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/public/icons/telegram-button.svg b/frontend/public/icons/telegram-button.svg new file mode 100644 index 0000000..d279023 --- /dev/null +++ b/frontend/public/icons/telegram-button.svg @@ -0,0 +1,23 @@ + + + telegram-button + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend/public/icons/vercel-button.svg b/frontend/public/icons/vercel-button.svg new file mode 100644 index 0000000..614f528 --- /dev/null +++ b/frontend/public/icons/vercel-button.svg @@ -0,0 +1,17 @@ + + + vercel-button + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend/public/images/inkathon-logo.png b/frontend/public/images/inkathon-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..6bf77da974ddd84a22fbea6a0862e94340b1b903 GIT binary patch literal 21505 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 JR^PRY{2$e|K~Mky literal 0 HcmV?d00001 diff --git a/frontend/public/images/inkathon-og-banner.jpg b/frontend/public/images/inkathon-og-banner.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ed5b7a215175aa9858f1a35d34068e2ac317140 GIT binary patch literal 152357 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 literal 0 HcmV?d00001 diff --git a/frontend/src/app/components/home-page-title.tsx b/frontend/src/app/components/home-page-title.tsx new file mode 100644 index 0000000..3d8639e --- /dev/null +++ b/frontend/src/app/components/home-page-title.tsx @@ -0,0 +1,97 @@ +import Image from 'next/image' +import Link from 'next/link' +import { AnchorHTMLAttributes, FC } from 'react' + +import githubIcon from 'public/icons/github-button.svg' +import telegramIcon from 'public/icons/telegram-button.svg' +import vercelIcon from 'public/icons/vercel-button.svg' +import inkathonLogo from 'public/images/inkathon-logo.png' + +import { cn } from '@/utils/cn' + +interface StyledIconLinkProps extends AnchorHTMLAttributes { + href: string + className?: string +} + +const StyledIconLink: React.FC = ({ className, children, ...rest }) => ( + + {children} + +) + +export const HomePageTitle: FC = () => { + const title = 'ink!athon' + const desc = 'Full-Stack DApp Boilerplate for ink! Smart Contracts' + const githubHref = 'https://github.com/scio-labs/inkathon' + const deployHref = 'https://github.com/scio-labs/inkathon#deployment-' + const telegramHref = 'https://t.me/inkathon' + + return ( + <> +
+ {/* Logo & Title */} + + ink!athon Logo +

{title}

+ + + {/* Tagline & Lincks */} +

{desc}

+

+ Built by{' '} + + Dennis Zoma + {' '} + &{' '} + + Scio Labs + + . Supported by{' '} + + Aleph Zero + + . +

+ + {/* Github & Vercel Buttons */} +
+ + Github Repository + + + Deploy with Vercel + + + Telegram Group + +
+ +
+
+ + ) +} diff --git a/frontend/src/app/components/home-top-bar.tsx b/frontend/src/app/components/home-top-bar.tsx new file mode 100644 index 0000000..52afee5 --- /dev/null +++ b/frontend/src/app/components/home-top-bar.tsx @@ -0,0 +1,26 @@ +'use client' + +import Link from 'next/link' +import { FC } from 'react' + +import { HiOutlineExternalLink } from 'react-icons/hi' + +export const HomeTopBar: FC = () => { + return ( + <> + +
+ VIDEOβ–Ά +
+
+ Watch the sub0 ink!athon workshop (45 min) + sub0 ink!athon workshop +
+ + + + ) +} diff --git a/frontend/src/app/favicon.ico b/frontend/src/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a0ec94bc788423e0faf8ed1fd1bc97e443ce880d GIT binary patch literal 15086 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 + + + {children} + + + + {!!env.isProduction && } + + + ) +} diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx new file mode 100644 index 0000000..c5a9300 --- /dev/null +++ b/frontend/src/app/page.tsx @@ -0,0 +1,40 @@ +'use client' + +import { useEffect } from 'react' + +import { useInkathon } from '@scio-labs/use-inkathon' +import { toast } from 'react-hot-toast' + +import { HomePageTitle } from '@/app/components/home-page-title' +import { ChainInfo } from '@/components/web3/chain-info' +import { ConnectButton } from '@/components/web3/connect-button' +import { GreeterContractInteractions } from '@/components/web3/greeter-contract-interactions' + +export default function HomePage() { + // Display `useInkathon` error messages (optional) + const { error } = useInkathon() + useEffect(() => { + if (!error) return + toast.error(error.message) + }, [error]) + + return ( + <> +
+ {/* Title */} + + + {/* Connect Wallet Button */} + + +
+ {/* Chain Metadata Information */} + + + {/* Greeter Read/Write Contract Interactions */} + +
+
+ + ) +} diff --git a/frontend/src/app/providers.tsx b/frontend/src/app/providers.tsx new file mode 100644 index 0000000..fb1a52a --- /dev/null +++ b/frontend/src/app/providers.tsx @@ -0,0 +1,21 @@ +'use client' + +import { PropsWithChildren } from 'react' + +import { getDeployments } from '@/deployments/deployments' +import { UseInkathonProvider } from '@scio-labs/use-inkathon' + +import { env } from '@/config/environment' + +export default function ClientProviders({ children }: PropsWithChildren) { + return ( + + {children} + + ) +} diff --git a/frontend/src/app/toast-config.tsx b/frontend/src/app/toast-config.tsx new file mode 100644 index 0000000..b69a6da --- /dev/null +++ b/frontend/src/app/toast-config.tsx @@ -0,0 +1,35 @@ +import { FC } from 'react' + +import { Toaster } from 'react-hot-toast' + +export const ToastConfig: FC = () => { + return ( + + ) +} diff --git a/frontend/src/components/ui/button.tsx b/frontend/src/components/ui/button.tsx new file mode 100644 index 0000000..006acdb --- /dev/null +++ b/frontend/src/components/ui/button.tsx @@ -0,0 +1,66 @@ +import { Slot } from '@radix-ui/react-slot' +import { cva, type VariantProps } from 'class-variance-authority' +import * as React from 'react' + +import { cn } from '@/utils/cn' +import { Spinner } from './spinner' + +const buttonVariants = cva( + 'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50', + { + variants: { + variant: { + default: 'bg-primary text-primary-foreground hover:bg-primary/90', + destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90', + outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground', + secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80', + ghost: 'hover:bg-accent hover:text-accent-foreground', + link: 'text-primary underline-offset-4 hover:underline', + }, + size: { + default: 'h-10 px-4 py-2', + sm: 'h-9 rounded-md px-3', + lg: 'h-11 rounded-md px-8', + icon: 'h-10 w-10', + }, + }, + defaultVariants: { + variant: 'default', + size: 'default', + }, + }, +) + +export interface ButtonProps + extends React.ButtonHTMLAttributes, + VariantProps { + asChild?: boolean + isLoading?: boolean +} + +const Button = React.forwardRef( + ({ className, variant, size, asChild = false, isLoading, children, ...props }, ref) => { + const Comp = asChild ? Slot : 'button' + + if (isLoading) + return ( + + + {children} + + ) + + return ( + + {children} + + ) + }, +) +Button.displayName = 'Button' + +export { Button, buttonVariants } diff --git a/frontend/src/components/ui/card.tsx b/frontend/src/components/ui/card.tsx new file mode 100644 index 0000000..487d133 --- /dev/null +++ b/frontend/src/components/ui/card.tsx @@ -0,0 +1,80 @@ +import * as React from "react" + +import { cn } from "@/utils/cn" + +const Card = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)) +Card.displayName = "Card" + +const CardHeader = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)) +CardHeader.displayName = "CardHeader" + +const CardTitle = React.forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)) +CardTitle.displayName = "CardTitle" + +const CardDescription = React.forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)) +CardDescription.displayName = "CardDescription" + +const CardContent = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)) +CardContent.displayName = "CardContent" + +const CardFooter = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)) +CardFooter.displayName = "CardFooter" + +export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } + diff --git a/frontend/src/components/ui/dropdown-menu.tsx b/frontend/src/components/ui/dropdown-menu.tsx new file mode 100644 index 0000000..3a4e544 --- /dev/null +++ b/frontend/src/components/ui/dropdown-menu.tsx @@ -0,0 +1,190 @@ +"use client" + +import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu" +import { Check, ChevronRight, Circle } from "lucide-react" +import * as React from "react" + +import { cn } from "@/utils/cn" + +const DropdownMenu = DropdownMenuPrimitive.Root + +const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger + +const DropdownMenuGroup = DropdownMenuPrimitive.Group + +const DropdownMenuPortal = DropdownMenuPrimitive.Portal + +const DropdownMenuSub = DropdownMenuPrimitive.Sub + +const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup + +const DropdownMenuSubTrigger = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef & { + inset?: boolean + } +>(({ className, inset, children, ...props }, ref) => ( + + {children} + + +)) +DropdownMenuSubTrigger.displayName = + DropdownMenuPrimitive.SubTrigger.displayName + +const DropdownMenuSubContent = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, ...props }, ref) => ( + +)) +DropdownMenuSubContent.displayName = + DropdownMenuPrimitive.SubContent.displayName + +const DropdownMenuContent = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, sideOffset = 4, ...props }, ref) => ( + + + +)) +DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName + +const DropdownMenuItem = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef & { + inset?: boolean + } +>(({ className, inset, ...props }, ref) => ( + +)) +DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName + +const DropdownMenuCheckboxItem = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, children, checked, ...props }, ref) => ( + + + + + + + {children} + +)) +DropdownMenuCheckboxItem.displayName = + DropdownMenuPrimitive.CheckboxItem.displayName + +const DropdownMenuRadioItem = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, children, ...props }, ref) => ( + + + + + + + {children} + +)) +DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName + +const DropdownMenuLabel = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef & { + inset?: boolean + } +>(({ className, inset, ...props }, ref) => ( + +)) +DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName + +const DropdownMenuSeparator = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, ...props }, ref) => ( + +)) +DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName + +const DropdownMenuShortcut = ({ + className, + ...props +}: React.HTMLAttributes) => { + return ( + + ) +} +DropdownMenuShortcut.displayName = "DropdownMenuShortcut" + +export { + DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, + DropdownMenuShortcut, DropdownMenuSub, + DropdownMenuSubContent, + DropdownMenuSubTrigger, DropdownMenuTrigger +} + diff --git a/frontend/src/components/ui/form.tsx b/frontend/src/components/ui/form.tsx new file mode 100644 index 0000000..7efbe17 --- /dev/null +++ b/frontend/src/components/ui/form.tsx @@ -0,0 +1,172 @@ +import * as LabelPrimitive from "@radix-ui/react-label" +import { Slot } from "@radix-ui/react-slot" +import * as React from "react" +import { + Controller, + ControllerProps, + FieldPath, + FieldValues, + FormProvider, + useFormContext, +} from "react-hook-form" + +import { Label } from "@/components/ui/label" +import { cn } from "@/utils/cn" + +const Form = FormProvider + +type FormFieldContextValue< + TFieldValues extends FieldValues = FieldValues, + TName extends FieldPath = FieldPath +> = { + name: TName +} + +const FormFieldContext = React.createContext( + {} as FormFieldContextValue +) + +const FormField = < + TFieldValues extends FieldValues = FieldValues, + TName extends FieldPath = FieldPath +>({ + ...props +}: ControllerProps) => { + return ( + + + + ) +} + +const useFormField = () => { + const fieldContext = React.useContext(FormFieldContext) + const itemContext = React.useContext(FormItemContext) + const { getFieldState, formState } = useFormContext() + + const fieldState = getFieldState(fieldContext.name, formState) + + if (!fieldContext) { + throw new Error("useFormField should be used within ") + } + + const { id } = itemContext + + return { + id, + name: fieldContext.name, + formItemId: `${id}-form-item`, + formDescriptionId: `${id}-form-item-description`, + formMessageId: `${id}-form-item-message`, + ...fieldState, + } +} + +type FormItemContextValue = { + id: string +} + +const FormItemContext = React.createContext( + {} as FormItemContextValue +) + +const FormItem = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => { + const id = React.useId() + + return ( + +
+ + ) +}) +FormItem.displayName = "FormItem" + +const FormLabel = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, ...props }, ref) => { + const { error, formItemId } = useFormField() + + return ( +