🛠️Build From Source

Installation

  1. Clone the repository

git clone https://github.com/init4tech/signet-node.git
  1. Build the binary

cargo build --release --bin signet
  1. Download a binary from github releases

  2. Configure the Environment Variables as needed

  3. Copy the binary from the release to a location in your users path

tar -xzf signet-client-v0.1.0-alpha-1 signet
cp signet /usr/local/bin
  1. Run Signet

signet node \
    --chain holesky \
    --authrpc.jwtsecret /path/to/your/jwt.secret \ 
    --http \
    --http.addr 127.0.0.1 \ 
    --http.api eth,net,trace,txpool,web3,rpc,debug,ots 
    

Last updated