Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: tutorials.json descriptions #15

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
}
Expand Down
31 changes: 23 additions & 8 deletions tutorials.json
Original file line number Diff line number Diff line change
@@ -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"
}
]