Oracle Adapters
This section introduces how to use chainlink to implement external oracle adapters
Node Operators: Running a Chainlink Node
Run PostgreSQL
docker run --name cl-postgres -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d postgresRun Chainlink Node
mkdir ~/.chainlink-sepoliaecho "[Log]
Level = 'warn'
[WebServer]
AllowOrigins = '\*'
SecureCookies = false
[WebServer.TLS]
HTTPSPort = 0
[[EVM]]
ChainID = '11155111'
[[EVM.Nodes]]
Name = 'Sepolia'
WSURL = 'wss://CHANGE_ME'
HTTPURL = 'https://CHANGE_ME'
" > ~/.chainlink-sepolia/config.toml

Contract Creator: Using an external adapter
Developers: Requesting Data
Last updated