├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── tutorial_issue.md │ └── tutorial_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── checks.yml │ └── secrets_scanner.yaml ├── .gitignore ├── .markdownlint.json ├── README.md ├── community-tutorials.png ├── cspell-zksync.txt ├── cspell.json ├── package.json ├── tutorials.json ├── tutorials ├── README.md ├── TUTORIAL_TEMPLATE.md ├── the-graph │ ├── TUTORIAL.md │ └── code │ │ └── pepe_abi.json ├── web3modal │ ├── TUTORIAL.md │ └── code │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── page.module.css │ │ │ └── page.tsx │ │ └── context │ │ │ └── Web3Modal.tsx │ │ └── tsconfig.json ├── zkSync-RedStone-stable-price-marketplace-tutorial │ ├── TUTORIAL.md │ └── code │ │ ├── .env.example │ │ ├── LICENSE │ │ ├── README.md │ │ ├── contracts │ │ ├── ExampleNFT.sol │ │ ├── Marketplace.sol │ │ └── StableMarketplace.sol │ │ ├── deploy │ │ └── deploy.ts │ │ ├── docs │ │ └── img │ │ │ ├── my-nfts.png │ │ │ ├── orders.png │ │ │ ├── redstone-requests.png │ │ │ └── stable-marketplace-app.png │ │ ├── hardhat.config.ts │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── nft-icon.png │ │ │ ├── nft-in-cart-icon.png │ │ │ └── redstone-logo.png │ │ └── index.html │ │ ├── src │ │ ├── components │ │ │ ├── App.tsx │ │ │ └── Card.tsx │ │ ├── config │ │ │ ├── marketplace-abi.json │ │ │ ├── nft-abi.json │ │ │ └── zkSyncTestnet-addresses.json │ │ ├── constants.ts │ │ ├── core │ │ │ └── blockchain.ts │ │ ├── index.tsx │ │ └── styles.scss │ │ ├── test │ │ ├── common.ts │ │ ├── example-nft.test.ts │ │ ├── marketplace.test.ts │ │ └── stable-marketplace.test.ts │ │ ├── tsconfig.json │ │ └── yarn.lock └── zksync-cli-quickstart │ ├── TUTORIAL.md │ └── code │ ├── .env.example │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── contracts │ └── Greeter.sol │ ├── deploy │ ├── deploy-greeter.ts │ └── use-greeter.ts │ ├── hardhat.config.ts │ ├── package.json │ ├── test │ └── main.test.ts │ └── yarn.lock └── yarn.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @matter-labs/devxp -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tutorial_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.github/ISSUE_TEMPLATE/tutorial_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tutorial_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.github/ISSUE_TEMPLATE/tutorial_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/secrets_scanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.github/workflows/secrets_scanner.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/README.md -------------------------------------------------------------------------------- /community-tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/community-tutorials.png -------------------------------------------------------------------------------- /cspell-zksync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/cspell-zksync.txt -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/cspell.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/package.json -------------------------------------------------------------------------------- /tutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials.json -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/TUTORIAL_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/TUTORIAL_TEMPLATE.md -------------------------------------------------------------------------------- /tutorials/the-graph/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/the-graph/TUTORIAL.md -------------------------------------------------------------------------------- /tutorials/the-graph/code/pepe_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/the-graph/code/pepe_abi.json -------------------------------------------------------------------------------- /tutorials/web3modal/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/TUTORIAL.md -------------------------------------------------------------------------------- /tutorials/web3modal/code/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /tutorials/web3modal/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/.gitignore -------------------------------------------------------------------------------- /tutorials/web3modal/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/README.md -------------------------------------------------------------------------------- /tutorials/web3modal/code/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/next.config.js -------------------------------------------------------------------------------- /tutorials/web3modal/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/package.json -------------------------------------------------------------------------------- /tutorials/web3modal/code/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/pnpm-lock.yaml -------------------------------------------------------------------------------- /tutorials/web3modal/code/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/app/favicon.ico -------------------------------------------------------------------------------- /tutorials/web3modal/code/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/app/globals.css -------------------------------------------------------------------------------- /tutorials/web3modal/code/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/app/layout.tsx -------------------------------------------------------------------------------- /tutorials/web3modal/code/src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/app/page.module.css -------------------------------------------------------------------------------- /tutorials/web3modal/code/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/app/page.tsx -------------------------------------------------------------------------------- /tutorials/web3modal/code/src/context/Web3Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/src/context/Web3Modal.tsx -------------------------------------------------------------------------------- /tutorials/web3modal/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/web3modal/code/tsconfig.json -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/TUTORIAL.md -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/.env.example: -------------------------------------------------------------------------------- 1 | WALLET_PRIVATE_KEY= 2 | -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/LICENSE -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/README.md -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/contracts/ExampleNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/contracts/ExampleNFT.sol -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/contracts/Marketplace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/contracts/Marketplace.sol -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/contracts/StableMarketplace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/contracts/StableMarketplace.sol -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/deploy/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/deploy/deploy.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/my-nfts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/my-nfts.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/orders.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/redstone-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/redstone-requests.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/stable-marketplace-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/docs/img/stable-marketplace-app.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/hardhat.config.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/package.json -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/favicon.ico -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/nft-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/nft-icon.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/nft-in-cart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/nft-in-cart-icon.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/redstone-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/img/redstone-logo.png -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/public/index.html -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/components/App.tsx -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/components/Card.tsx -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/marketplace-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/marketplace-abi.json -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/nft-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/nft-abi.json -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/zkSyncTestnet-addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/config/zkSyncTestnet-addresses.json -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/constants.ts: -------------------------------------------------------------------------------- 1 | export const zkSyncLocalTestnetChainId = 270; 2 | -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/core/blockchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/core/blockchain.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/index.tsx -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/src/styles.scss -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/common.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/example-nft.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/example-nft.test.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/marketplace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/marketplace.test.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/stable-marketplace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/test/stable-marketplace.test.ts -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/tsconfig.json -------------------------------------------------------------------------------- /tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zkSync-RedStone-stable-price-marketplace-tutorial/code/yarn.lock -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/TUTORIAL.md -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/.env.example: -------------------------------------------------------------------------------- 1 | WALLET_PRIVATE_KEY= 2 | -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/.gitignore -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/LICENSE -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/README.md -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/contracts/Greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/contracts/Greeter.sol -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/deploy/deploy-greeter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/deploy/deploy-greeter.ts -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/deploy/use-greeter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/deploy/use-greeter.ts -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/hardhat.config.ts -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/package.json -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/test/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/test/main.test.ts -------------------------------------------------------------------------------- /tutorials/zksync-cli-quickstart/code/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/tutorials/zksync-cli-quickstart/code/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkSync-Community-Hub/tutorials/HEAD/yarn.lock --------------------------------------------------------------------------------