From aa920fcc895f753d36e4ec97b84e9fee064b9447 Mon Sep 17 00:00:00 2001 From: iwantanode <87604944+tudorpintea999@users.noreply.github.com> Date: Sat, 2 Dec 2023 18:21:40 +0200 Subject: [PATCH 1/3] fix typo collection_parser.md Signed-off-by: iwantanode <87604944+tudorpintea999@users.noreply.github.com> --- docs/contributing/collection_parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/collection_parser.md b/docs/contributing/collection_parser.md index 6ca88c1..753991b 100644 --- a/docs/contributing/collection_parser.md +++ b/docs/contributing/collection_parser.md @@ -171,7 +171,7 @@ Each of these fields can be mapped into the standard metadata format: --- -And this is how it would look programatically: +And this is how it would look programmatically: ```python class ENSParser(CollectionParser): From 09003233f7c25ae2087bb3241f6f3be6fc4fb58a Mon Sep 17 00:00:00 2001 From: iwantanode <87604944+tudorpintea999@users.noreply.github.com> Date: Sat, 2 Dec 2023 18:22:53 +0200 Subject: [PATCH 2/3] fix typo schema_parser.md Signed-off-by: iwantanode <87604944+tudorpintea999@users.noreply.github.com> --- docs/contributing/schema_parser.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributing/schema_parser.md b/docs/contributing/schema_parser.md index b56fcaa..5ba8061 100644 --- a/docs/contributing/schema_parser.md +++ b/docs/contributing/schema_parser.md @@ -79,7 +79,7 @@ This should return the following data from the IPFS Gateway: ```json { "name": "Obligatory Song About the iPhone 5", - "description": "A new song, everyday, forever. Song A Day is an ever-growing collection of unique songs created by Jonathan Mann, starting January 1st, 2009. Each NFT is a 1:1 representation of that days song, and grants access to SongADAO, the orgninzation that controls all the rights and revenue to the songs. Own a piece of the collection to help govern the future of music. http://songaday.world", + "description": "A new song, everyday, forever. Song A Day is an ever-growing collection of unique songs created by Jonathan Mann, starting January 1st, 2009. Each NFT is a 1:1 representation of that days song, and grants access to SongADAO, the organization that controls all the rights and revenue to the songs. Own a piece of the collection to help govern the future of music. http://songaday.world", "token_id": 1351, "image": "ipfs://QmX2ZdS13khEYqpC8Jz4nm7Ub3He3g5Ws22z3QhunC2k58/1351", "animation_url": "ipfs://QmVHjFbGEqXfYuoPpJR4vmRacGM29KR5UenqbidJex8muB/1351", @@ -109,7 +109,7 @@ This should return the following data from the IPFS Gateway: The next step is to convert the metadata into the [standardized metadata format](../models/metadata.md). -Each field in the new metadata format should either map a field in the standardized metadata format or be added as an `MetadataField` under the `additional_fields` property. +Each field in the new metadata format should either map a field in the standardized metadata format or be added as a `MetadataField` under the `additional_fields` property. In the case of Song a Day, the metadata format has the following fields: @@ -121,7 +121,7 @@ In the case of Song a Day, the metadata format has the following fields: "image": "Image media asset", "animation_url": "Media asset for videos", "external_url": "External linking", - "youtube_url": "Video on hosted on Youtube" + "youtube_url": "Video hosted on Youtube" } ``` From 599df3006b1f66c7cc6b2bb49c52249be76b1611 Mon Sep 17 00:00:00 2001 From: iwantanode <87604944+tudorpintea999@users.noreply.github.com> Date: Sat, 2 Dec 2023 18:24:15 +0200 Subject: [PATCH 3/3] fix typo concepts.md Signed-off-by: iwantanode <87604944+tudorpintea999@users.noreply.github.com> --- docs/concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts.md b/docs/concepts.md index 4f221fd..f36e736 100644 --- a/docs/concepts.md +++ b/docs/concepts.md @@ -60,7 +60,7 @@ metadata = pipeline.run([token])[0] By default, the pipeline uses `https://cloudflare-eth.com` as the provider for the `ContractCaller`. This is a free Ethereum RPC provider, which means that it is very easy to exceed the rate-limit. -The code below illustrates how to use a custom RPC provider to prevent getting rate-limited if token uris need to be retireved from the contract: +The code below illustrates how to use a custom RPC provider to prevent getting rate-limited if token uris need to be retrieved from the contract: ```python from offchain import MetadataPipeline