unclezoro / bsc-relayer

An implementation of relay service to relay cross chain packages from Binance Chain to Binance Smart Chain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Relayer service from BBC to BSC

This is an canonical implementation of bsc-relayer service to relay cross chain packages from Binance Chain to Binance Smart Chain. It can also monitor double sign behavior on BSC and submit evidence to Binance Chain. Community members are encouraged to implement more implementations according to their own requirements.

Disclaimer

The software and related documentation are under active development, all subject to potential future change without notification and not ready for production use. The code and security audit have not been fully completed and not ready for any bug bounty. We advise you to be careful and experiment on the network at your own risk. Stay safe out there.

Quick Start

Note: Requires Go 1.13+

Setup config

  1. Edit config/config.json and input your private key to bsc_config.private_key
  2. Transfer enough BNB to this account:
    1. 100:BNB for relayer register
    2. More than 10:BNB for transaction fee.
  3. If you want to monitor double sign behavior on BSC, you need to fill more than 1 endpoints in bsc_config.monitor_data_seed_list, example monitor_data_seed_list for testnet:
    {
      "monitor_data_seed_list": [
          "wss://data-seed-prebsc-1-s1.binance.org:8545",
          "wss://data-seed-prebsc-2-s1.binance.org:8545",
          "wss://data-seed-prebsc-1-s2.binance.org:8545",
          "wss://data-seed-prebsc-2-s2.binance.org:8545",
          "wss://data-seed-prebsc-1-s3.binance.org:8545",
          "wss://data-seed-prebsc-2-s3.binance.org:8545"
        ]
    }
    Besides, you also need to provide proper Binance Chain mnemonic.

Build

Build Binary:

make build

Build Docker Image

  • Please complete configuration setup in config/config.json first, mainly including rpc endpoints, BSC private key and BC mnemonic(if you want to submit double sign evidence)
  • Docker build command:
docker build -t bsc-relayer:latest .

Run

Run locally:

./build/bsc-relayer --config-type local --config-path config/config.json

Run docker:

docker run -e BBC_NETWORK=1 -e CONFIG_TYPE="local" -d -it bsc-relayer

TroubleShooting

  1. Please fill proper bsc private key to bsc_config.private_key, example private key: 5576779EB3F28F1067BE07AC643A81A8C74E6C55EDE38BEEF68BE1E9D4C1CA3C

    panic: privateKey of Binance Smart Chain should not be empty
    
    goroutine 1 [running]:
    
  2. Please fill your mnemonic to bbc_config.mnemonic, example mnemonic: witness pitch peasant bird year sponsor conduct push enhance melt betray spare police region strategy hammer potato lecture cloud business habit student vehicle allow

    ERROR main missing local mnemonic
    

License

The library is licensed under the GNU Lesser General Public License v3.0, also included in our repository in the LICENSE file.

About

An implementation of relay service to relay cross chain packages from Binance Chain to Binance Smart Chain

License:GNU Lesser General Public License v3.0


Languages

Language:Go 99.5%Language:Dockerfile 0.4%Language:Makefile 0.1%