@colony/purser-software
Version:
A javascript library to interact with a software Ethereum wallet, based on the ethers.js library
15 lines (14 loc) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.REQUIRED_PROPS = void 0;
var REQUIRED_PROPS = {
OPEN_WALLET: ['privateKey', 'mnemonic', 'keystore']
};
exports.REQUIRED_PROPS = REQUIRED_PROPS;
var softwareWalletDefaults = {
REQUIRED_PROPS: REQUIRED_PROPS
};
var _default = softwareWalletDefaults;
exports.default = _default;