Comparing version 3.5.0 to 3.6.0
@@ -10,9 +10,9 @@ import { Subject } from 'rxjs'; | ||
export interface ContractCall { | ||
contractType?: string; | ||
contractAddress?: string; | ||
methodName: string; | ||
params: Record<string, unknown>; | ||
contractAddress?: string; | ||
contractType?: string; | ||
contractDecimals: number; | ||
contractName: string; | ||
decimalValue: string; | ||
contractDecimals?: number; | ||
decimalValue?: string; | ||
} | ||
@@ -41,10 +41,10 @@ export interface CommonTransactionData { | ||
asset: string; | ||
blockHash: string; | ||
blockNumber: number; | ||
contractCall: ContractCall; | ||
internalTransactions: InternalTransaction[]; | ||
netBalanceChanges: NetBalanceChange[]; | ||
blockHash: string | null; | ||
blockNumber: number | null; | ||
contractCall?: ContractCall; | ||
internalTransactions?: InternalTransaction[]; | ||
netBalanceChanges?: NetBalanceChange[]; | ||
to: string; | ||
from: string; | ||
gas: string; | ||
gas: number; | ||
gasPrice: string; | ||
@@ -57,3 +57,3 @@ gasUsed?: string; | ||
s: string; | ||
transactionIndex: number; | ||
transactionIndex?: number; | ||
value: string; | ||
@@ -60,0 +60,0 @@ startTime?: number; |
{ | ||
"name": "bnc-sdk", | ||
"version": "3.5.0", | ||
"version": "3.6.0", | ||
"description": "SDK to connect to the blocknative backend via a websocket connection", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
573787
18241