Skip to content

Commit

Permalink
Change contractID to contractId
Browse files Browse the repository at this point in the history
  • Loading branch information
debajitr committed Jan 12, 2024
1 parent 17997ea commit 0efde78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.1",
"version": "2.1.2",
"description": "Transak SDK that allows you to easily integrate fiat on/off ramp",
"type": "module",
"types": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/Types/query-params.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ type WalletAddresses = {
};

type NFT = {
tokenID: string[];
imageURL?: string;
nftName?: string;
collectionAddress: string;
tokenID: string[] | number[];
price: number[];
quantity: number;
nftType: string;
Expand Down Expand Up @@ -102,6 +102,6 @@ export type QueryParams = {
isTransakOne?: boolean;
sourceTokenData?: SourceTokenData[];
cryptoCurrencyData?: CryptoCurrencyData[];
contractID?: string;
contractId?: string;
tokenData?: TokenData[];
};

0 comments on commit 0efde78

Please sign in to comment.