BRISE Chain Full Node Documentation

Brise Chain Full Node Documentation

1 year ago UpdatedUnfollowNot yet followed by anyone

How to Run A Fullnode on Brise Chain

Fullnodes Functions

  • Stores the full blockchain history on disk and can answer the data request from the network.

  • Receives and validates the new blocks and transactions.

  • Verifies the states of every accounts.

Supported Platforms

We support running a full node on Mac OS Xand Linux.

Suggested Requirements

Fullnode

  • VPS running recent versions of Mac OS X or Linux.

  • 4 cores of CPU and 8 gigabytes of memory (RAM).

  • A broadband Internet connection with upload/download speeds of 5 megabyte per second

Steps to Run a Full Node

Download brise_mainnet.json and static-nodes.json from https://github.com/Bitgert/brise-chain

wget  https://raw.githubusercontent.com/Bitgert/brise-chain/master/brise_mainnet.json
wget https://raw.githubusercontent.com/Bitgert/brise-chain/master/static-nodes.json

Make node folder

mkdir node

Initialize the Node

./geth --datadir ./node init brise_mainnet.json

Copy the static-nodes.json to node/geth

Run the Nodes

./geth --datadir node --syncmode 'full' --gcmode=archive --port 40605 --http --http.port 3545 --http.api 'personal,eth,net,web3,personal,admin,miner,txpool,debug' --bootnodes enode://5cefccf77557d8f41c3ff6777a5c73ef57a4999c8878788e659ec45dcaaca71b0f88e45ca28e1fdcec8731a597793ef698ae74ff0e2648d32ae0325984060569@ contact @gertsanem on telegram?discport=40605 --networkid 32520 -unlock '0xdB1ee911238EA8c1013746ec75F13177af7136c9' --allow-insecure-unlock

Last updated