Skip to content

TransactionEnvelopeEip1559.assert

Asserts a TransactionEnvelopeEip1559.TransactionEnvelopeEip1559 is valid.

Imports

Named
import { TransactionEnvelopeEip1559 } from 'ox'

Examples

import { TransactionEnvelopeEip1559, Value } from 'ox'
 
TransactionEnvelopeEip1559.assert({
  maxFeePerGas: 2n ** 256n - 1n + 1n,
  chainId: 1,
  to: '0x0000000000000000000000000000000000000000',
  value: Value.fromEther('1'),
})
FeeCapTooHighError:
The fee cap (`masFeePerGas` = 115792089237316195423570985008687907853269984665640564039457584007913 gwei) cannot be
higher than the maximum allowed value (2^256-1).

Definition

function assert(
  envelope: PartialBy<TransactionEnvelopeEip1559, 'type'>,
): void

Source: src/TransactionEnvelopeEip1559.ts

Parameters

envelope

  • Type: PartialBy<TransactionEnvelopeEip1559, 'type'>

The transaction envelope to assert.

Return Type

void

Error Type

TransactionEnvelopeEip1559.assert.ErrorType