6 lines
220 B
TypeScript
6 lines
220 B
TypeScript
import type { AccessList, AccessListish } from "./index.js";
|
|
/**
|
|
* Returns a [[AccessList]] from any ethers-supported access-list structure.
|
|
*/
|
|
export declare function accessListify(value: AccessListish): AccessList;
|