TransactionEnvelopeEip7702.validate
Validates a TransactionEnvelopeEip7702.TransactionEnvelopeEip7702
. Returns true
if the envelope is valid, false
otherwise.
Imports
Named
import { TransactionEnvelopeEip7702 } from 'ox'
Examples
import { TransactionEnvelopeEip7702, Value } from 'ox'
const valid = TransactionEnvelopeEip7702.validate({
authorizationList: [],
maxFeePerGas: 2n ** 256n - 1n + 1n,
chainId: 1,
to: '0x0000000000000000000000000000000000000000',
value: Value.fromEther('1'),
})
false
Definition
function validate(
envelope: PartialBy<TransactionEnvelopeEip7702, 'type'>,
): boolean
Source: src/TransactionEnvelopeEip7702.ts
Parameters
envelope
- Type:
PartialBy<TransactionEnvelopeEip7702, 'type'>
The transaction envelope to validate.
Return Type
boolean