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

10 lines (9 loc) 290 B
import { type CustomTransport, type Transport } from "viem"; export interface SplitTransportParams { overrides: { methods: string[]; transport: Transport; }[]; fallback: Transport; } export declare const split: (params: SplitTransportParams) => CustomTransport;