Source: balance.js

  1. // This Source Code Form is subject to the terms of the Mozilla Public
  2. // License, v. 2.0. If a copy of the MPL was not distributed with this
  3. // file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. //
  5. // Copyright (c) DUSK NETWORK. All rights reserved.
  6. import { call } from "./wasm.js";
  7. import { parseEncodedJSON } from "./encoding.js";
  8. import { getUnspentNotes } from "./db.js";
  9. import { getNotesRkyvSerialized } from "./rkyv.js";
  10. import { duskToLux } from "./crypto.js";
  11. /**
  12. * @class BalanceInfo
  13. * @type {Object}
  14. * @property {number} value The balance value
  15. * @property {number} maximum The maximum amount the user can spend
  16. */
  17. export function BalanceInfo(value, maximum) {
  18. this.value = value;
  19. this.maximum = maximum;
  20. }
  21. /**
  22. * Get balance from given unspent notes and seed
  23. * @param {WebAssembly.Exports} wasm
  24. * @param {Uint8Array} seed - Seed for the wallet
  25. * @param {string} psk - bs58 encoded string of psk of the address
  26. * @returns {BalanceInfo} The balance info
  27. *
  28. * @ignore Ignored because you only call this through the Wallet class
  29. */
  30. export async function getBalance(wasm, seed, psk) {
  31. const notes = await getUnspentNotes(psk);
  32. const unspentNotes = notes.map((object) => object.note);
  33. const serializedNotes = await getNotesRkyvSerialized(wasm, unspentNotes);
  34. const balanceArgs = {
  35. seed: Array.from(seed),
  36. notes: Array.from(serializedNotes),
  37. };
  38. const obj = await call(wasm, balanceArgs, "balance").then(parseEncodedJSON);
  39. // console the dusk values to lux
  40. obj.value = await duskToLux(wasm, obj.value);
  41. obj.maximum = await duskToLux(wasm, obj.maximum);
  42. return obj;
  43. }