@jpmonette/bscscan
Advanced tools
Comparing version 0.2.1 to 0.2.2
{ | ||
"name": "@jpmonette/bscscan", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Explore the Binance Smart Chain using TypeScript and JavaScript", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/jpmonette/bscscan-ts", |
@@ -36,3 +36,3 @@ import { BEP20, ERC721 } from "."; | ||
export type GetTxListResponse = { | ||
export type GetTxListResponse = Array<{ | ||
blockHash: string; | ||
@@ -56,7 +56,7 @@ blockNumber: string; | ||
value: string; | ||
}; | ||
}>; | ||
export type GetTxListInternalRequest = GetTxListRequest; | ||
export type GetTxListInternalResponse = { | ||
export type GetTxListInternalResponse = Array<{ | ||
blockNumber: string; | ||
@@ -76,3 +76,3 @@ contractAddress: string; | ||
value: string; | ||
}; | ||
}>; | ||
@@ -79,0 +79,0 @@ export type GetTokenTxRequest = GetTxListRequest & { |
146488
97