index.d.ts 867 B

12345678910111213141516171819202122232425
  1. /**
  2. * Each state-changing operation on Ethereum requires a transaction.
  3. *
  4. * @_section api/transaction:Transactions [about-transactions]
  5. */
  6. /**
  7. * A single [[AccessList]] entry of storage keys (slots) for an address.
  8. */
  9. export type AccessListEntry = {
  10. address: string;
  11. storageKeys: Array<string>;
  12. };
  13. /**
  14. * An ordered collection of [[AccessList]] entries.
  15. */
  16. export type AccessList = Array<AccessListEntry>;
  17. /**
  18. * Any ethers-supported access list structure.
  19. */
  20. export type AccessListish = AccessList | Array<[string, Array<string>]> | Record<string, Array<string>>;
  21. export { accessListify } from "./accesslist.js";
  22. export { computeAddress, recoverAddress } from "./address.js";
  23. export { Transaction } from "./transaction.js";
  24. export type { Blob, BlobLike, KzgLibrary, TransactionLike } from "./transaction.js";
  25. //# sourceMappingURL=index.d.ts.map