btc-wallet
Version:
BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.
11 lines (10 loc) • 470 B
TypeScript
import type { IEthereumProvider, JsonRpcRequest } from '@particle-network/aa';
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>;
}