ZORA

ZORA



  1. Connect to your node through Putty or terminal and run the following commands

sudo apt-get update && sudo apt-get upgrade -y

2. Install the essential libraries.

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

3. Let’s install Docker now. This will Add Docker's Official GPG Key :

sudo install -m 0755 -d /etc/apt/keyrings

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

sudo chmod a+r /etc/apt/keyrings/docker.gpg

4. Add the repository to Apt sources :

echo \

"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \

$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \

sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt-get update

5. Let’s install the dependencies :

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose -y

6. Press Y and Enter if required :
7. Clone the Conduit Github repository.

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

Затем

cd node

8. Download the Zora Mainnet Folder

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

9. Set value of CONDUIT_NETWORK :

export CONDUIT_NETWORK=zora-mainnet-0

10. Add your APIs to the environment file :

cp .env.example .env

nano .env

11. Replace<http://11rpc> with your Alchemy Account API key (HTTPS)

тут как раз берем API то что создавали на Alchemy

12. Close the file by pressing CTRL + X . You’ll be asked if you want to save the file, press Y and hit Enter.

13. Now you are all ready to launch your node. Start a screen session with :

screen -S log

14. Launch your node with the following :

docker compose up --build

15. Give it some time to build

Your Node Is Up and Running.

You can detach from the screen by pressing CTRL + A + D



Report Page