From b00d6775872a631ef6bc851922ea5d669c2e686b Mon Sep 17 00:00:00 2001 From: jvaleskadevs <85419347+jvaleskadevs@users.noreply.github.com> Date: Sun, 26 Mar 2023 15:43:20 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 91476fa..50925f6 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ type configDataType = { contractAddress: string, tokenId?: string, amount?: number, + attributes?: { value: string, trait_type: string } [], }, }[]; ``` @@ -167,7 +168,7 @@ configDataType = { contractAddress: string; // contractAddress of Token or NFT tokenId?: string; // Token Id of the NFT (if req.) amount?: number; // Amount of tokens (if req.) - attributes?: { value: string, trait_type: string }; // Array of NFT Attributes (if req.) + attributes?: { value: string, trait_type: string } []; // Array of NFT Attributes (if req.) }; }[] ```