Interface EthersProvider

interface EthersProvider {
    getSigner(): Promise<any>;
    send(method, params?): Promise<any>;
}

Methods

Methods

  • Parameters

    • method: string
    • Optional params: any[] | Record<string, any>

    Returns Promise<any>