zumokit
Version:
ZumoKit is a Wallet as a Service SDK
21 lines (20 loc) • 620 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccountCryptoProperties = void 0;
/**
* Account's crypto related properties.
* <p>
* See {@link Account}.
*/
var AccountCryptoProperties = /** @class */ (function () {
/** @internal */
function AccountCryptoProperties(json) {
this.json = json;
this.address = json.address;
this.directDepositAddress = json.directDepositAddress;
this.path = json.path;
this.nonce = json.nonce;
}
return AccountCryptoProperties;
}());
exports.AccountCryptoProperties = AccountCryptoProperties;