UNPKG

@account-kit/infra

Version:

adapters for @aa-sdk/core for interacting with alchemy services

13 lines (12 loc) 346 B
import type { Address } from "viem"; export type InfraEventsSchema = [ { EventName: "client_send_uo"; EventData: { signerType: string; chainId: number; entryPoint: Address; }; } ]; export declare const InfraLogger: import("@account-kit/logging").EventLogger<InfraEventsSchema>;