@keep-network/tbtc-v2 0.1.1-dev.13 → 0.1.1-dev.14
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/artifacts/TBTC.json +3 -3
- package/artifacts/TBTCToken.json +3 -3
- package/artifacts/VendingMachine.json +10 -10
- package/artifacts/solcInputs/{ae2bc16e265d94d570ec143fe628377f.json → 074b94f943fca615dfc6fce3bc4f2e1f.json} +8 -2
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
- package/build/contracts/bridge/Bridge.sol/Bridge.json +365 -2
- package/build/contracts/bridge/Bridge.sol/IRelay.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/contracts/bridge/BitcoinTx.sol +2 -1
- package/contracts/bridge/Bridge.sol +851 -53
- package/package.json +1 -1
|
@@ -116,8 +116,9 @@ library BitcoinTx {
|
|
|
116
116
|
/// @notice Represents info about an unspent transaction output.
|
|
117
117
|
struct UTXO {
|
|
118
118
|
/// @notice Hash of the transaction the output belongs to.
|
|
119
|
+
/// @dev Byte order corresponds to the Bitcoin internal byte order.
|
|
119
120
|
bytes32 txHash;
|
|
120
|
-
/// @notice Index of the transaction output.
|
|
121
|
+
/// @notice Index of the transaction output (0-indexed).
|
|
121
122
|
uint32 txOutputIndex;
|
|
122
123
|
/// @notice Value of the transaction output.
|
|
123
124
|
uint64 txOutputValue;
|