From 871a0dcdfa4b6477c6aa039e0e8b11f3c6cf4ed1 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 27 Aug 2024 18:43:38 +0300 Subject: [PATCH 1/4] fix CreateDrop.mdx --- docs/pages/packages/drops/CreateDrop.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/packages/drops/CreateDrop.mdx b/docs/pages/packages/drops/CreateDrop.mdx index 12b4af2..b99e189 100644 --- a/docs/pages/packages/drops/CreateDrop.mdx +++ b/docs/pages/packages/drops/CreateDrop.mdx @@ -2,7 +2,7 @@ Using `DropsClient` to [setup a Drop](https://poap.zendesk.com/hc/en-us/articles/9702718846989-How-do-I-set-up-a-POAP-Drop) is straightforward, there is no need of being authenticated with an email and -the only requiriments are having the API key. +the only requirements are having the API key. ```typescript import fsPromises from 'fs/promises'; From dd74b8c7fa86aab6157eab73331473543612a3ce Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 27 Aug 2024 18:43:55 +0300 Subject: [PATCH 2/4] fix FetchDrops.mdx --- docs/pages/packages/drops/FetchDrops.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/packages/drops/FetchDrops.mdx b/docs/pages/packages/drops/FetchDrops.mdx index 8a4b053..9375994 100644 --- a/docs/pages/packages/drops/FetchDrops.mdx +++ b/docs/pages/packages/drops/FetchDrops.mdx @@ -1,6 +1,6 @@ # Fetch Drops -When retrieving Drops we have to paginated using `offset` and `limit`. But besides we can sort the +When retrieving Drops we have to paginate using `offset` and `limit`. But besides we can sort the results and filter them by many options. ```typescript From 6403a89eb0e7f14fc1f90ba4f8a06236da423f32 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 27 Aug 2024 18:45:22 +0300 Subject: [PATCH 3/4] fix EmailReservation.mdx --- docs/pages/packages/poaps/EmailReservation.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/packages/poaps/EmailReservation.mdx b/docs/pages/packages/poaps/EmailReservation.mdx index 2ac0a28..c2abcf9 100644 --- a/docs/pages/packages/poaps/EmailReservation.mdx +++ b/docs/pages/packages/poaps/EmailReservation.mdx @@ -1,8 +1,8 @@ # Email Reservation A POAP can be reserved with an email where to receive the instructions to mint -the it to the blockchain in the future. The email could be not be send in cases -that another email is send in their place or the collector knows already how to +it to the blockchain in the future. The email could not be sent in cases +that another email is sent in their place or the collector knows already how to mint it afterwards. ```typescript From 489a37f18f4098ab870f1fb42e411427b69d9499 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 27 Aug 2024 18:46:17 +0300 Subject: [PATCH 4/4] fix Mint.mdx --- docs/pages/packages/poaps/Mint.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/packages/poaps/Mint.mdx b/docs/pages/packages/poaps/Mint.mdx index 86f1a3e..92340aa 100644 --- a/docs/pages/packages/poaps/Mint.mdx +++ b/docs/pages/packages/poaps/Mint.mdx @@ -35,7 +35,7 @@ const poap: POAP = ( ## Sync -All the minting process can done automatically by `PoapsClient`. +All the minting processes can done automatically by `PoapsClient`. ```typescript import { POAP } from '@poap-xyz/poaps';