From 9ed72b357f380f70c2ed6807e3c4ded59ba29128 Mon Sep 17 00:00:00 2001 From: Dennis <10233439+idea404@users.noreply.github.com> Date: Mon, 9 Oct 2023 14:02:42 +0200 Subject: [PATCH] feat: tutorials.json descriptions --- README.md | 2 +- tutorials.json | 31 +++++++++++++++++++++++-------- 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4da2655..b9c7a13 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ For tutorials created and maintained by the zkSync team, [check out this reposit "", "" ], - "level": "", // beginner, intermediate or expert + "time": "", // time taken to complete tutorial in hours, e.g. "1 hour", "2 to 4 hours" "author": "", // person, project, or company "slug": "" // the tutorial folder name inside `/tutorials` } diff --git a/tutorials.json b/tutorials.json index 18a2788..92252e4 100644 --- a/tutorials.json +++ b/tutorials.json @@ -1,12 +1,27 @@ [ { - "title": "", - "description": "", - "tags": [ - "" - ], - "level": "", - "author": "", - "slug": "" + "title": "zkSync Era quickstart with zksync-cli", + "description": + "Use the zksync-cli to deploy your first smart contract to zkSync Era testnet.", + "tags": ["cli", "testnet", "smart contract"], + "time": "1 hour", + "author": "A. Ufano", + "slug": "zksync-cli-quickstart" + }, + { + "title": "Use Redstone to feed offchain data to smart contracts", + "description": "By the end of this tutorial you will understand how to integrate your dApp built on zkSync with RedStone oracles.", + "tags": ["oracle", "redstone", "smart contract"], + "time": "2 to 3 hours", + "author": "C. Haliniarz", + "slug": "zkSync-RedStone-stable-price-marketplace-tutorial" + }, + { + "title": "Deploy a Subgraph Tracking a Specific Address on zkSync", + "description": "learn how to deploy a subgraph that tracks a specific address on zkSync Era mainnet. Deploying graphs is a great way to query data from network historically and in real-time.", + "tags": ["graph", "indexer", "subgraph"], + "time": "1 hour", + "author": "D. Huisman", + "slug": "the-graph" } ]