Skip to content

Commit

Permalink
Change nftImage to imageURL in TokenData
Browse files Browse the repository at this point in the history
  • Loading branch information
debajitr committed Jan 30, 2024
1 parent 0efde78 commit 4a0ed83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transak/transak-sdk",
"version": "2.1.2",
"version": "2.1.3",
"description": "Transak SDK that allows you to easily integrate fiat on/off ramp",
"type": "module",
"types": "lib/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/Types/query-params.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ type WalletAddresses = {

type NFT = {
tokenID: string[];
imageURL?: string;
nftName?: string;
collectionAddress: string;
price: number[];
quantity: number;
nftType: string;
nftName?: string;
imageURL?: string;
};

type ColorMode = 'LIGHT' | 'DARK';
Expand All @@ -48,7 +48,7 @@ type TokenData = {
marketplace: string;
normalizeRoyalties: boolean;
nftName?: string;
nftImage?: string;
imageURL?: string;
};

export type QueryParams = {
Expand Down

0 comments on commit 4a0ed83

Please sign in to comment.