-
Notifications
You must be signed in to change notification settings - Fork 69
@liquality.evm.EvmTypes
Krasimir Raykov edited this page Mar 30, 2022
·
3 revisions
@liquality/evm.EvmTypes
Ƭ EthereumFeeData: FeeType
& { gasPrice?
: null
| number
; maxFeePerGas?
: null
| number
; maxPriorityFeePerGas?
: null
| number
}
Ƭ EthereumTransactionRequest: TransactionRequest
& { chainId?
: number
; from?
: AddressType
; gasLimit?
: number
; gasPrice?
: number
; maxFeePerGas?
: number
; maxPriorityFeePerGas?
: number
; nonce?
: number
; type?
: number
}