Skip to content
forked from eigerco/beerus

Beerus is a trustless StarkNet Light Client, ⚑blazing fast ⚑ and powered by Rust πŸ¦€

License

Notifications You must be signed in to change notification settings

ltfschoen/beerus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


GitHub Workflow Status Project license Pull Requests welcome

Table of Contents

About

Beerus is a StarkNet Light Client inspired by and using helios. The goal is to provide a simple and easy to use client to query StarkNet state and interact with contracts.

Built With

Architecture

Here is a high level overview of the architecture of Beerus.

Beerus architecture

Simple usage overview

Here is a simple overview of how Beerus work. The example is for querying a storage value of a StarkNet contract.

Beerus Query Contract Storage

Endpoint support

Here are all the endpoints supported by Beerus in tag v0.2.0

Starknet endpoints (in compliance with Starknet specs):

Endpoint Supported
starknet_getBlockWithTxHashes βœ…
starknet_getBlockWithTxs βœ…
starknet_getStateUpdate βœ…
starknet_getStorageAt ❌
starknet_getTransactionByHash βœ…
starknet_getTransactionByBlockIdAndIndex βœ…
starknet_getTransactionReceipt βœ…
starknet_getClass βœ…
starknet_getClassHashAt βœ…
starknet_getClassAt βœ…
starknet_getBlockTransactionCount βœ…
starknet_call ❌
starknet_estimateFee βœ…
starknet_blockNumber βœ…
starknet_blockHashAndNumber βœ…
starknet_chainId βœ…
starknet_pendingTransactions βœ…
starknet_syncing βœ…
starknet_getEvents βœ…
starknet_getNonce βœ…

Ethereum endpoints (in compliance with Helios specs):

Endpoint Supported
eth_getBalance βœ…
eth_getTransactionCount βœ…
eth_getCode βœ…
eth_call βœ…
eth_estimateGas βœ…
eth_getChainId βœ…
eth_gasPrice βœ…
eth_maxPriorityFeePerGas βœ…
eth_blockNumber βœ…
eth_getBlockByNumber βœ…
eth_getBlockByHash βœ…
eth_sendRawTransaction βœ…
eth_getTransactionReceipt βœ…
eth_getLogs βœ…
eth_getStorageAt βœ…
eth_getBlockTransactionCountByHash βœ…
eth_getBlockTransactionCountByNumber βœ…
eth_coinbase βœ…
eth_syncing βœ…

Additional endpoints:

Endpoint Supported
starknet_l1_to_l2_messages βœ…
starknet_l1_to_l2_message_nonce βœ…
starknet_l1_to_l2_message_cancellations βœ…
starknet_l2_to_l1_messages βœ…
starknet_addDeclareTransaction βœ…
starknet_addDeployAccountTransaction βœ…
starknet_getContractStorageProof ❌
starknet_addInvokeTransaction ❌

Getting Started

Installation

Beerusup

To install with beerusup:

curl -sL https://raw.githubusercontent.com/keep-starknet-strange/beerus/main/beerusup | sh

Build

cargo build --all --release

Build beerus-core for WASM:

cargo build -p beerus-core --no-default-features --target wasm32-unknown-unknown --release

Test

cargo test --all

Config

The project requires an Ethereum node and a Starknet node. For Ethereum nodes you can use Alchemy (not Infura since it does not support getProof endpoint).

Ethereum execution layer RPC URL (must be an Ethereum provider that supports the eth_getProof endpoint).

Ethereum consensus layer RPC URL (must be a consensus node that supports the light client beacon chain api)

For StarkNet node for the moment you can use Infura but soon verify proof will be implemented in Pathfinder nodes, and so will these nodes be working as well.

Env Var TOML Mainnet Goerli
ETHEREUM_NETWORK ethereum_network mainnet goerli(default)
ETHEREUM_EXECUTION_RPC_URL ethereum_consensus_rpc https://eth-mainnet.g.alchemy.com/v2/XXXXX https://eth-goerli.g.alchemy.com/v2/XXXXX
ETHEREUM_CONSENSUS_RPC_URL ethereum_execution_rpc https://www.lightclientdata.org http://testing.prater.beacon-api.nimbus.team
STARKNET_RPC_URL starknet_rpc https://starknet-mainnet.infura.io/v3/XXXXX https://starknet-goerli.infura.io/v3/XXXXX
Config File

Beerus is configurable via a config toml. If you have set the env var BEERUS_CONFIG = path/to/config this will override all other environment variables and take configuration from values defined herein. Also the the cli can be directed via beerus --config <path/to/config>

goerli.toml

mainnet.toml

Environment Variables

Beerus is configurable through environment variables.

cp examples/.env.example .env
source .env
Beerus CLI
cargo run --bin beerus starknet query-state-root
Beerus RPC
cargo run --bin beerus-rpc
Beerus JS(wasm demo)

Dependencies:

  • npm
  • CORS bypass
  • local pathfinder node at http://localhost:9545
  • execution env var - ETHEREUM_EXECUTION_RPC_URL
cd crates/beerus-js

# install node deps
npm i

# build webpack & wasm modules
npm run build

# run example
./run.sh

# navigate browser to http://localhost:8080
# open developer console

Roadmap

See the open issues for a list of proposed features (and known issues).

Support

Reach out to the maintainer at one of the following places:

Project assistance

If you want to say thank you or/and support active development of Beerus:

  • Add a GitHub Star to the project.
  • Tweet about the Beerus.
  • Write interesting articles about the project on Dev.to, Medium or your personal blog.

Together, we can make Beerus better!

Contributing

First off, thanks for taking the time to contribute! Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.

Please read our contribution guidelines, and thank you for being involved!

Security

Beerus follows good practices of security, but 100% security cannot be assured. Beerus is provided "as is" without any warranty. Use at your own risk.

_For more information and to report security issues, please refer to our security documentation.

Acknowledgements

  • Huge props to A16z for their work on helios.

Contributors ✨

The contributors page.

Thanks goes to these wonderful people (emoji key):

Abdel @ StarkWare
Abdel @ StarkWare

⚠️ πŸ’»
Lucas @ StarkWare
Lucas @ StarkWare

πŸ’»
danilowhk
danilowhk

πŸ’»
ClΓ©ment Walter
ClΓ©ment Walter

πŸ’»
Elias Tazartes
Elias Tazartes

πŸ’»
drspacemn
drspacemn

πŸ’»
Mathieu
Mathieu

πŸ’»
TurcFort07
TurcFort07

πŸ“–
Florian Bellotti
Florian Bellotti

πŸ’»
Tom Brand
Tom Brand

πŸ’»
ftupas
ftupas

πŸ’»
pscott
pscott

πŸ’»
Add your contributions

This project follows the all-contributors specification. Contributions of any kind welcome!

About

Beerus is a trustless StarkNet Light Client, ⚑blazing fast ⚑ and powered by Rust πŸ¦€

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 93.4%
  • Handlebars 3.8%
  • Shell 2.2%
  • Other 0.6%