Skip to content

Commit

Permalink
Merge pull request #100 from quiknode-labs/update_qn_getWalletTokenTr…
Browse files Browse the repository at this point in the history
…ansactions

Update core addon qn_get_walletTokenTransactions response type
  • Loading branch information
Zlerp authored Sep 18, 2023
2 parents 9109ce0 + 8bd9ae4 commit 36e70ea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/libs/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"directory": "packages/libs/sdk"
},
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"main": "./cjs/index.js",
"module": "./esm/src/index.js",
"types": "./index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,19 @@ export type RPCFullTokenMetadata = {
};

export type RPCTokenTransaction = {
name: string | null;
symbol: string | null;
decimals: string | null;
address: string;
quantityIn: string;
quantityOut: string;
blockNumber: string;
transactionHash: string;
toAddress: string;
fromAddress: string;
logIndex: number;
type: string;
timestamp: string;
totalBalance: string;
receivedTokenContractAddress: string | null;
sentTokenContractAddress: string | null;
sentAmount: string;
receivedAmount: string;
decimalSentAmount: string;
decimalReceivedAmount: string;
};

export type QNGetWalletTokenTransactionsResult = {
Expand Down

0 comments on commit 36e70ea

Please sign in to comment.