UNPKG

@alchemy/aa-core

Version:

viem based SDK that enables interactions with ERC-4337 Smart Accounts. ABIs are based off the definitions generated in @account-abstraction/contracts

7 lines (6 loc) 458 B
import { type Address, type Chain } from "viem"; import type { EntryPointVersion } from "../entrypoint/types.js"; import type { UserOperationFeeOptions } from "../types"; export declare const getDefaultSimpleAccountFactoryAddress: (chain: Chain, version?: EntryPointVersion) => Address; export declare const minPriorityFeePerBidDefaults: Map<number, bigint>; export declare const getDefaultUserOperationFeeOptions: (chain: Chain) => UserOperationFeeOptions;