BTC Relay is an Ethereum contract for Bitcoin SPV. The main functionality it provides are:
- verification of a Bitcoin transaction
- optionally relay the Bitcoin transaction to any Ethereum contract
- storage of Bitcoin block headers
- inspection of the latest Bitcoin block header that is stored
BTC Relay is live on the testnet.
Verifies the presence of a transaction on the Bitcoin blockchain, primarily that the transaction is on Bitcoin's main chain and has at least 6 confirmations.
rawTransaction
- rawbytes
of the transactiontransactionIndex
- transaction's index within the block, asint256
merkleSibling
- array of the sibling hashes comprising the Merkle proof, asint256[]
blockHash
- hash of the block that contains the transaction, asint256
Returns uint256
- hash of the verified Bitcoin transaction
0
ifrawTransaction
is exactly 64 bytes in length or fails verification
Note: See examples/sampleCall.html including use of bitcoin-proof for constructing merkleSibling
.
Verifies a Bitcoin transaction per verifyTx()
and relays the verified transaction to the specified Ethereum contract.
rawTransaction
- rawbytes
of the transactiontransactionIndex
- transaction's index within the block, asint256
merkleSibling
- array of the sibling hashes comprising the Merkle proof, asint256[]
blockHash
- hash of the block that contains the transaction, asint256
contractAddress
- address of the Ethereum contract that will receive the verified Bitcoin transaction, asint256
The Ethereum contract should have a function of signature
processTransaction(bytes rawTransaction, uint256 transactionHash)
and is what
will be invoked by relayTx
if the transaction passes verification. For examples,
see BitcoinProcessor.sol
and example-btc-eth.
Returns int256
- value returned by the Ethereum contract's
processTransaction
function - or an error code, see constants.se
Store a single block header if it is valid, such as a valid Proof-of-Work and the previous block it reference exists.
blockHeader
- rawbytes
of the block header (not the hex string, but the actual bytes).
Returns int256
- block height of the header if it was successfully stored
0
otherwise
Store multiple block headers if they are valid.
bytesOfHeaders
- rawbytes
of the block headers (not the hex string, but the actual bytes), with one following immediately the other.numberOfHeaders
-int256
count of the number of headers being stored.
Returns int256
- block height of the last header if all block headers were successfully stored
0
if any of the block headers were not successfully stored
Note: See deploy/relayTest/testBulkDeploy.yaml for an example of the data for storing multiple headers. Also, to avoid exceeding Ethereum's block gas limit, a guideline is to store only 5 headers at time.
Get the 80 byte block header for a given blockHash
. A payment value of
getFeeAmount(blockHash)
must be provided in the transaction.
blockHash
- hash of the block asint256
Returns bytes
- block header, always as 80 bytes (all zeros if header does not exist)
- or
0
(as a single byte) if insufficient payment is provided
Get the block hash for a given blockHeight
.
blockHeight
- height of the block asint256
. Minimum value is1
.
Returns int256
- block hash
0
if not found
Returns the difference between the chainWork of the latest block and the 10th block prior.
This is provided in case an Ethereum contract wants to use the chainWork or Bitcoin network difficulty (which can be derived) as a data feed.
getBlockchainHead
- returns the hash of the latest block, asint256
getLastBlockHeight
- returns the block height of the latest block, as int256
See BitcoinRelayAbi.js for other APIs and relayContractStatus.html for an example of calling some of them.
The following APIs are described in Incentives for Relayers
below.
storeBlockWithFee()
, changeFeeRecipient()
, getFeeRecipient()
, getFeeAmount()
, getChangeRecipientFee()
-
sampleCall.html for calling
verifyTx
including use of bitcoin-proof for constructingmerkleSibling
. -
example-btc-eth for relaying a Bitcoin transaction to an Ethereum contract using
relayTx
. -
relayContractStatus.html for calling other basic functions.
Relayers are those who submit block headers to BTC Relay. To incentivize the community
to be relayers, and thus allow BTC Relay to be autonomous and up-to-date with the
Bitcoin blockchain, Relayers can call storeBlockWithFee
. The Relayer will be the
getFeeRecipient()
for the block they submit, and when any transactions are verified
in the block, or the header is retrieved via getBlockHeader
, the Relayer will be
rewarded with getFeeAmount()
.
To avoid a relayer R1 from setting excessing fees, it is possible for a relayer R2
to changeFeeRecipient()
. R2 must specify a fee lower than what R1 specified, and
pay getChangeRecipientFee()
to R1, but now R2 will be the getFeeRecipient()
for the block
and will earn all future getFeeAmount()
.
With this background, here are API details for incentives.
Store a single block header (like storeBlockHeader
) and
set a fee that will be charged for verifications that use blockHeader
.
blockHeader
- rawbytes
of the block header (not the hex string, but the actual bytes).fee
-int256
amount in wei.
Returns int256
- block height of the header if it was successfully stored
0
otherwise
Set the fee
and recipient
for a given blockHash
. The call must have msg.value
of at least getChangeRecipientFee()
, and must also specify a fee
lower than
the current getFeeAmount(blockHash)
.
blockHash
- hash of the block asint256
.fee
-int256
amount in wei.recipient
-int256
address of the recipient of fees.
Returns int256
1
if the fee and recipient were successfully set0
otherwise
Get the address that receives the fees for a given blockHash
.
blockHash
- hash of the block asint256
.
Returns int256
- address of the recipient
Get the fee amount in wei for verifications using a given blockHash
.
blockHash
- hash of the block asint256
.
Returns int256
- amount of the fee in wei.
Get the amount of wei required that must be sent to BTC Relay when calling
changeFeeRecipient
.
Returns int256
- amount of wei
Requirements
- Serpent
- pyethereum (for tests)
- pyepm (for deployment)
Exclude slow tests:
py.test test/ -s -m "not slow"
Run slow tests without veryslow tests
py.test test/ -s -m "slow and not veryslow"
All tests:
py.test test/ -s