2
0
mirror of synced 2025-02-24 12:08:10 +00:00

Allow nonce to be a BigNumber (#228).

This commit is contained in:
Richard Moore 2018-12-12 16:56:50 -05:00
parent 918b66bc2e
commit bcba17a9e7
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295

View File

@ -78,7 +78,7 @@ export interface TransactionReceipt {
export type TransactionRequest = {
to?: string | Promise<string>,
from?: string | Promise<string>,
nonce?: number | string | Promise<number | string>,
nonce?: BigNumberish | Promise<BigNumberish>,
gasLimit?: BigNumberish | Promise<BigNumberish>,
gasPrice?: BigNumberish | Promise<BigNumberish>,