UNPKG

@atomiqlabs/chain-evm

Version:

EVM specific base implementation

10 lines (9 loc) 306 B
import { AbstractSigner } from "@atomiqlabs/base"; import { Signer } from "ethers"; export declare class EVMSigner implements AbstractSigner { account: Signer; readonly address: string; constructor(account: Signer, address: string); getNonce(): Promise<number>; getAddress(): string; }