Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

EIPTypes

Git Source

Functions

encodeAccessList

Encode an access list for EIP-1559 and EIP-2930 transactions

function encodeAccessList(AccessList memory list) internal pure returns (bytes memory);

Structs

AccessList

struct AccessList {
    AccessListItem[] items;
}

AccessListItem

struct AccessListItem {
    address addr;
    bytes32[] storageKeys;
}