shiki-tak / chainlink-node

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chainlink Node

Docker Compose sample for Chainlink Node

Getting Started

1. Clone this repository

$ git clone git@github.com:shiki-tak/chainlink-node.git

2. Create files for startup

Create files by running:

# Move to repository root
$ cd chainlink-node

# Set api email & password
$ echo "user@example.com" > chainlink/data/.api
$ echo "password" >> chainlink/data/.api

# Set wallet password
$ echo "my_wallet_password" > chainlink/data/.password

# Copy .env file
$ cp chainlink/.env.sample chainlink/.env

Set the variables ETH_URL & ETH_CHAIN_ID in the .env to your Ethereum client's URL & Chain ID.

3. Run a Chainlink Node

Run the Docker images by running:

$ docker-compose up -d
$ docker exec -it chainlink chainlink local n -p /chainlink/.password -a /chainlink/.api

4. Connect to Chainlink node's UI interface

Open http://localhost:6688.

About


Languages

Language:JavaScript 61.9%Language:Solidity 38.1%