Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jvaleskadevs authored Mar 26, 2023
1 parent 5c0b0e9 commit b00d677
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ type configDataType = {
contractAddress: string,
tokenId?: string,
amount?: number,
attributes?: { value: string, trait_type: string } [],
},
}[];
```
Expand Down Expand Up @@ -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.)
};
}[]
```
Expand Down

0 comments on commit b00d677

Please sign in to comment.