UNPKG

@ledgerhq/coin-multiversx

Version:
13 lines 352 B
export class MultiversXAccount { balance; nonce; isGuarded; blockHeight; constructor(balance, nonce, isGuarded, blockHeight) { this.balance = balance; this.nonce = nonce; this.isGuarded = isGuarded ? true : false; this.blockHeight = blockHeight; } } //# sourceMappingURL=multiversx-account.js.map