@atomiqlabs/chain-evm
Version:
EVM specific base implementation
12 lines (11 loc) • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EVMBrowserSigner = void 0;
const EVMSigner_1 = require("./EVMSigner");
class EVMBrowserSigner extends EVMSigner_1.EVMSigner {
constructor(account, address) {
super(account, address, false);
this.signTransaction = null;
}
}
exports.EVMBrowserSigner = EVMBrowserSigner;