opnet 1.0.21 → 1.0.22
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/browser/_version.d.ts +1 -1
- package/browser/contracts/ContractData.d.ts +5 -3
- package/browser/contracts/interfaces/IRawContract.d.ts +5 -3
- package/browser/index.js +1 -1
- package/browser/index.js.LICENSE.txt +2 -0
- package/browser/interfaces/opnet/OPNetTransactionTypes.d.ts +4 -1
- package/browser/opnet.d.ts +11 -6
- package/browser/providers/AbstractRpcProvider.d.ts +1 -1
- package/browser/scripts/testMethodsReg.d.ts +1 -0
- package/browser/transactions/Transaction.d.ts +4 -3
- package/browser/transactions/decoders/DeploymentTransaction.d.ts +17 -0
- package/browser/transactions/decoders/GenericTransaction.d.ts +6 -0
- package/browser/transactions/decoders/InteractionTransaction.d.ts +15 -0
- package/browser/transactions/decoders/WrapTransaction.d.ts +15 -0
- package/browser/transactions/interfaces/ITransaction.d.ts +8 -27
- package/browser/transactions/interfaces/transactions/ICommonTransaction.d.ts +7 -0
- package/browser/transactions/interfaces/transactions/IDeploymentTransaction.d.ts +13 -0
- package/browser/transactions/interfaces/transactions/IInteractionTransaction.d.ts +14 -0
- package/browser/transactions/interfaces/transactions/IWrapTransaction.d.ts +10 -0
- package/browser/transactions/metadata/TransactionInput.d.ts +16 -0
- package/browser/transactions/metadata/TransactionOutput.d.ts +19 -0
- package/browser/transactions/metadata/TransactionReceipt.d.ts +11 -0
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/contracts/ContractData.d.ts +5 -3
- package/build/contracts/ContractData.js +2 -0
- package/build/contracts/interfaces/IRawContract.d.ts +5 -3
- package/build/interfaces/opnet/OPNetTransactionTypes.d.ts +4 -1
- package/build/interfaces/opnet/OPNetTransactionTypes.js +2 -0
- package/build/opnet.d.ts +11 -6
- package/build/opnet.js +11 -6
- package/build/providers/AbstractRpcProvider.d.ts +1 -1
- package/build/providers/AbstractRpcProvider.js +1 -1
- package/build/scripts/testMethods.js +1 -1
- package/build/scripts/testMethodsReg.d.ts +1 -0
- package/build/scripts/testMethodsReg.js +10 -0
- package/build/transactions/Transaction.d.ts +4 -3
- package/build/transactions/Transaction.js +5 -3
- package/build/transactions/TransactionParser.js +8 -4
- package/build/transactions/decoders/DeploymentTransaction.d.ts +17 -0
- package/build/transactions/decoders/DeploymentTransaction.js +26 -0
- package/build/transactions/decoders/GenericTransaction.d.ts +6 -0
- package/build/transactions/decoders/GenericTransaction.js +6 -0
- package/build/transactions/decoders/InteractionTransaction.d.ts +15 -0
- package/build/transactions/decoders/InteractionTransaction.js +21 -0
- package/build/transactions/decoders/WrapInteractionTransaction.d.ts +15 -0
- package/build/transactions/decoders/WrapInteractionTransaction.js +21 -0
- package/build/transactions/decoders/WrapTransaction.d.ts +15 -0
- package/build/transactions/decoders/WrapTransaction.js +30 -0
- package/build/transactions/interfaces/ITransaction.d.ts +8 -27
- package/build/transactions/interfaces/IWrapTransaction.d.ts +3 -0
- package/build/transactions/interfaces/IWrapTransaction.js +1 -0
- package/build/transactions/interfaces/transactions/ICommonTransaction.d.ts +7 -0
- package/build/transactions/interfaces/transactions/ICommonTransaction.js +1 -0
- package/build/transactions/interfaces/transactions/IDeploymentTransaction.d.ts +13 -0
- package/build/transactions/interfaces/transactions/IDeploymentTransaction.js +1 -0
- package/build/transactions/interfaces/transactions/IInteractionTransaction.d.ts +14 -0
- package/build/transactions/interfaces/transactions/IInteractionTransaction.js +1 -0
- package/build/transactions/interfaces/transactions/IWrapTransaction.d.ts +10 -0
- package/build/transactions/interfaces/transactions/IWrapTransaction.js +1 -0
- package/build/transactions/metadata/TransactionInput.d.ts +16 -0
- package/build/transactions/metadata/TransactionInput.js +14 -0
- package/build/transactions/metadata/TransactionOutput.d.ts +19 -0
- package/build/transactions/metadata/TransactionOutput.js +16 -0
- package/build/transactions/metadata/TransactionReceipt.d.ts +11 -0
- package/build/transactions/metadata/TransactionReceipt.js +53 -0
- package/build/transactions/types/DeploymentTransaction.d.ts +16 -0
- package/build/transactions/types/DeploymentTransaction.js +24 -0
- package/build/transactions/types/GenericTransaction.d.ts +6 -0
- package/build/transactions/types/GenericTransaction.js +6 -0
- package/build/transactions/types/InteractionTransaction.d.ts +15 -0
- package/build/transactions/types/InteractionTransaction.js +21 -0
- package/cjs/_version.d.ts +1 -1
- package/cjs/_version.js +1 -1
- package/cjs/block/interfaces/BlockWitness.d.ts +11 -0
- package/cjs/block/interfaces/BlockWitness.js +2 -0
- package/cjs/contracts/Contract.d.ts +3 -1
- package/cjs/contracts/Contract.js +18 -12
- package/cjs/contracts/interfaces/IContract.d.ts +3 -1
- package/cjs/generator/WrappedGenerationParameters.d.ts +9 -0
- package/cjs/generator/WrappedGenerationParameters.js +18 -0
- package/cjs/opnet.d.ts +6 -1
- package/cjs/opnet.js +6 -1
- package/cjs/providers/AbstractRpcProvider.d.ts +8 -0
- package/cjs/providers/AbstractRpcProvider.js +63 -0
- package/cjs/providers/interfaces/Generate.d.ts +19 -0
- package/cjs/providers/interfaces/Generate.js +7 -0
- package/cjs/providers/interfaces/ReorgInformation.d.ts +5 -0
- package/cjs/providers/interfaces/ReorgInformation.js +2 -0
- package/cjs/scripts/ITestContract.d.ts +2 -2
- package/cjs/scripts/ITestContract.js +2 -2
- package/cjs/scripts/testContract.js +1 -1
- package/cjs/scripts/testMethods.js +8 -15
- package/cjs/transactions/TransactionReceipt.d.ts +3 -3
- package/cjs/transactions/TransactionReceipt.js +35 -16
- package/cjs/transactions/interfaces/BroadcastedTransaction.d.ts +7 -0
- package/cjs/transactions/interfaces/BroadcastedTransaction.js +2 -0
- package/cjs/transactions/interfaces/ITransaction.d.ts +2 -3
- package/cjs/transactions/interfaces/ITransactionReceipt.d.ts +9 -1
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/AbstractRpcProvider.html +18 -18
- package/docs/classes/BaseContract.html +7 -7
- package/docs/classes/BitcoinAddress.html +2 -2
- package/docs/classes/BitcoinInterface.html +2 -2
- package/docs/classes/BitcoinUtils.html +2 -2
- package/docs/classes/Block.html +3 -3
- package/docs/classes/CallResult.html +2 -2
- package/docs/classes/ContractData.html +3 -2
- package/docs/classes/DeploymentTransaction.html +26 -22
- package/docs/classes/GenericTransaction.html +15 -13
- package/docs/classes/IBaseContract.html +7 -7
- package/docs/classes/InteractionTransaction.html +22 -20
- package/docs/classes/JSONRpcProvider.html +17 -17
- package/docs/classes/OPNetEvent.html +2 -2
- package/docs/classes/StoredValue.html +2 -2
- package/docs/classes/TransactionBase.html +15 -13
- package/docs/classes/TransactionInput.html +2 -2
- package/docs/classes/TransactionOutput.html +2 -2
- package/docs/classes/TransactionParser.html +2 -2
- package/docs/classes/TransactionReceipt.html +7 -7
- package/docs/classes/UTXO.html +2 -2
- package/docs/classes/WebSocketRpcProvider.html +17 -17
- package/docs/classes/WrapTransaction.html +229 -0
- package/docs/classes/WrappedGeneration.html +7 -7
- package/docs/enums/BitcoinAbiTypes.html +2 -2
- package/docs/enums/GenerateTarget.html +2 -2
- package/docs/enums/OPNetTransactionTypes.html +4 -2
- package/docs/functions/getContract.html +1 -1
- package/docs/hierarchy.html +1 -1
- package/docs/interfaces/BaseContractProperties.html +2 -2
- package/docs/interfaces/BitcoinAbiValue.html +3 -3
- package/docs/interfaces/BitcoinInterfaceAbiBase.html +2 -2
- package/docs/interfaces/BroadcastedTransaction.html +6 -6
- package/docs/interfaces/ContractEvents.html +1 -1
- package/docs/interfaces/EventBaseData.html +2 -2
- package/docs/interfaces/FunctionBaseData.html +2 -2
- package/docs/interfaces/GenerationConstraints.html +7 -7
- package/docs/interfaces/IAccessList.html +1 -1
- package/docs/interfaces/IAccessListItem.html +1 -1
- package/docs/interfaces/IBlock.html +3 -3
- package/docs/interfaces/IBlockCommon.html +3 -3
- package/docs/interfaces/IBlockWitness.html +2 -2
- package/docs/interfaces/IBlockWitnessAPI.html +2 -2
- package/docs/interfaces/ICallRequestError.html +2 -2
- package/docs/interfaces/ICallResultData.html +2 -2
- package/docs/interfaces/ICommonTransaction.html +17 -15
- package/docs/interfaces/IContract.html +2 -2
- package/docs/interfaces/IDecodedEvent.html +2 -2
- package/docs/interfaces/IDeploymentTransaction.html +26 -22
- package/docs/interfaces/IGenericTransaction.html +14 -12
- package/docs/interfaces/IInteractionTransaction.html +22 -20
- package/docs/interfaces/IRawContract.html +3 -2
- package/docs/interfaces/IRawContractEvents.html +1 -1
- package/docs/interfaces/IStorageValue.html +2 -2
- package/docs/interfaces/ITransactionBase.html +14 -12
- package/docs/interfaces/ITransactionInput.html +2 -2
- package/docs/interfaces/ITransactionOutput.html +2 -2
- package/docs/interfaces/ITransactionReceipt.html +5 -5
- package/docs/interfaces/IUTXO.html +2 -2
- package/docs/interfaces/IWrapTransaction.html +228 -0
- package/docs/interfaces/NetEventDocument.html +5 -5
- package/docs/interfaces/ReorgInformation.html +2 -2
- package/docs/interfaces/WrappedGenerationParameters.html +6 -6
- package/docs/modules.html +3 -0
- package/docs/types/BaseContractProperty.html +1 -1
- package/docs/types/BitcoinAddressLike.html +1 -1
- package/docs/types/BitcoinInterfaceAbi.html +1 -1
- package/docs/types/BlockHeaderChecksumProof.html +1 -1
- package/docs/types/BlockWitnesses.html +1 -1
- package/docs/types/ContractDecodedObjectResult.html +1 -1
- package/docs/types/DecodedCallResult.html +1 -1
- package/docs/types/DecodedOutput.html +1 -1
- package/docs/types/GenerationParameters.html +1 -1
- package/docs/types/ICallResult.html +1 -1
- package/docs/types/ITransaction.html +2 -2
- package/docs/types/InteractionType.html +174 -0
- package/docs/types/PointerLike.html +1 -1
- package/docs/types/RawContractEvents.html +1 -1
- package/docs/types/UTXOs.html +1 -1
- package/docs/variables/version.html +1 -1
- package/package.json +6 -5
- package/src/_version.ts +1 -1
- package/src/contracts/ContractData.ts +11 -3
- package/src/contracts/interfaces/IRawContract.ts +7 -3
- package/src/interfaces/opnet/OPNetTransactionTypes.ts +7 -0
- package/src/opnet.ts +13 -6
- package/src/providers/AbstractRpcProvider.ts +1 -1
- package/src/scripts/testMethods.ts +54 -54
- package/src/scripts/testMethodsReg.ts +20 -0
- package/src/transactions/Transaction.ts +10 -3
- package/src/transactions/TransactionParser.ts +13 -10
- package/src/transactions/{DeploymentTransaction.ts → decoders/DeploymentTransaction.ts} +6 -3
- package/src/transactions/{GenericTransaction.ts → decoders/GenericTransaction.ts} +3 -3
- package/src/transactions/{InteractionTransaction.ts → decoders/InteractionTransaction.ts} +4 -4
- package/src/transactions/decoders/WrapTransaction.ts +69 -0
- package/src/transactions/interfaces/ITransaction.ts +16 -107
- package/src/transactions/interfaces/transactions/ICommonTransaction.ts +19 -0
- package/src/transactions/interfaces/transactions/IDeploymentTransaction.ts +50 -0
- package/src/transactions/interfaces/transactions/IInteractionTransaction.ts +50 -0
- package/src/transactions/interfaces/transactions/IWrapTransaction.ts +43 -0
- package/src/transactions/{TransactionReceipt.ts → metadata/TransactionReceipt.ts} +1 -1
- package/tsconfig.webpack.json +8 -0
- /package/src/transactions/{TransactionInput.ts → metadata/TransactionInput.ts} +0 -0
- /package/src/transactions/{TransactionOutput.ts → metadata/TransactionOutput.ts} +0 -0
|
@@ -158,47 +158,51 @@
|
|
|
158
158
|
}
|
|
159
159
|
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">OPNet</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">OPNet</a></li><li><a href="IDeploymentTransaction.html">IDeploymentTransaction</a></li></ul><h1>Interface IDeploymentTransaction</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><h4>Description</h4><p>This interface represents a deployment transaction.
|
|
160
160
|
IDeploymentTransaction</p>
|
|
161
|
-
</div></section><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">IDeploymentTransaction</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#OPNetType">OPNetType</a><span class="tsd-signature-symbol">: </span><a href="../enums/OPNetTransactionTypes.html#Deployment" class="tsd-signature-type tsd-kind-enum-member">Deployment</a><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#burnedBitcoin">burnedBitcoin</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">BigNumberish</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#bytecode">bytecode</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#contractAddress">contractAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#contractSaltHash">contractSaltHash</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#contractSeed">contractSeed</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#deployerAddress">deployerAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#deployerPubKey">deployerPubKey</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#events">events</a><span class="tsd-signature-symbol">?: </span><a href="../types/RawContractEvents.html" class="tsd-signature-type tsd-kind-type-alias">RawContractEvents</a><span class="tsd-signature-symbol"> | </span><a href="ContractEvents.html" class="tsd-signature-type tsd-kind-interface">ContractEvents</a><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#from">from</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#hash">hash</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#id">id</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#index">index</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#inputs">inputs</a><span class="tsd-signature-symbol">: </span><a href="ITransactionInput.html" class="tsd-signature-type tsd-kind-interface">ITransactionInput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../classes/TransactionInput.html" class="tsd-signature-type tsd-kind-class">TransactionInput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#outputs">outputs</a><span class="tsd-signature-symbol">: </span><a href="ITransactionOutput.html" class="tsd-signature-type tsd-kind-interface">ITransactionOutput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../classes/TransactionOutput.html" class="tsd-signature-type tsd-kind-class">TransactionOutput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#receipt">receipt</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#receiptProofs">receiptProofs</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#revert">revert</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#virtualAddress">virtualAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#wasCompressed">wasCompressed</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><section class="tsd-panel tsd-hierarchy"><h4>Hierarchy (<a class="link" href="../hierarchy.html#IDeploymentTransaction">view full</a>)</h4><ul class="tsd-hierarchy"><li><a href="ICommonTransaction.html" class="tsd-signature-type tsd-kind-interface">ICommonTransaction</a><span class="tsd-signature-symbol"><</span><a href="../enums/OPNetTransactionTypes.html#Deployment" class="tsd-signature-type tsd-kind-enum-member">Deployment</a><span class="tsd-signature-symbol">></span><ul class="tsd-hierarchy"><li><span class="target">IDeploymentTransaction</span></li></ul></li></ul></section><section class="tsd-panel"><h4>Implemented by</h4><ul class="tsd-hierarchy"><li><a href="../classes/DeploymentTransaction.html" class="tsd-signature-type tsd-kind-class">DeploymentTransaction</a></li></ul></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
161
|
+
</div></section><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">IDeploymentTransaction</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#OPNetType">OPNetType</a><span class="tsd-signature-symbol">: </span><a href="../enums/OPNetTransactionTypes.html#Deployment" class="tsd-signature-type tsd-kind-enum-member">Deployment</a><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#burnedBitcoin">burnedBitcoin</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">BigNumberish</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#bytecode">bytecode</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#contractAddress">contractAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#contractSaltHash">contractSaltHash</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#contractSeed">contractSeed</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#deployerAddress">deployerAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#deployerPubKey">deployerPubKey</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#events">events</a><span class="tsd-signature-symbol">?: </span><a href="../types/RawContractEvents.html" class="tsd-signature-type tsd-kind-type-alias">RawContractEvents</a><span class="tsd-signature-symbol"> | </span><a href="ContractEvents.html" class="tsd-signature-type tsd-kind-interface">ContractEvents</a><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#from">from</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#gasUsed">gasUsed</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">bigint</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#hash">hash</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#id">id</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#index">index</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#inputs">inputs</a><span class="tsd-signature-symbol">: </span><a href="ITransactionInput.html" class="tsd-signature-type tsd-kind-interface">ITransactionInput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../classes/TransactionInput.html" class="tsd-signature-type tsd-kind-class">TransactionInput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#outputs">outputs</a><span class="tsd-signature-symbol">: </span><a href="ITransactionOutput.html" class="tsd-signature-type tsd-kind-interface">ITransactionOutput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../classes/TransactionOutput.html" class="tsd-signature-type tsd-kind-class">TransactionOutput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#p2trAddress">p2trAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#receipt">receipt</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#receiptProofs">receiptProofs</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#revert">revert</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#virtualAddress">virtualAddress</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="IDeploymentTransaction.html#wasCompressed">wasCompressed</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><section class="tsd-panel tsd-hierarchy"><h4>Hierarchy (<a class="link" href="../hierarchy.html#IDeploymentTransaction">view full</a>)</h4><ul class="tsd-hierarchy"><li><a href="ICommonTransaction.html" class="tsd-signature-type tsd-kind-interface">ICommonTransaction</a><span class="tsd-signature-symbol"><</span><a href="../enums/OPNetTransactionTypes.html#Deployment" class="tsd-signature-type tsd-kind-enum-member">Deployment</a><span class="tsd-signature-symbol">></span><ul class="tsd-hierarchy"><li><span class="target">IDeploymentTransaction</span></li></ul></li></ul></section><section class="tsd-panel"><h4>Implemented by</h4><ul class="tsd-hierarchy"><li><a href="../classes/DeploymentTransaction.html" class="tsd-signature-type tsd-kind-class">DeploymentTransaction</a></li></ul></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L9">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:9</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="IDeploymentTransaction.html#OPNetType" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>OPNet<wbr/>Type</span></a>
|
|
162
162
|
<a href="IDeploymentTransaction.html#burnedBitcoin" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>burned<wbr/>Bitcoin</span></a>
|
|
163
163
|
<a href="IDeploymentTransaction.html#bytecode" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>bytecode</span></a>
|
|
164
|
-
<a href="IDeploymentTransaction.html#contractAddress" class="tsd-index-link
|
|
164
|
+
<a href="IDeploymentTransaction.html#contractAddress" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>contract<wbr/>Address</span></a>
|
|
165
165
|
<a href="IDeploymentTransaction.html#contractSaltHash" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>contract<wbr/>Salt<wbr/>Hash</span></a>
|
|
166
166
|
<a href="IDeploymentTransaction.html#contractSeed" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>contract<wbr/>Seed</span></a>
|
|
167
167
|
<a href="IDeploymentTransaction.html#deployerAddress" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>deployer<wbr/>Address</span></a>
|
|
168
168
|
<a href="IDeploymentTransaction.html#deployerPubKey" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>deployer<wbr/>Pub<wbr/>Key</span></a>
|
|
169
169
|
<a href="IDeploymentTransaction.html#events" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>events?</span></a>
|
|
170
170
|
<a href="IDeploymentTransaction.html#from" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>from</span></a>
|
|
171
|
+
<a href="IDeploymentTransaction.html#gasUsed" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gas<wbr/>Used</span></a>
|
|
171
172
|
<a href="IDeploymentTransaction.html#hash" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>hash</span></a>
|
|
172
173
|
<a href="IDeploymentTransaction.html#id" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>id</span></a>
|
|
173
174
|
<a href="IDeploymentTransaction.html#index" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>index</span></a>
|
|
174
175
|
<a href="IDeploymentTransaction.html#inputs" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>inputs</span></a>
|
|
175
176
|
<a href="IDeploymentTransaction.html#outputs" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>outputs</span></a>
|
|
177
|
+
<a href="IDeploymentTransaction.html#p2trAddress" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>p2tr<wbr/>Address</span></a>
|
|
176
178
|
<a href="IDeploymentTransaction.html#receipt" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>receipt?</span></a>
|
|
177
179
|
<a href="IDeploymentTransaction.html#receiptProofs" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>receipt<wbr/>Proofs?</span></a>
|
|
178
180
|
<a href="IDeploymentTransaction.html#revert" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>revert?</span></a>
|
|
179
181
|
<a href="IDeploymentTransaction.html#virtualAddress" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>virtual<wbr/>Address</span></a>
|
|
180
182
|
<a href="IDeploymentTransaction.html#wasCompressed" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>was<wbr/>Compressed</span></a>
|
|
181
183
|
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member tsd-is-inherited"><a id="OPNetType" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>OPNet<wbr/>Type</span><a href="#OPNetType" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">OPNet<wbr/>Type</span><span class="tsd-signature-symbol">:</span> <a href="../enums/OPNetTransactionTypes.html#Deployment" class="tsd-signature-type tsd-kind-enum-member">Deployment</a></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The type of the transaction.</p>
|
|
182
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#OPNetType">OPNetType</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
183
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#burnedBitcoin">burnedBitcoin</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
184
|
-
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
185
|
-
</div><aside class="tsd-sources"><p>
|
|
186
|
-
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
187
|
-
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
188
|
-
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
189
|
-
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
190
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#events">events</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
191
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#from">from</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
192
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
193
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
194
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
195
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
196
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
197
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
198
|
-
</div><aside class="tsd-sources"><
|
|
199
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
200
|
-
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/
|
|
201
|
-
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#
|
|
184
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#OPNetType">OPNetType</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L55">src/transactions/interfaces/ITransaction.ts:55</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="burnedBitcoin" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>burned<wbr/>Bitcoin</span><a href="#burnedBitcoin" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">burned<wbr/>Bitcoin</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">BigNumberish</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>Returns the amount of satoshi that were burned in the transaction.</p>
|
|
185
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#burnedBitcoin">burnedBitcoin</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L35">src/transactions/interfaces/ITransaction.ts:35</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="bytecode" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>bytecode</span><a href="#bytecode" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">bytecode</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The bytecode of the contract.</p>
|
|
186
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L29">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:29</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="contractAddress" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>contract<wbr/>Address</span><a href="#contractAddress" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">contract<wbr/>Address</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The sewgit generated address of the contract. (SAFE)</p>
|
|
187
|
+
</div><aside class="tsd-sources"><p>Overrides <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#contractAddress">contractAddress</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L14">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:14</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="contractSaltHash" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>contract<wbr/>Salt<wbr/>Hash</span><a href="#contractSaltHash" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">contract<wbr/>Salt<wbr/>Hash</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The salt verification hash of the contract.</p>
|
|
188
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L49">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:49</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="contractSeed" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>contract<wbr/>Seed</span><a href="#contractSeed" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">contract<wbr/>Seed</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The seed of the contract.</p>
|
|
189
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L44">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:44</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="deployerAddress" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>deployer<wbr/>Address</span><a href="#deployerAddress" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">deployer<wbr/>Address</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The address of the deployer. (ALWAYS TAPROOT. <em>This address is generated from the P2TR of the pubkey of the deployer.</em>)</p>
|
|
190
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L39">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:39</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="deployerPubKey" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>deployer<wbr/>Pub<wbr/>Key</span><a href="#deployerPubKey" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">deployer<wbr/>Pub<wbr/>Key</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The public key of the deployer.</p>
|
|
191
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L34">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:34</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="events" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>events</span><a href="#events" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">events</span><span class="tsd-signature-symbol">?:</span> <a href="../types/RawContractEvents.html" class="tsd-signature-type tsd-kind-type-alias">RawContractEvents</a><span class="tsd-signature-symbol"> | </span><a href="ContractEvents.html" class="tsd-signature-type tsd-kind-interface">ContractEvents</a></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The events of the transaction.</p>
|
|
192
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#events">events</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransactionReceipt.ts#L49">src/transactions/interfaces/ITransactionReceipt.ts:49</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="from" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>from</span><a href="#from" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">from</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>This indicates who sent the transaction.</p>
|
|
193
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#from">from</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/ICommonTransaction.ts#L8">src/transactions/interfaces/transactions/ICommonTransaction.ts:8</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="gasUsed" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>gas<wbr/>Used</span><a href="#gasUsed" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">gas<wbr/>Used</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">bigint</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The amount of gas used by the transaction.</p>
|
|
194
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#gasUsed">gasUsed</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L60">src/transactions/interfaces/ITransaction.ts:60</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="hash" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>hash</span><a href="#hash" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">hash</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The transaction "hash".</p>
|
|
195
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#hash">hash</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L25">src/transactions/interfaces/ITransaction.ts:25</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="id" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>id</span><a href="#id" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The transaction ID (hash).</p>
|
|
196
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#id">id</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L20">src/transactions/interfaces/ITransaction.ts:20</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="index" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>index</span><a href="#index" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">index</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The index of the transaction in the block.</p>
|
|
197
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#index">index</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L30">src/transactions/interfaces/ITransaction.ts:30</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="inputs" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>inputs</span><a href="#inputs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">inputs</span><span class="tsd-signature-symbol">:</span> <a href="ITransactionInput.html" class="tsd-signature-type tsd-kind-interface">ITransactionInput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../classes/TransactionInput.html" class="tsd-signature-type tsd-kind-class">TransactionInput</a><span class="tsd-signature-symbol">[]</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The inputs of the transaction.</p>
|
|
198
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#inputs">inputs</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L45">src/transactions/interfaces/ITransaction.ts:45</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="outputs" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>outputs</span><a href="#outputs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">outputs</span><span class="tsd-signature-symbol">:</span> <a href="ITransactionOutput.html" class="tsd-signature-type tsd-kind-interface">ITransactionOutput</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../classes/TransactionOutput.html" class="tsd-signature-type tsd-kind-class">TransactionOutput</a><span class="tsd-signature-symbol">[]</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The outputs of the transaction.</p>
|
|
199
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#outputs">outputs</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L50">src/transactions/interfaces/ITransaction.ts:50</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="p2trAddress" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>p2tr<wbr/>Address</span><a href="#p2trAddress" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">p2tr<wbr/>Address</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The P2TR address of the contract. (COULD BE EXPLOITABLE)</p>
|
|
200
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L19">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:19</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="receipt" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>receipt</span><a href="#receipt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">receipt</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The receipt of the transaction.</p>
|
|
201
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#receipt">receipt</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransactionReceipt.ts#L39">src/transactions/interfaces/ITransactionReceipt.ts:39</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="receiptProofs" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>receipt<wbr/>Proofs</span><a href="#receiptProofs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">receipt<wbr/>Proofs</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The receipt proofs of the transaction.</p>
|
|
202
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#receiptProofs">receiptProofs</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransactionReceipt.ts#L44">src/transactions/interfaces/ITransactionReceipt.ts:44</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="revert" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>revert</span><a href="#revert" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">revert</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>If the transaction was reverted, this field will contain the revert message.</p>
|
|
203
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#revert">revert</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/ITransaction.ts#L40">src/transactions/interfaces/ITransaction.ts:40</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="virtualAddress" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>virtual<wbr/>Address</span><a href="#virtualAddress" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">virtual<wbr/>Address</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>The virtual address of the contract.</p>
|
|
204
|
+
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/IDeploymentTransaction.ts#L24">src/transactions/interfaces/transactions/IDeploymentTransaction.ts:24</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="wasCompressed" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>was<wbr/>Compressed</span><a href="#wasCompressed" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">was<wbr/>Compressed</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><h4>Description</h4><p>Was the binary data compressed?</p>
|
|
205
|
+
</div><aside class="tsd-sources"><p>Inherited from <a href="ICommonTransaction.html">ICommonTransaction</a>.<a href="ICommonTransaction.html#wasCompressed">wasCompressed</a></p><ul><li>Defined in <a href="https://github.com/btc-vision/opnet/blob/94143015551720dff99af0a698d5822032f43146/src/transactions/interfaces/transactions/ICommonTransaction.ts#L18">src/transactions/interfaces/transactions/ICommonTransaction.ts:18</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#OPNetType" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>OPNet<wbr/>Type</span></a><a href="#burnedBitcoin" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>burned<wbr/>Bitcoin</span></a><a href="#bytecode" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>bytecode</span></a><a href="#contractAddress" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>contract<wbr/>Address</span></a><a href="#contractSaltHash" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>contract<wbr/>Salt<wbr/>Hash</span></a><a href="#contractSeed" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>contract<wbr/>Seed</span></a><a href="#deployerAddress" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>deployer<wbr/>Address</span></a><a href="#deployerPubKey" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>deployer<wbr/>Pub<wbr/>Key</span></a><a href="#events" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>events</span></a><a href="#from" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>from</span></a><a href="#gasUsed" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gas<wbr/>Used</span></a><a href="#hash" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>hash</span></a><a href="#id" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>id</span></a><a href="#index" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>index</span></a><a href="#inputs" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>inputs</span></a><a href="#outputs" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>outputs</span></a><a href="#p2trAddress" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>p2tr<wbr/>Address</span></a><a href="#receipt" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>receipt</span></a><a href="#receiptProofs" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>receipt<wbr/>Proofs</span></a><a href="#revert" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>revert</span></a><a href="#virtualAddress" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>virtual<wbr/>Address</span></a><a href="#wasCompressed" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>was<wbr/>Compressed</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>OPNet</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div><script>
|
|
202
206
|
try {
|
|
203
207
|
const generateLinkElement = document.querySelector(".tsd-generator a");
|
|
204
208
|
const link = document.createElement("a");
|