@btc-vision/transaction 1.0.8 → 1.0.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/README.md +4 -2
- package/browser/_version.d.ts +1 -1
- package/browser/index.js +1 -1
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/utils/BitcoinUtils.js +3 -3
- package/docs/classes/AddressGenerator.html +2 -2
- package/docs/classes/BitcoinUtils.html +4 -4
- package/docs/classes/CalldataGenerator.html +10 -10
- package/docs/classes/Compressor.html +4 -4
- package/docs/classes/ContractBaseMetadata.html +4 -4
- package/docs/classes/DeploymentGenerator.html +9 -9
- package/docs/classes/DeploymentTransaction.html +73 -73
- package/docs/classes/EcKeyPair.html +16 -16
- package/docs/classes/FundingTransaction.html +48 -48
- package/docs/classes/Generator.html +9 -9
- package/docs/classes/InteractionTransaction.html +63 -63
- package/docs/classes/OPNetLimitedProvider.html +4 -4
- package/docs/classes/SharedInteractionTransaction.html +69 -69
- package/docs/classes/TapscriptVerificator.html +2 -2
- package/docs/classes/TransactionBuilder.html +51 -51
- package/docs/classes/TransactionFactory.html +3 -3
- package/docs/classes/TweakedSigner.html +2 -2
- package/docs/classes/Wallet.html +10 -10
- package/docs/classes/WrapTransaction.html +75 -75
- package/docs/classes/WrappedGeneration.html +8 -8
- package/docs/classes/wBTC.html +7 -7
- package/docs/enums/TransactionSequence.html +2 -2
- package/docs/enums/TransactionType.html +2 -2
- package/docs/index.html +4 -2
- package/docs/interfaces/ContractAddressVerificationParams.html +2 -2
- package/docs/interfaces/DeploymentResult.html +2 -2
- package/docs/interfaces/FetchUTXOParams.html +2 -2
- package/docs/interfaces/GenerationConstraints.html +5 -5
- package/docs/interfaces/IDeploymentParameters.html +2 -2
- package/docs/interfaces/IFundingTransactionParameters.html +2 -2
- package/docs/interfaces/IInteractionParameters.html +2 -2
- package/docs/interfaces/ITransactionParameters.html +2 -2
- package/docs/interfaces/IWallet.html +4 -4
- package/docs/interfaces/IWrapParameters.html +2 -2
- package/docs/interfaces/NetworkInformation.html +2 -2
- package/docs/interfaces/PsbtInputExtended.html +1 -1
- package/docs/interfaces/PsbtOutputExtendedAddress.html +2 -2
- package/docs/interfaces/PsbtOutputExtendedScript.html +2 -2
- package/docs/interfaces/RawUTXOResponse.html +2 -2
- package/docs/interfaces/SharedInteractionParameters.html +2 -2
- package/docs/interfaces/TapLeafScript.html +2 -2
- package/docs/interfaces/TweakSettings.html +3 -3
- package/docs/interfaces/UTXO.html +2 -2
- package/docs/interfaces/UpdateInput.html +2 -2
- package/docs/interfaces/WrapResult.html +2 -2
- package/docs/interfaces/WrappedGenerationParameters.html +6 -6
- package/docs/types/PsbtOutputExtended.html +1 -1
- package/docs/variables/version.html +1 -1
- package/package.json +1 -1
- package/src/_version.ts +1 -1
- package/src/utils/BitcoinUtils.ts +3 -3
package/README.md
CHANGED
|
@@ -50,8 +50,10 @@ of the repository.
|
|
|
50
50
|
|
|
51
51
|
## Deployments and Wrapping
|
|
52
52
|
|
|
53
|
-
To learn how to wrap and unwrap Bitcoin on OP_NET, please refer to
|
|
54
|
-
|
|
53
|
+
To learn how to wrap and unwrap Bitcoin on OP_NET, please refer to
|
|
54
|
+
the [Wrap.md](https://github.com/btc-vision/transaction/blob/main/Wrap.md) guide.
|
|
55
|
+
To learn how to deploy smart contracts on OP_NET, please refer to
|
|
56
|
+
the [Deploy.md](https://github.com/btc-vision/transaction/blob/main/Deploy.md) guide.
|
|
55
57
|
|
|
56
58
|
## Usage
|
|
57
59
|
|
package/browser/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.0.
|
|
1
|
+
export declare const version = "1.0.9";
|