@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
11 lines • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PrivateCredentials = void 0;
class PrivateCredentials {
constructor(privateKey, mnemonic) {
this.privateKey = privateKey;
this.mnemonic = mnemonic;
}
}
exports.PrivateCredentials = PrivateCredentials;
//# sourceMappingURL=PrivateCredentials.js.map