@tatumio/bch 2.0.1-alpha.228 → 2.0.1-alpha.229

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "@tatumio/bch",
3
- "version": "2.0.1-alpha.228",
3
+ "version": "2.0.1-alpha.229",
4
4
  "license": "MIT",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
7
7
  "dependencies": {
8
- "@tatumio/shared-testing": "2.0.1-alpha.227",
9
- "@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.227",
10
- "@tatumio/shared-core": "2.0.1-alpha.227",
8
+ "@tatumio/shared-testing-common": "2.0.1-alpha.228",
9
+ "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.228",
10
+ "@tatumio/api-client": "2.0.1-alpha.228",
11
11
  "axios": "^0.24.0",
12
- "@tatumio/api-client": "2.0.1-alpha.227",
13
12
  "form-data": "^4.0.0",
14
- "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.227",
15
- "@tatumio/shared-abstract-sdk": "2.0.1-alpha.227",
13
+ "@tatumio/shared-core": "2.0.1-alpha.228",
14
+ "@tatumio/shared-abstract-sdk": "2.0.1-alpha.228",
16
15
  "bignumber.js": "^9.0.2",
16
+ "@tatumio/shared-testing-btc-based": "0.0.1",
17
+ "@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.228",
17
18
  "bip32": "^2.0.5",
18
19
  "bip39": "^3.0.2",
19
20
  "bitcoinjs-lib": "^5.2.0",
@@ -30,6 +30,9 @@ export declare const TatumBchSDK: (args: SDKArguments) => {
30
30
  };
31
31
  withdrawal: {
32
32
  getAll: (status?: "InProgress" | "Done" | "Cancelled", pageSize?: number, offset?: number) => Promise<import("@tatumio/api-client").WithdrawalObject[]>;
33
+ broadcast: typeof import("@tatumio/api-client").OffChainWithdrawalService.broadcastBlockchainTransaction;
34
+ create: typeof import("@tatumio/api-client").OffChainWithdrawalService.storeWithdrawal;
35
+ complete: typeof import("@tatumio/api-client").OffChainWithdrawalService.completeWithdrawal;
33
36
  };
34
37
  storeTokenAddress: typeof import("@tatumio/api-client").OffChainBlockchainService.storeTokenAddress;
35
38
  };