UNPKG

@aa-simulator/btc-connectkit

Version:

First Account Abstraction Protocol on Bitcoin

11 lines (10 loc) 468 B
import type { IEthereumProvider, JsonRpcRequest } from '@aa-simulator/core'; export declare class WalletClientProvider implements IEthereumProvider { private provider; constructor(provider: IEthereumProvider); on(event: string, listener: any): this; once(event: string, listener: any): this; off(event: string, listener: any): this; removeListener(event: string, listener: any): this; request(arg: Partial<JsonRpcRequest>): Promise<any>; }