@keep-network/tbtc-v2 0.1.1-dev.7 → 0.1.1-dev.72
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.adoc +12 -0
- package/artifacts/Bank.json +752 -0
- package/artifacts/Bridge.json +2556 -0
- package/artifacts/DefaultProxyAdmin.json +259 -0
- package/artifacts/Deposit.json +117 -0
- package/artifacts/DepositSweep.json +77 -0
- package/artifacts/EcdsaDkgValidator.json +533 -0
- package/artifacts/EcdsaInactivity.json +156 -0
- package/artifacts/Fraud.json +164 -0
- package/artifacts/KeepRegistry.json +99 -0
- package/artifacts/KeepStake.json +286 -0
- package/artifacts/KeepToken.json +711 -0
- package/artifacts/KeepTokenStaking.json +483 -0
- package/artifacts/MovingFunds.json +249 -0
- package/artifacts/NuCypherStakingEscrow.json +256 -0
- package/artifacts/NuCypherToken.json +711 -0
- package/artifacts/RandomBeaconStub.json +141 -0
- package/artifacts/Redemption.json +162 -0
- package/artifacts/ReimbursementPool.json +509 -0
- package/artifacts/Relay.json +123 -0
- package/artifacts/SortitionPool.json +1005 -0
- package/artifacts/T.json +1148 -0
- package/artifacts/TBTC.json +27 -26
- package/artifacts/TBTCToken.json +27 -26
- package/artifacts/TokenStaking.json +2288 -0
- package/artifacts/TokenholderGovernor.json +1795 -0
- package/artifacts/TokenholderTimelock.json +1058 -0
- package/artifacts/VendingMachine.json +30 -29
- package/artifacts/VendingMachineKeep.json +400 -0
- package/artifacts/VendingMachineNuCypher.json +400 -0
- package/artifacts/WalletRegistry.json +2117 -0
- package/artifacts/WalletRegistry_Implementation.json +2824 -0
- package/artifacts/WalletRegistry_Proxy.json +259 -0
- package/artifacts/Wallets.json +186 -0
- package/artifacts/solcInputs/1635d55d57a0a2552952c0d22586ed23.json +56 -0
- package/artifacts/solcInputs/55df7785455cbf6ded1b912686e91d3f.json +269 -0
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.json +2 -2
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.json +20 -2
- 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 +2546 -128
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +4 -0
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +220 -0
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +4 -0
- package/build/contracts/bridge/Deposit.sol/Deposit.json +72 -0
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +4 -0
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +30 -0
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +4 -0
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.json +10 -0
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +4 -0
- package/build/contracts/bridge/Fraud.sol/Fraud.json +86 -0
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +4 -0
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.json +10 -0
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +4 -0
- package/build/contracts/bridge/IRelay.sol/IRelay.json +37 -0
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +4 -0
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +138 -0
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +10 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.json +92 -0
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +4 -0
- package/build/contracts/bridge/Wallets.sol/Wallets.json +112 -0
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/token/TBTC.sol/TBTC.json +2 -2
- package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +4 -0
- package/build/contracts/vault/DonationVault.sol/DonationVault.json +103 -0
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.json +19 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +121 -7
- package/contracts/GovernanceUtils.sol +1 -1
- package/contracts/bank/Bank.sol +34 -18
- package/contracts/bridge/BitcoinTx.sol +231 -9
- package/contracts/bridge/Bridge.sol +1592 -211
- package/contracts/bridge/BridgeState.sol +713 -0
- package/contracts/bridge/Deposit.sol +269 -0
- package/contracts/bridge/DepositSweep.sol +571 -0
- package/contracts/bridge/EcdsaLib.sol +45 -0
- package/contracts/bridge/Fraud.sol +604 -0
- package/contracts/bridge/Heartbeat.sol +112 -0
- package/contracts/bridge/IRelay.sol +28 -0
- package/contracts/bridge/MovingFunds.sol +1080 -0
- package/contracts/bridge/Redemption.sol +866 -0
- package/contracts/bridge/VendingMachine.sol +1 -1
- package/contracts/bridge/Wallets.sol +553 -0
- package/contracts/hardhat-dependency-compiler/.hardhat-dependency-compiler +1 -0
- package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol +3 -0
- package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol +3 -0
- package/contracts/token/TBTC.sol +1 -1
- package/contracts/vault/DonationVault.sol +125 -0
- package/contracts/vault/IVault.sol +32 -10
- package/contracts/vault/TBTCVault.sol +53 -3
- package/deploy/00_resolve_relay.ts +28 -0
- package/deploy/00_resolve_wallet_registry.ts +83 -0
- package/deploy/04_deploy_bank.ts +27 -0
- package/deploy/05_deploy_bridge.ts +76 -0
- package/deploy/06_bank_update_bridge.ts +19 -0
- package/deploy/07_transfer_ownership.ts +15 -0
- package/deploy/08_transfer_governance.ts +20 -0
- package/deploy/09_transfer_proxy_admin_ownership.ts +23 -0
- package/deploy/10_deploy_proxy_admin_with_deputy.ts +33 -0
- package/export.json +16243 -475
- package/package.json +31 -24
- package/artifacts/solcInputs/25bea07ad744b8c97e466495ad2abf97.json +0 -128
package/contracts/bank/Bank.sol
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
// ▐████▌ ▐████▌
|
|
14
14
|
// ▐████▌ ▐████▌
|
|
15
15
|
|
|
16
|
-
pragma solidity 0.8.
|
|
16
|
+
pragma solidity ^0.8.9;
|
|
17
17
|
|
|
18
18
|
import "@openzeppelin/contracts/access/Ownable.sol";
|
|
19
19
|
|
|
@@ -114,6 +114,21 @@ contract Bank is Ownable {
|
|
|
114
114
|
_approveBalance(msg.sender, spender, amount);
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
/// @notice Sets `amount` as the allowance of a smart contract `vault` over
|
|
118
|
+
/// the caller's balance and calls the vault via
|
|
119
|
+
/// `receiveBalanceApproval`.
|
|
120
|
+
/// @dev If the `amount` is set to `type(uint256).max` then the logic in
|
|
121
|
+
/// `receiveBalanceApproval` or later call to `transferBalanceFrom` by
|
|
122
|
+
/// the vault will not reduce an allowance. Beware that changing an
|
|
123
|
+
/// allowance with this function brings the risk that vault may use
|
|
124
|
+
/// both the old and the new allowance by unfortunate transaction
|
|
125
|
+
/// ordering. Please use `increaseBalanceAllowance` and
|
|
126
|
+
/// `decreaseBalanceAllowance` to eliminate the risk.
|
|
127
|
+
function approveBalanceAndCall(address vault, uint256 amount) external {
|
|
128
|
+
_approveBalance(msg.sender, vault, amount);
|
|
129
|
+
IVault(vault).receiveBalanceApproval(msg.sender, amount);
|
|
130
|
+
}
|
|
131
|
+
|
|
117
132
|
/// @notice Atomically increases the balance allowance granted to `spender`
|
|
118
133
|
/// by the caller by the given `addedValue`.
|
|
119
134
|
function increaseBalanceAllowance(address spender, uint256 addedValue)
|
|
@@ -207,23 +222,22 @@ contract Bank is Ownable {
|
|
|
207
222
|
);
|
|
208
223
|
require(v == 27 || v == 28, "Invalid signature 'v' value");
|
|
209
224
|
|
|
210
|
-
bytes32 digest =
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
deadline
|
|
223
|
-
)
|
|
225
|
+
bytes32 digest = keccak256(
|
|
226
|
+
abi.encodePacked(
|
|
227
|
+
"\x19\x01",
|
|
228
|
+
DOMAIN_SEPARATOR(),
|
|
229
|
+
keccak256(
|
|
230
|
+
abi.encode(
|
|
231
|
+
PERMIT_TYPEHASH,
|
|
232
|
+
owner,
|
|
233
|
+
spender,
|
|
234
|
+
amount,
|
|
235
|
+
nonce[owner]++,
|
|
236
|
+
deadline
|
|
224
237
|
)
|
|
225
238
|
)
|
|
226
|
-
)
|
|
239
|
+
)
|
|
240
|
+
);
|
|
227
241
|
address recoveredAddress = ecrecover(digest, v, r, s);
|
|
228
242
|
require(
|
|
229
243
|
recoveredAddress != address(0) && recoveredAddress == owner,
|
|
@@ -286,7 +300,7 @@ contract Bank is Ownable {
|
|
|
286
300
|
totalAmount += depositedAmounts[i];
|
|
287
301
|
}
|
|
288
302
|
_increaseBalance(vault, totalAmount);
|
|
289
|
-
IVault(vault).
|
|
303
|
+
IVault(vault).receiveBalanceIncrease(depositors, depositedAmounts);
|
|
290
304
|
}
|
|
291
305
|
|
|
292
306
|
/// @notice Decreases caller's balance by the provided `amount`. There is no
|
|
@@ -342,7 +356,9 @@ contract Bank is Ownable {
|
|
|
342
356
|
|
|
343
357
|
uint256 spenderBalance = balanceOf[spender];
|
|
344
358
|
require(spenderBalance >= amount, "Transfer amount exceeds balance");
|
|
345
|
-
unchecked {
|
|
359
|
+
unchecked {
|
|
360
|
+
balanceOf[spender] = spenderBalance - amount;
|
|
361
|
+
}
|
|
346
362
|
balanceOf[recipient] += amount;
|
|
347
363
|
emit BalanceTransferred(spender, recipient, amount);
|
|
348
364
|
}
|
|
@@ -13,20 +13,26 @@
|
|
|
13
13
|
// ▐████▌ ▐████▌
|
|
14
14
|
// ▐████▌ ▐████▌
|
|
15
15
|
|
|
16
|
-
pragma solidity 0.8.
|
|
16
|
+
pragma solidity ^0.8.9;
|
|
17
|
+
|
|
18
|
+
import {BTCUtils} from "@keep-network/bitcoin-spv-sol/contracts/BTCUtils.sol";
|
|
19
|
+
import {BytesLib} from "@keep-network/bitcoin-spv-sol/contracts/BytesLib.sol";
|
|
20
|
+
import {ValidateSPV} from "@keep-network/bitcoin-spv-sol/contracts/ValidateSPV.sol";
|
|
21
|
+
|
|
22
|
+
import "./BridgeState.sol";
|
|
17
23
|
|
|
18
24
|
/// @title Bitcoin transaction
|
|
19
25
|
/// @notice Allows to reference Bitcoin raw transaction in Solidity.
|
|
20
26
|
/// @dev See https://developer.bitcoin.org/reference/transactions.html#raw-transaction-format
|
|
21
27
|
///
|
|
22
|
-
/// Raw
|
|
28
|
+
/// Raw Bitcoin transaction data:
|
|
23
29
|
///
|
|
24
30
|
/// | Bytes | Name | BTC type | Description |
|
|
25
31
|
/// |--------|--------------|------------------------|---------------------------|
|
|
26
32
|
/// | 4 | version | int32_t (LE) | TX version number |
|
|
27
33
|
/// | varies | tx_in_count | compactSize uint (LE) | Number of TX inputs |
|
|
28
34
|
/// | varies | tx_in | txIn[] | TX inputs |
|
|
29
|
-
/// | varies |
|
|
35
|
+
/// | varies | tx_out_count | compactSize uint (LE) | Number of TX outputs |
|
|
30
36
|
/// | varies | tx_out | txOut[] | TX outputs |
|
|
31
37
|
/// | 4 | lock_time | uint32_t (LE) | Unix time or block number |
|
|
32
38
|
///
|
|
@@ -36,8 +42,8 @@ pragma solidity 0.8.4;
|
|
|
36
42
|
/// | Bytes | Name | BTC type | Description |
|
|
37
43
|
/// |--------|------------------|------------------------|---------------------------------------------|
|
|
38
44
|
/// | 36 | previous_output | outpoint | The previous outpoint being spent |
|
|
39
|
-
/// | varies |
|
|
40
|
-
/// | varies |
|
|
45
|
+
/// | varies | script_bytes | compactSize uint (LE) | The number of bytes in the signature script |
|
|
46
|
+
/// | varies | signature_script | char[] | The signature script, empty for P2WSH |
|
|
41
47
|
/// | 4 | sequence | uint32_t (LE) | Sequence number |
|
|
42
48
|
///
|
|
43
49
|
///
|
|
@@ -68,17 +74,37 @@ pragma solidity 0.8.4;
|
|
|
68
74
|
///
|
|
69
75
|
/// (*) compactSize uint is often references as VarInt)
|
|
70
76
|
///
|
|
77
|
+
/// Coinbase transaction input (txIn):
|
|
78
|
+
///
|
|
79
|
+
/// | Bytes | Name | BTC type | Description |
|
|
80
|
+
/// |--------|------------------|------------------------|---------------------------------------------|
|
|
81
|
+
/// | 32 | hash | char[32] | A 32-byte 0x0 null (no previous_outpoint) |
|
|
82
|
+
/// | 4 | index | uint32_t (LE) | 0xffffffff (no previous_outpoint) |
|
|
83
|
+
/// | varies | script_bytes | compactSize uint (LE) | The number of bytes in the coinbase script |
|
|
84
|
+
/// | varies | height | char[] | The block height of this block (BIP34) (*) |
|
|
85
|
+
/// | varies | coinbase_script | none | Arbitrary data, max 100 bytes |
|
|
86
|
+
/// | 4 | sequence | uint32_t (LE) | Sequence number
|
|
87
|
+
///
|
|
88
|
+
/// (*) Uses script language: starts with a data-pushing opcode that indicates how many bytes to push to
|
|
89
|
+
/// the stack followed by the block height as a little-endian unsigned integer. This script must be as
|
|
90
|
+
/// short as possible, otherwise it may be rejected. The data-pushing opcode will be 0x03 and the total
|
|
91
|
+
/// size four bytes until block 16,777,216 about 300 years from now.
|
|
71
92
|
library BitcoinTx {
|
|
72
|
-
|
|
73
|
-
|
|
93
|
+
using BTCUtils for bytes;
|
|
94
|
+
using BTCUtils for uint256;
|
|
95
|
+
using BytesLib for bytes;
|
|
96
|
+
using ValidateSPV for bytes;
|
|
97
|
+
using ValidateSPV for bytes32;
|
|
98
|
+
|
|
99
|
+
/// @notice Represents Bitcoin transaction data.
|
|
74
100
|
struct Info {
|
|
75
101
|
/// @notice Bitcoin transaction version
|
|
76
|
-
/// @dev `version` from raw
|
|
102
|
+
/// @dev `version` from raw Bitcoin transaction data.
|
|
77
103
|
/// Encoded as 4-bytes signed integer, little endian.
|
|
78
104
|
bytes4 version;
|
|
79
105
|
/// @notice All Bitcoin transaction inputs, prepended by the number of
|
|
80
106
|
/// transaction inputs.
|
|
81
|
-
/// @dev `tx_in_count | tx_in` from raw
|
|
107
|
+
/// @dev `tx_in_count | tx_in` from raw Bitcoin transaction data.
|
|
82
108
|
///
|
|
83
109
|
/// The number of transaction inputs encoded as compactSize
|
|
84
110
|
/// unsigned integer, little-endian.
|
|
@@ -100,5 +126,201 @@ library BitcoinTx {
|
|
|
100
126
|
/// @dev `lock_time` from raw Bitcoin transaction data.
|
|
101
127
|
/// Encoded as 4-bytes unsigned integer, little endian.
|
|
102
128
|
bytes4 locktime;
|
|
129
|
+
// This struct doesn't contain `__gap` property as the structure is not
|
|
130
|
+
// stored, it is used as a function's calldata argument.
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/// @notice Represents data needed to perform a Bitcoin SPV proof.
|
|
134
|
+
struct Proof {
|
|
135
|
+
/// @notice The merkle proof of transaction inclusion in a block.
|
|
136
|
+
bytes merkleProof;
|
|
137
|
+
/// @notice Transaction index in the block (0-indexed).
|
|
138
|
+
uint256 txIndexInBlock;
|
|
139
|
+
/// @notice Single byte-string of 80-byte bitcoin headers,
|
|
140
|
+
/// lowest height first.
|
|
141
|
+
bytes bitcoinHeaders;
|
|
142
|
+
// This struct doesn't contain `__gap` property as the structure is not
|
|
143
|
+
// stored, it is used as a function's calldata argument.
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/// @notice Represents info about an unspent transaction output.
|
|
147
|
+
struct UTXO {
|
|
148
|
+
/// @notice Hash of the transaction the output belongs to.
|
|
149
|
+
/// @dev Byte order corresponds to the Bitcoin internal byte order.
|
|
150
|
+
bytes32 txHash;
|
|
151
|
+
/// @notice Index of the transaction output (0-indexed).
|
|
152
|
+
uint32 txOutputIndex;
|
|
153
|
+
/// @notice Value of the transaction output.
|
|
154
|
+
uint64 txOutputValue;
|
|
155
|
+
// This struct doesn't contain `__gap` property as the structure is not
|
|
156
|
+
// stored, it is used as a function's calldata argument.
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/// @notice Represents Bitcoin signature in the R/S/V format.
|
|
160
|
+
struct RSVSignature {
|
|
161
|
+
/// @notice Signature r value.
|
|
162
|
+
bytes32 r;
|
|
163
|
+
/// @notice Signature s value.
|
|
164
|
+
bytes32 s;
|
|
165
|
+
/// @notice Signature recovery value.
|
|
166
|
+
uint8 v;
|
|
167
|
+
// This struct doesn't contain `__gap` property as the structure is not
|
|
168
|
+
// stored, it is used as a function's calldata argument.
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/// @notice Validates the SPV proof of the Bitcoin transaction.
|
|
172
|
+
/// Reverts in case the validation or proof verification fail.
|
|
173
|
+
/// @param txInfo Bitcoin transaction data
|
|
174
|
+
/// @param proof Bitcoin proof data
|
|
175
|
+
/// @return txHash Proven 32-byte transaction hash.
|
|
176
|
+
function validateProof(
|
|
177
|
+
BridgeState.Storage storage self,
|
|
178
|
+
Info calldata txInfo,
|
|
179
|
+
Proof calldata proof
|
|
180
|
+
) internal view returns (bytes32 txHash) {
|
|
181
|
+
require(
|
|
182
|
+
txInfo.inputVector.validateVin(),
|
|
183
|
+
"Invalid input vector provided"
|
|
184
|
+
);
|
|
185
|
+
require(
|
|
186
|
+
txInfo.outputVector.validateVout(),
|
|
187
|
+
"Invalid output vector provided"
|
|
188
|
+
);
|
|
189
|
+
|
|
190
|
+
txHash = abi
|
|
191
|
+
.encodePacked(
|
|
192
|
+
txInfo.version,
|
|
193
|
+
txInfo.inputVector,
|
|
194
|
+
txInfo.outputVector,
|
|
195
|
+
txInfo.locktime
|
|
196
|
+
)
|
|
197
|
+
.hash256View();
|
|
198
|
+
|
|
199
|
+
require(
|
|
200
|
+
txHash.prove(
|
|
201
|
+
proof.bitcoinHeaders.extractMerkleRootLE(),
|
|
202
|
+
proof.merkleProof,
|
|
203
|
+
proof.txIndexInBlock
|
|
204
|
+
),
|
|
205
|
+
"Tx merkle proof is not valid for provided header and tx hash"
|
|
206
|
+
);
|
|
207
|
+
|
|
208
|
+
evaluateProofDifficulty(self, proof.bitcoinHeaders);
|
|
209
|
+
|
|
210
|
+
return txHash;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/// @notice Evaluates the given Bitcoin proof difficulty against the actual
|
|
214
|
+
/// Bitcoin chain difficulty provided by the relay oracle.
|
|
215
|
+
/// Reverts in case the evaluation fails.
|
|
216
|
+
/// @param bitcoinHeaders Bitcoin headers chain being part of the SPV
|
|
217
|
+
/// proof. Used to extract the observed proof difficulty
|
|
218
|
+
function evaluateProofDifficulty(
|
|
219
|
+
BridgeState.Storage storage self,
|
|
220
|
+
bytes memory bitcoinHeaders
|
|
221
|
+
) internal view {
|
|
222
|
+
IRelay relay = self.relay;
|
|
223
|
+
uint256 currentEpochDifficulty = relay.getCurrentEpochDifficulty();
|
|
224
|
+
uint256 previousEpochDifficulty = relay.getPrevEpochDifficulty();
|
|
225
|
+
|
|
226
|
+
uint256 requestedDiff = 0;
|
|
227
|
+
uint256 firstHeaderDiff = bitcoinHeaders
|
|
228
|
+
.extractTarget()
|
|
229
|
+
.calculateDifficulty();
|
|
230
|
+
|
|
231
|
+
if (firstHeaderDiff == currentEpochDifficulty) {
|
|
232
|
+
requestedDiff = currentEpochDifficulty;
|
|
233
|
+
} else if (firstHeaderDiff == previousEpochDifficulty) {
|
|
234
|
+
requestedDiff = previousEpochDifficulty;
|
|
235
|
+
} else {
|
|
236
|
+
revert("Not at current or previous difficulty");
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
uint256 observedDiff = bitcoinHeaders.validateHeaderChain();
|
|
240
|
+
|
|
241
|
+
require(
|
|
242
|
+
observedDiff != ValidateSPV.getErrBadLength(),
|
|
243
|
+
"Invalid length of the headers chain"
|
|
244
|
+
);
|
|
245
|
+
require(
|
|
246
|
+
observedDiff != ValidateSPV.getErrInvalidChain(),
|
|
247
|
+
"Invalid headers chain"
|
|
248
|
+
);
|
|
249
|
+
require(
|
|
250
|
+
observedDiff != ValidateSPV.getErrLowWork(),
|
|
251
|
+
"Insufficient work in a header"
|
|
252
|
+
);
|
|
253
|
+
|
|
254
|
+
require(
|
|
255
|
+
observedDiff >= requestedDiff * self.txProofDifficultyFactor,
|
|
256
|
+
"Insufficient accumulated difficulty in header chain"
|
|
257
|
+
);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/// @notice Extracts public key hash from the provided P2PKH or P2WPKH output.
|
|
261
|
+
/// Reverts if the validation fails.
|
|
262
|
+
/// @param output The transaction output
|
|
263
|
+
/// @return pubKeyHash 20-byte public key hash the output locks funds on
|
|
264
|
+
/// @dev Requirements:
|
|
265
|
+
/// - The output must be of P2PKH or P2WPKH type and lock the funds
|
|
266
|
+
/// on a 20-byte public key hash
|
|
267
|
+
function extractPubKeyHash(BridgeState.Storage storage, bytes memory output)
|
|
268
|
+
internal
|
|
269
|
+
view
|
|
270
|
+
returns (bytes20 pubKeyHash)
|
|
271
|
+
{
|
|
272
|
+
bytes memory pubKeyHashBytes = output.extractHash();
|
|
273
|
+
|
|
274
|
+
require(
|
|
275
|
+
pubKeyHashBytes.length == 20,
|
|
276
|
+
"Output's public key hash must have 20 bytes"
|
|
277
|
+
);
|
|
278
|
+
|
|
279
|
+
pubKeyHash = pubKeyHashBytes.slice20(0);
|
|
280
|
+
|
|
281
|
+
// We need to make sure that the 20-byte public key hash
|
|
282
|
+
// is actually used in the right context of a P2PKH or P2WPKH
|
|
283
|
+
// output. To do so, we must extract the full script from the output
|
|
284
|
+
// and compare with the expected P2PKH and P2WPKH scripts
|
|
285
|
+
// referring to that 20-byte public key hash. The output consists
|
|
286
|
+
// of an 8-byte value and a variable length script. To extract the
|
|
287
|
+
// script we slice the output starting from 9th byte until the end.
|
|
288
|
+
bytes32 outputScriptKeccak = keccak256(
|
|
289
|
+
output.slice(8, output.length - 8)
|
|
290
|
+
);
|
|
291
|
+
// Build the expected P2PKH script which has the following byte
|
|
292
|
+
// format: <0x1976a914> <20-byte PKH> <0x88ac>. According to
|
|
293
|
+
// https://en.bitcoin.it/wiki/Script#Opcodes this translates to:
|
|
294
|
+
// - 0x19: Byte length of the entire script
|
|
295
|
+
// - 0x76: OP_DUP
|
|
296
|
+
// - 0xa9: OP_HASH160
|
|
297
|
+
// - 0x14: Byte length of the public key hash
|
|
298
|
+
// - 0x88: OP_EQUALVERIFY
|
|
299
|
+
// - 0xac: OP_CHECKSIG
|
|
300
|
+
// which matches the P2PKH structure as per:
|
|
301
|
+
// https://en.bitcoin.it/wiki/Transaction#Pay-to-PubkeyHash
|
|
302
|
+
bytes32 P2PKHScriptKeccak = keccak256(
|
|
303
|
+
abi.encodePacked(hex"1976a914", pubKeyHash, hex"88ac")
|
|
304
|
+
);
|
|
305
|
+
// Build the expected P2WPKH script which has the following format:
|
|
306
|
+
// <0x160014> <20-byte PKH>. According to
|
|
307
|
+
// https://en.bitcoin.it/wiki/Script#Opcodes this translates to:
|
|
308
|
+
// - 0x16: Byte length of the entire script
|
|
309
|
+
// - 0x00: OP_0
|
|
310
|
+
// - 0x14: Byte length of the public key hash
|
|
311
|
+
// which matches the P2WPKH structure as per:
|
|
312
|
+
// https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki#P2WPKH
|
|
313
|
+
bytes32 P2WPKHScriptKeccak = keccak256(
|
|
314
|
+
abi.encodePacked(hex"160014", pubKeyHash)
|
|
315
|
+
);
|
|
316
|
+
// Make sure the actual output script matches either the P2PKH
|
|
317
|
+
// or P2WPKH format.
|
|
318
|
+
require(
|
|
319
|
+
outputScriptKeccak == P2PKHScriptKeccak ||
|
|
320
|
+
outputScriptKeccak == P2WPKHScriptKeccak,
|
|
321
|
+
"Output must be P2PKH or P2WPKH"
|
|
322
|
+
);
|
|
323
|
+
|
|
324
|
+
return pubKeyHash;
|
|
103
325
|
}
|
|
104
326
|
}
|