Conduit Node

Website: https://conduit.xyz/

App: https://app.conduit.xyz/

Docs: https://docs.conduit.xyz/

Twitter: https://twitter.com/conduitxyz

Github: https://github.com/conduitxyz/node

Minimum hardware requirement

We recommend you have this configuration to run a node:

  • at least 16 GB RAM

  • an SSD drive with at least 200 GB free

Server preparation

Ubuntu 22.04

Install Package

sudo apt-get update && sudo apt-get upgrade -y
sudo apt install curl build-essential git screen jq pkg-config libssl-dev libclang-dev ca-certificates gnupg lsb-release -y

Install Docker

sudo apt install curl -y && curl -sO https://nodesync.top/docker_install && chmod +x docker_install && bash docker_install

Node Installation

git clone https://github.com/conduitxyz/node.git && cd node

Initiate the download of the Zora mainnet folder:

./download-config.py zora-mainnet-0

Set Zora network

export CONDUIT_NETWORK=zora-mainnet-0
cp .env.example .env
nano .env

New App and choose Ethereum Mainnet on https://dashboard.alchemy.com/apps

In your .env file, replace OP_NODE_L1_ETH_RPC=https://eth-mainnet.g.alchemy.com/your_info with your Alchemy account's API key and Save file.

Start node

docker compose up -d

Check logs

docker logs -f node-geth-1

Alchemy

Last updated