@swapkit/core 4.4.42 → 4.4.43

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @swapkit/core
2
2
 
3
+ ## 4.4.43
4
+
5
+ ### Patch Changes
6
+
7
+ - Validate Zcash Sprout, Sapling, and unified addresses while keeping transaction creation limited to transparent addresses. (via @swapkit/toolboxes@4.20.2)
8
+
3
9
  ## 4.4.42
4
10
 
5
11
  ### Patch Changes
@@ -3801,7 +3801,7 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
3801
3801
  signAndBroadcastTransaction: (tx: import("@swapkit/utxo-signer").ZcashTransaction | import("@swapkit/utxo-signer").PCZT | import("@swapkit/utxo-signer").ZcashPSBT) => Promise<string>;
3802
3802
  signTransaction: (tx: import("@swapkit/utxo-signer").ZcashTransaction | import("@swapkit/utxo-signer").PCZT | import("@swapkit/utxo-signer").ZcashPSBT) => Promise<import("@swapkit/utxo-signer").ZcashTransaction>;
3803
3803
  transfer: ({ recipient, assetValue, feeOptionKey, ...rest }: import("@swapkit/toolboxes/utxo/types").UTXOTransferParams) => Promise<string>;
3804
- validateAddress: typeof import("@swapkit/toolboxes/utxo/index").validateZcashAddress;
3804
+ validateAddress: typeof import("@swapkit/utxo-signer").validateZcashAddress;
3805
3805
  accumulative: typeof import("@swapkit/toolboxes/utxo/index").accumulative;
3806
3806
  broadcastTx: (txHash: string) => Promise<string>;
3807
3807
  bumpFee: ({ txid, newFeeRate, recipient, memo }: import("@swapkit/toolboxes/utxo/types").RBFTransactionParams) => Promise<{
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "author": "swapkit-dev",
3
3
  "dependencies": {
4
4
  "@swapkit/helpers": "4.15.3",
5
- "@swapkit/plugins": "4.6.56",
6
- "@swapkit/toolboxes": "4.20.1",
5
+ "@swapkit/plugins": "4.6.57",
6
+ "@swapkit/toolboxes": "4.20.2",
7
7
  "@swapkit/wallet-core": "4.3.10"
8
8
  },
9
9
  "description": "SwapKit - Core",
@@ -36,5 +36,5 @@
36
36
  "type-check:go": "tsgo"
37
37
  },
38
38
  "type": "module",
39
- "version": "4.4.42"
39
+ "version": "4.4.43"
40
40
  }