From 8b34c46fe60649fb453589e2f516ec296ee79a26 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 13 Apr 2024 08:00:12 +0200 Subject: [PATCH 1/6] fix typos --- templates/tutorial.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/tutorial.mdx b/templates/tutorial.mdx index 31826565d2d..d6d5f387428 100644 --- a/templates/tutorial.mdx +++ b/templates/tutorial.mdx @@ -13,7 +13,7 @@ Fill out the fields in the frontmatter above. - Section: What section of the top-nav this page appears in dataFeeds, vrf, automation, chainlinkFunctions, nodeOperator - Title: The title appearing at the top of the page -- Whats Next: A list of pages to include in the What's Next section. Preferably imperative sentences describing the goal of the next page. +- What's Next: A list of pages to include in the What's Next section. Preferably imperative sentences describing the goal of the next page. \*/} {/* Import components when necessary */} @@ -23,7 +23,7 @@ import { YouTube } from "@astro-community/astro-embed-youtube" {/* Add a brief description of the tutorial that leads into the Overview section */} This tutorial shows you how to build an example application. -{/* Add an overview description of the tutorial with significant conceptual information, architecture information, and descriptive diagrams. This section describes what the reader will build in the tutorial, what the completed tutorial demonstrates, and what uses cases might be enabled by adopting the technology behind the tutorial. */} +{/* Add an overview description of the tutorial with significant conceptual information, architecture information, and descriptive diagrams. This section describes what the reader will build in the tutorial, what the completed tutorial demonstrates, and what use cases might be enabled by adopting the technology behind the tutorial. */} ## Overview From 273be04e2b5591327c38a7db8767bd3687544996 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 13 Apr 2024 08:02:12 +0200 Subject: [PATCH 2/6] fix typo --- src/content/quickstarts/batch-reveal.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/quickstarts/batch-reveal.mdx b/src/content/quickstarts/batch-reveal.mdx index b1c9353b109..72fecbea4de 100644 --- a/src/content/quickstarts/batch-reveal.mdx +++ b/src/content/quickstarts/batch-reveal.mdx @@ -97,7 +97,7 @@ Before you start this tutorial, complete the following items: style="max-width: 70%;" /> -1. In the subscription manager, click **Add Consumer** and paste the address in the blank field. Click **Add Consumer** and wait until you receive confirmation. Your consumer should no be added to your subscription. _Note_: you may have to refresh the page to see the consumer. +1. In the subscription manager, click **Add Consumer** and paste the address in the blank field. Click **Add Consumer** and wait until you receive confirmation. Your consumer should not be added to your subscription. _Note_: you may have to refresh the page to see the consumer. Date: Sat, 13 Apr 2024 08:03:02 +0200 Subject: [PATCH 3/6] fix typ --- src/content/quickstarts/chainlink-demo-app.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/quickstarts/chainlink-demo-app.mdx b/src/content/quickstarts/chainlink-demo-app.mdx index ac10571dbaf..4def4a1c4f9 100644 --- a/src/content/quickstarts/chainlink-demo-app.mdx +++ b/src/content/quickstarts/chainlink-demo-app.mdx @@ -29,7 +29,7 @@ See the code on [GitHub](https://github.com/smartcontractkit/chainlink-fullstack ## Objective -This guide shows you how to deploy a demo app, which requires several steps common to Web3 apps. You will learn the basics for how to use the Hardhat development environment and the Next.js frontend framework. +This guide shows you how to deploy a demo app, which requires several steps common to Web3 apps. You will learn the basics of how to use the Hardhat development environment and the Next.js frontend framework. ## Before you begin @@ -52,7 +52,7 @@ Before you start this tutorial, complete the following items: git clone https://github.com/smartcontractkit/chainlink-fullstack && cd chainlink-fullstack ``` -1. Inititalize the submodule: +1. Initialize the submodule: ```bash git submodule init From 8f4c6ccd20384d287763924c1a9756e918943333 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 13 Apr 2024 08:05:06 +0200 Subject: [PATCH 4/6] fix typos --- src/content/quickstarts/deploy-your-first-contract.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/quickstarts/deploy-your-first-contract.mdx b/src/content/quickstarts/deploy-your-first-contract.mdx index 9086eb2adcf..20d856896f7 100644 --- a/src/content/quickstarts/deploy-your-first-contract.mdx +++ b/src/content/quickstarts/deploy-your-first-contract.mdx @@ -15,7 +15,7 @@ You can write your first smart contract and run it in your browser without any k ## Objective -You will create and deploy your a simple "Helo world" smart contract using the following process: +You will create and deploy a simple "Hello world" smart contract using the following process: 1. **Write:** Write a contract to define how the contract functions, what data it can store, what other contracts it interacts with, and what external APIs it might call. From 8a9a3acbf603f2e7900e408da1ac0f9b00296977 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 13 Apr 2024 08:05:53 +0200 Subject: [PATCH 5/6] fix typo --- src/content/quickstarts/dev3-chainlink-sdk.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/quickstarts/dev3-chainlink-sdk.mdx b/src/content/quickstarts/dev3-chainlink-sdk.mdx index 57a55ce6cad..700b230e144 100644 --- a/src/content/quickstarts/dev3-chainlink-sdk.mdx +++ b/src/content/quickstarts/dev3-chainlink-sdk.mdx @@ -124,7 +124,7 @@ You can find all available feeds by visiting [data.chain.link](https://data.chai ## Reading data -The data is returned in the form of an RoundDataModel object: +The data is returned in the form of a RoundDataModel object: ```ts export interface RoundDataModel { From 9f7f761ef69e9dd55c862275e5198f873a7e7c9f Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sat, 13 Apr 2024 08:08:46 +0200 Subject: [PATCH 6/6] fix typo --- src/content/quickstarts/giveaway.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/quickstarts/giveaway.mdx b/src/content/quickstarts/giveaway.mdx index c36300e72b0..2999c1851df 100644 --- a/src/content/quickstarts/giveaway.mdx +++ b/src/content/quickstarts/giveaway.mdx @@ -18,7 +18,7 @@ The Giveaway Manager app is a highly configurable proof of concept for provably- ## Objective -In this tutorial, you will deploy a local user interface to enable giveaways using Chainlink VRFv2 Direct Funding. The UI was designed to run simple drawings and giveaways with just a CSV list of participants. Chainlink Automation provisioning and setup is also covered to enable timed-based, dynamic drawings. +In this tutorial, you will deploy a local user interface to enable giveaways using Chainlink VRFv2 Direct Funding. The UI was designed to run simple drawings and giveaways with just a CSV list of participants. Chainlink Automation provisioning and setup are also covered to enable timed-based, dynamic drawings. You can use this to run: