zano_web3 6.8.0 → 6.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zano_web3",
3
- "version": "6.8.0",
3
+ "version": "6.9.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -198,6 +198,10 @@ class ServerWallet {
198
198
  amount: new Big(asset.unlocked)
199
199
  .div(new Big(10).pow(asset.asset_info.decimal_point))
200
200
  .toString(),
201
+ awaiting_in: new Big(asset.awaiting_in),
202
+ awaiting_out: new Big(asset.awaiting_out),
203
+ total: new Big(asset.total),
204
+ unlocked: new Big(asset.unlocked),
201
205
  }));
202
206
 
203
207
  return balances.sort((a, b) => {