UNPKG

@atomiqlabs/chain-evm

Version:

EVM specific base implementation

12 lines (8 loc) 271 B
import {Signer} from "ethers"; import {EVMSigner} from "./EVMSigner"; export class EVMBrowserSigner extends EVMSigner { constructor(account: Signer, address: string) { super(account, address, false); this.signTransaction = null; } }