Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Latest commit

 

History

History
34 lines (22 loc) · 1.59 KB

File metadata and controls

34 lines (22 loc) · 1.59 KB

Bios Boot Tutorial

The bios-boot-tutorial.py script simulates the EOSIO bios boot sequence.

Prerequisites

  1. Python 3.x
  2. CMake
  3. git

Steps

  1. Install eosio binaries by following the steps outlined in below tutorial Install eosio binaries

  2. Install eosio.cdt binaries by following the steps outlined in below tutorial Install eosio.cdt binaries

  3. Compile eosio.contracts sources repository by following the compile eosio.contracts guidelines first part, the deploying steps from those guidelines should not be executed.

  4. Make note of the full path of the directory where the contracts were compiled, if you followed the compile eosio.contracts guidelines it should be under the build folder, in build/contracts/, we'll reference it from now on as EOSIO_CONTRACTS_DIRECTORY

  5. Launch the bios-boot-tutorial.py script Minimal command line to launch the script below, make sure you replace EOSIO_CONTRACTS_DIRECTORY with actual directory

$ cd ~
$ git clone https://github.com/EOSIO/eos.git
$ cd ./eos/tutorials/bios-boot-tutorial/
$ python3 bios-boot-tutorial.py --cleos=cleos --nodeos=nodeos --keosd=keosd --contracts-dir="EOSIO_CONTRACTS_DIRECTORY" -w -a

See EOSIO Documentation Wiki: Tutorial - Bios Boot for additional information.