@ethereumjs/tx
Version:
Implementation of the various Ethereum Transaction Types
8 lines • 494 B
JavaScript
/** EIP-4844 constants */
export const MAX_CALLDATA_SIZE = 16777216; // 2 ** 24
export const MAX_ACCESS_LIST_SIZE = 16777216; // 2 ** 24
export const MAX_VERSIONED_HASHES_LIST_SIZE = 16777216; // 2 ** 24
export const MAX_TX_WRAP_KZG_COMMITMENTS = 16777216; // 2 ** 24
export const FIELD_ELEMENTS_PER_BLOB = 4096; // This is also in the Common 4844 parameters but needed here since types can't access Common params
export const BYTES_PER_FIELD_ELEMENT = 32;
//# sourceMappingURL=constants.js.map