@waiaas/core 2.4.0-rc → 2.4.0-rc.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -93,13 +93,13 @@ const client = new WAIaaSClient({
93
93
  });
94
94
 
95
95
  const balance = await client.getBalance();
96
- console.log(`Balance: ${balance.amount} SOL`);
96
+ console.log(`Balance: ${balance.balance} ${balance.symbol}`);
97
97
 
98
98
  const tx = await client.sendToken({
99
99
  to: 'recipient-address...',
100
100
  amount: '0.1',
101
101
  });
102
- console.log(`Transaction: ${tx.signature}`);
102
+ console.log(`Transaction: ${tx.id}`);
103
103
  ```
104
104
 
105
105
  ## Admin UI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waiaas/core",
3
- "version": "2.4.0-rc",
3
+ "version": "2.4.0-rc.1",
4
4
  "description": "WAIaaS core types, schemas, and shared utilities",
5
5
  "license": "MIT",
6
6
  "type": "module",