@zoguxprotocol/client-js 0.2.8 → 0.2.9

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": "@zoguxprotocol/client-js",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "General client library for the new Zogux system (v4 decentralized)",
5
5
  "main": "build/cjs/src/index.js",
6
6
  "module": "build/esm/src/index.js",
@@ -10,7 +10,6 @@ export class FaucetClient extends RestClient {
10
10
  public async fill(
11
11
  address: string,
12
12
  subaccountNumber: number,
13
- amount: number,
14
13
  headers?: {},
15
14
  ): Promise<Response> {
16
15
  const uri = '/faucet/tokens';
@@ -21,7 +20,6 @@ export class FaucetClient extends RestClient {
21
20
  {
22
21
  address,
23
22
  subaccountNumber,
24
- amount,
25
23
  },
26
24
  headers,
27
25
  );