The Slinky oracle was developed by Skip and is integrated directly into the Initia layer 1. It has two components:
An on-chain integration which fetches prices from the sidecar each block, submits them to the chain via vote extensions, and aggregates prices across all participating validators.
A sidecar process which is responsible for querying price providers and supplying prices to the on-chain module.
We will provide pre-compiled binaries in the future. Please build from source for now.
Building From Source
Clone the slinky repository.
git clone git@github.com:skip-mev/slinky.git
cd slinky
make build
The output binary will be located in the build directory, ./build/oracle.
Running The Sidecar
Config Setup
To run the oracle sidecar you need valid configuration files for both the oracle and the metrics components. The oracle binary accepts flags for each configuration file. The following are sane defaults for the current Initia Devnet.
metrics.toml
###############################################################################
### Metrics ###
###############################################################################
# MetricsConfig TOML Configuration
# PrometheusServerAddress is the address of the Prometheus server that the oracle will expose metrics to.
prometheus_server_address = "localhost:8000"
# OracleMetrics is the config for the oracle metrics
[oracle_metrics]
# Enabled indicates whether metrics should be enabled
enabled = true
# AppMetrics is the config for the app metrics
[app_metrics]
# Enabled indicates whether metrics should be enabled
enabled = false
# ValidatorConsAddress is the validator's consensus address
validator_cons_address = ""
oracle.toml
###############################################################################
### Oracle ###
###############################################################################
# OracleConfig TOML Configuration
# Enabled specifies whether the side-car oracle needs to be run.
enabled = true
# InProcess specifies whether the oracle is currently running in-process (true) or out-of-process (false).
in_process = true
# ClientTimeout is the time that the client is willing to wait for responses from the oracle.
client_timeout = "2s" # Replace "2s" with your desired timeout duration.
# RemoteAddress is the address of the remote oracle server (if it is running out-of-process).
remote_address = ""
# UpdateInterval is the interval at which the oracle will fetch prices from providers.
update_interval = "2s" # Replace "2s" with your desired update interval duration.
# Production is the flag that determines whether the oracle is running in production mode.
production = true
# Providers is the list of providers that the oracle will fetch prices from.
[[providers]]
name = "coinbase"
path = "config/local/providers/coinbase.json"
api.enabled = true
api.timeout = "500ms" # Replace "500ms" with your desired timeout duration.
api.interval = "1s" # Replace "1s" with your desired update interval duration.
api.max_queries = 5 # Replace "5" with your desired maximum number of queries per update interval.
[[providers]]
name = "coingecko"
path = "config/local/providers/coingecko.json"
api.enabled = true
api.timeout = "500ms"
api.interval = "1s"
api.max_queries = 1 # CoinGecko is atomic so it can fetch all prices in a single request.
# Currency Pairs
[[currency_pairs]]
base = "BITCOIN"
quote = "USD"
[[currency_pairs]]
base = "ETHEREUM"
quote = "USD"
[[currency_pairs]]
base = "ATOM"
quote = "USD"
[[currency_pairs]]
base = "SOLANA"
quote = "USD"
[[currency_pairs]]
base = "POLKADOT"
quote = "USD"
[[currency_pairs]]
base = "DYDX"
quote = "USD"
[[currency_pairs]]
base = "ETHEREUM"
quote = "BITCOIN"
The path component of a provider needs to provide the mapping between the canonical base and quote names and their equivalent in the given provider API. The proper mapping files are all located in Slinky's provider directory https://github.com/skip-mev/slinky/tree/main/config/local/providers. If you execute the binary at the root of the Slinky directory, the above config is valid. Otherwise you will need to provide the proper path to the JSON mapping files.
Starting The Sidecar
Starting the oracle side car is done through the binary.
The default host and port are localhost:8080 for the GRPC server and localhost:8000 for the prometheus metrics endpoint, if enabled.
Validating Prices
After starting the oracle you should see prices being requested successfully from the provider sources. You can also optionally run the test client script in the slinky repository via make run-oracle-client.