• Stars
    star
    612
  • Rank 73,287 (Top 2 %)
  • Language
    Python
  • License
    MIT License
  • Created over 9 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Ethereum contract for Bitcoin SPV: Live on https://etherscan.io/address/0x41f274c0023f83391de4e0733c609df5a124c3d4

BTC Relay

Join the chat at https://gitter.im/ethereum/btcrelay

BTC Relay is an Ethereum contract for Bitcoin SPV. The main functionality it provides are:

  1. verification of a Bitcoin transaction
  2. optionally relay the Bitcoin transaction to any Ethereum contract
  3. storage of Bitcoin block headers
  4. inspection of the latest Bitcoin block header stored in the contract

BTC Relay contract address and ABI:

The address and ABI is all that's needed to use BTC Relay, in addition to the API documentation below.

API

verifyTx(rawTransaction, transactionIndex, merkleSibling, blockHash)

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 - raw bytes of the transaction
  • transactionIndex - transaction's index within the block, as int256
  • merkleSibling - array of the sibling hashes comprising the Merkle proof, as int256[]
  • blockHash - hash of the block that contains the transaction, as int256

Returns uint256

  • hash of the verified Bitcoin transaction
  • 0 if rawTransaction is exactly 64 bytes in length or fails verification

Note: See examples/sampleCall.html including use of bitcoin-proof for constructing merkleSibling.


relayTx(rawTransaction, transactionIndex, merkleSibling, blockHash, contractAddress)

Verifies a Bitcoin transaction per verifyTx() and relays the verified transaction to the specified Ethereum contract.

  • rawTransaction - raw bytes of the transaction
  • transactionIndex - transaction's index within the block, as int256
  • merkleSibling - array of the sibling hashes comprising the Merkle proof, as int256[]
  • blockHash - hash of the block that contains the transaction, as int256
  • contractAddress - address of the processor contract that will receive the verified Bitcoin transaction, as int256

The processor contract at contractAddress should have a function of signature processTransaction(bytes rawTransaction, uint256 transactionHash) returns (int256) and is what will be invoked by relayTx if the transaction passes verification. For examples, see BitcoinProcessor.sol and testnetSampleRelayTx.html.

Returns int256

  • value returned by the processor contract's processTransaction function
  • or ERR_RELAY_VERIFY, see constants.se

Note: Callers cannot be 100% certain when an ERR_RELAY_VERIFY occurs because it may also have been returned by processTransaction(). Callers should be aware of the contract that they are relaying transactions to, and understand what the processor contract's processTransaction method returns.


storeBlockHeader(blockHeader)

Store a single block header if it is valid, such as a valid Proof-of-Work and the previous block it reference exists.

  • blockHeader - raw bytes 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

bulkStoreHeader(bytesOfHeaders, numberOfHeaders)

Store multiple block headers if they are valid.

  • bytesOfHeaders - raw bytes 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.


getBlockHeader(blockHash)

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 as int256

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

getBlockHash(blockHeight)

Get the block hash for a given blockHeight.

  • blockHeight - height of the block as int256. Minimum value is 1.

Returns int256

  • block hash
  • 0 if not found

getAverageChainWork()

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(), getLastBlockHeight(), others

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 testnetContractStatus.html for an example of calling some of them.


Incentives

The following APIs are described in Incentives for Relayers below.

storeBlockWithFee(), changeFeeRecipient(), getFeeRecipient(), getFeeAmount(), getChangeRecipientFee()


Examples

Examples for how to use BTC Relay include:


How to use BTC Relay

The easiest way to use BTC Relay is via relayTx because the ABI can remain on the frontend.

testnetSampleRelayTx.html shows how a Bitcoin transaction from the frontend can be passed (relayed) to an Ethereum contract.

See other examples for other ways to use BTC Relay and the docs for FAQ.

Libs/utils

Thanks to those who wrote these:


Incentives for Relayers

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 excessive 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.

storeBlockWithFee(blockHeader, fee)

Store a single block header (like storeBlockHeader) and set a fee that will be charged for verifications that use blockHeader.

  • blockHeader - raw bytes 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

changeFeeRecipient(blockHash, fee, recipient)

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 as int256.
  • fee - int256 amount in wei.
  • recipient - int256 address of the recipient of fees.

Returns int256

  • 1 if the fee and recipient were successfully set
  • 0 otherwise

getFeeRecipient(blockHash)

Get the address that receives the fees for a given blockHash.

  • blockHash - hash of the block as int256.

Returns int256

  • address of the recipient

getFeeAmount(blockHash)

Get the fee amount in wei for verifications using a given blockHash.

  • blockHash - hash of the block as int256.

Returns int256

  • amount of the fee in wei.

getChangeRecipientFee()

Get the amount of wei required that must be sent to BTC Relay when calling changeFeeRecipient.

Returns int256

  • amount of wei

Development

Requirements

Running tests

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

License

See full MIT License including:

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

More Repositories

1

go-ethereum

Go implementation of the Ethereum protocol
Go
47,050
star
2

solidity

Solidity, the Smart Contract Programming Language
C++
23,106
star
3

wiki

The Ethereum Wiki
14,759
star
4

EIPs

The Ethereum Improvement Proposal repository
Python
12,522
star
5

mist

[DEPRECATED] Mist. Browse and use Ðapps on the Ethereum network.
JavaScript
7,442
star
6

web3.py

A python interface for interacting with the Ethereum blockchain and ecosystem.
Python
4,941
star
7

ethereum-org-website

Ethereum.org is a primary online resource for the Ethereum community.
Markdown
4,230
star
8

aleth

Aleth – Ethereum C++ client, tools and libraries
C++
3,963
star
9

consensus-specs

Ethereum Proof-of-Stake Consensus Specifications
Python
3,514
star
10

pyethereum

Next generation cryptocurrency network
2,667
star
11

remix-project

Remix is a browser-based compiler and IDE that enables users to build Ethereum contracts with Solidity language and to debug transactions.
TypeScript
2,442
star
12

py-evm

A Python implementation of the Ethereum Virtual Machine
Python
2,262
star
13

remix-ide

Documentation for Remix IDE
2,260
star
14

ethereumj

DEPRECATED! Java implementation of the Ethereum yellowpaper. For JSON-RPC and other client features check Ethereum Harmony
Java
2,181
star
15

research

Python
1,798
star
16

yellowpaper

The "Yellow Paper": Ethereum's formal specification
TeX
1,644
star
17

fe

Emerging smart contract language for the Ethereum blockchain.
Rust
1,611
star
18

pm

Project Management: Meeting notes and agenda items
Python
1,587
star
19

solc-js

Javascript bindings for the Solidity compiler
TypeScript
1,449
star
20

remix

This has been moved to https://github.com/ethereum/remix-project
JavaScript
1,177
star
21

remix-desktop

Remix IDE desktop
JavaScript
1,025
star
22

dapp-bin

A place for all the ÐApps to live
JavaScript
1,023
star
23

execution-apis

Collection of APIs provided by Ethereum execution layer clients
Io
949
star
24

devp2p

Ethereum peer-to-peer networking specifications
JavaScript
910
star
25

evmone

Fast Ethereum Virtual Machine implementation
C++
841
star
26

execution-specs

Specification for the Execution Layer. Tracking network upgrades.
Python
839
star
27

kzg-ceremony

Resources and documentation related to the ongoing Ethereum KZG Ceremony.
820
star
28

sourcify

Decentralized Solidity contract source code verification service
TypeScript
779
star
29

js-ethereum-cryptography

Every cryptographic primitive needed to work on Ethereum, for the browser and Node.js
TypeScript
702
star
30

casper

Casper contract, and related software and tests
Python
685
star
31

meteor-dapp-wallet

This is an archived repository of one of the early Ethereum wallets.
JavaScript
598
star
32

tests

Common tests for all Ethereum implementations
Python
550
star
33

solidity-examples

Loose collection of Solidity example code
Solidity
532
star
34

staking-deposit-cli

Secure key generation for deposits
Python
528
star
35

webthree-umbrella

Former home of cpp-ethereum (Oct 2015 to Aug 2016)
492
star
36

sharding

Sharding manager contract, and related software and tests
Python
480
star
37

homebrew-ethereum

Homebrew Tap for Ethereum
Ruby
478
star
38

trinity

The Trinity client for the Ethereum network
Python
476
star
39

ethereum-org

[ARCHIVED] ethereum.org website from 2016-2019. See https://github.com/ethereum/ethereum-org-website for current version.
HTML
407
star
40

hive

Ethereum end-to-end test harness
Go
399
star
41

solc-bin

This repository contains current and historical builds of the Solidity Compiler.
JavaScript
397
star
42

lahja

Lahja is a generic multi process event bus implementation written in Python 3.6+ to enable lightweight inter-process communication, based on non-blocking asyncio
Python
392
star
43

trin

An Ethereum portal client: a json-rpc server with nearly instant sync, and low CPU & storage usage
Rust
371
star
44

evmlab

Utilities for interacting with the Ethereum virtual machine
Python
361
star
45

serpent

C++
360
star
46

eth-tester

Tool suite for testing ethereum applications.
Python
350
star
47

evmc

EVMC – Ethereum Client-VM Connector API
C
346
star
48

ERCs

The Ethereum Request for Comment repository
Solidity
339
star
49

beacon-APIs

Collection of RESTful APIs provided by Ethereum Beacon nodes
HTML
328
star
50

annotated-spec

Vitalik's annotated eth2 spec. Not intended to be "the" annotated spec; other documents like Ben Edgington's https://benjaminion.xyz/eth2-annotated-spec/ also exist. This one is intended to focus more on design rationale.
318
star
51

populus

The Ethereum development framework with the most cute animal pictures
316
star
52

eth-utils

Utility functions for working with ethereum related codebases.
Python
306
star
53

homestead-guide

Python
292
star
54

portal-network-specs

Official repository for specifications for the Portal Network
JavaScript
290
star
55

staking-launchpad

The deposit launchpad for staking on Ethereum 🦏
TypeScript
271
star
56

eth-account

Account abstraction library for web3.py
Python
268
star
57

eth2.0-pm

ETH2.0 project management
Python
261
star
58

ropsten

Ropsten public testnet PoW chain
Jupyter Notebook
260
star
59

remix-live

Live deployment of the remix IDE
JavaScript
230
star
60

hevm

symbolic EVM evaluator
Haskell
228
star
61

cbc-casper

Python
228
star
62

eth-abi

Ethereum ABI utilities for python
Python
223
star
63

act

Smart contract specification language
Haskell
216
star
64

beacon_chain

Python
208
star
65

go-verkle

A go implementation of Verkle trees
Go
207
star
66

emacs-solidity

The official solidity-mode for EMACS
Emacs Lisp
201
star
67

moon-lang

Minimal code-interchange format
MoonScript
193
star
68

ethash

C
189
star
69

py_ecc

Python implementation of ECC pairing and bn_128 and bls12_381 curve operations
Python
186
star
70

remixd

remix server
TypeScript
182
star
71

py-solc

Python wrapper around the solc Solidity compiler.
Python
181
star
72

browser-solidity

Fomer location of remix-ide => https://github.com/ethereum/remix-ide
JavaScript
179
star
73

builder-specs

Specification for the external block builders.
HTML
177
star
74

grid

[DEPRECATED] Download, configure, and run Ethereum nodes and tools
JavaScript
175
star
75

pos-evolution

Evolution of the Ethereum Proof-of-Stake Consensus Protocol
168
star
76

evmjit

The Ethereum EVM JIT
C++
166
star
77

mix

The Mix Ethereum Dapp Development Tool
JavaScript
164
star
78

eth-keys

A common API for Ethereum key operations.
Python
162
star
79

solidity-underhanded-contest

Website for the Underhanded Solidity Contest
Solidity
162
star
80

remix-plugin

TypeScript
161
star
81

meteor-dapp-whisper-chat-client

JavaScript
151
star
82

rig

Robust Incentives Group
HTML
121
star
83

public-disclosures

117
star
84

economic-modeling

Python
117
star
85

snake-charmers-tactical-manual

Development *stuff* for the Snake Charmers EF team
114
star
86

node-crawler

Attempts to crawl the Ethereum network of valid Ethereum execution nodes and visualizes them in a nice web dashboard.
Go
112
star
87

c-kzg-4844

A minimal implementation of the Polynomial Commitments API for EIP-4844 and EIP-7594, written in C.
C
111
star
88

kzg-ceremony-specs

Specs for Ethereum's KZG Powers of Tau Ceremony
108
star
89

py-trie

Python library which implements the Ethereum Trie structure.
Python
104
star
90

py-wasm

A python implementation of the web assembly interpreter
Python
103
star
91

eth-hash

The Ethereum hashing function, keccak256, sometimes (erroneously) called sha256 or sha3
Python
103
star
92

execution-spec-tests

A Python framework and collection of test cases to generate test vectors for Ethereum execution clients
Python
102
star
93

remix-workshops

Solidity
100
star
94

py-geth

Python wrapping for running Go-Ethereum as a subprocess
Python
99
star
95

swarm-dapps

Swarm Đapp Examples
JavaScript
98
star
96

remix-vscode

Remix VS Code extension
TypeScript
96
star
97

pyrlp

The python RLP serialization library
Python
96
star
98

ens-registrar-dapp

Registrar DApp for the Ethereum Name Service
JavaScript
94
star
99

dapp-styles

HTML
93
star
100

retesteth

testeth via RPC. Test run, generation by t8ntool protocol
C++
93
star