host: 0.0.0.0
port: 2449
tls:
enabled: true
server:
certificate: "/path/127.0.0.1.crt"
key: "/path/127.0.0.1.p8.key"
client:
require: true
ca: "/path/ca.dshackle.test.crt"
cache:
redis:
enabled: true
host: redis-master
port: 6379
db: 0
password: I1y0dGKy01by
proxy:
host: 0.0.0.0
port: 8080
tls:
enabled: true
server:
certificate: "/path/127.0.0.1.crt"
key: "/path/127.0.0.1.p8.key"
client:
require: true
ca: "/path/ca.dshackle.test.crt"
routes:
- id: eth
blockchain: ethereum
- id: kovan
blockchain: kovan
tokens:
- id: dai
blockchain: ethereum
name: DAI
type: ERC-20
address: 0x6B175474E89094C44Da98b954EedeAC495271d0F
- id: tether
blockchain: ethereum
name: Tether
type: ERC-20
address: 0xdac17f958d2ee523a2206206994597c13d831ec7
accessLog:
enabled: true
filename: /var/log/dshackle/access_log.jsonl
cluster:
defaults:
- chains:
- ethereum
options:
min-peers: 10
- chains:
- kovan
options:
min-peers: 3
include:
- "upstreams-extra.yaml"
upstreams:
- id: local
chain: ethereum
labels:
fullnode: true
methods:
enabled:
- name: "parity_trace"
disabled:
- name: "admin_shutdown"
connection:
ethereum:
rpc:
url: "http://localhost:8545"
ws:
url: "ws://localhost:8546"
origin: "http://localhost"
basic-auth:
username: 9c199ad8f281f20154fc258fe41a6814
password: 258fe4149c199ad8f2811a68f20154fc
- id: infura
chain: ethereum
options:
disable-validation: true
connection:
ethereum:
rpc:
url: "https://mainnet.infura.io/v3/fa28c968191849c1aff541ad1d8511f2"
basic-auth:
username: 4fc258fe41a68149c199ad8f281f2015
password: 1a68f20154fc258fe4149c199ad8f281
- id: bitcoin
chain: bitcoin
options:
# use the node to fetch balances
balance: true
connection:
bitcoin:
rpc:
url: "http://localhost:8332"
basic-auth:
username: bitcoin
password: e984af45bb888428207c290
# uses Esplora index to fetch balances and utxo for an address
esplora:
url: "http://localhost:3001"
- id: remote
connection:
grpc:
host: "10.2.0.15"
tls:
ca: /path/ca.dshackle.test.crt
certificate: /path/client1.dshackle.test.crt
key: /path/client1.dshackle.test.key
Option | Default Value | Description |
---|---|---|
|
|
Host to bind gRPC server |
|
|
Port to bind gRPC server |
|
Setup TLS configuration for the gRPC server. See TLS server config section |
|
|
Setup HTTP proxy that emulates all standard JSON RPC requests. See Proxy config section |
|
|
Configure access logging. See Access Log config section |
|
|
Configure tokens for tracking balance. See Tokens config section |
|
|
Caching configuration. See Cache config section. |
|
|
Setup connection to remote nodes.See Cluster section |
tls:
enabled: true
server:
certificate: "/path/127.0.0.1.crt"
key: "/path/127.0.0.1.p8.key"
client:
require: true
ca: "/path/ca.dshackle.test.crt"
Option | Default Value | Description |
---|---|---|
|
|
Enable/Disable TLS |
|
Path to x509 certificate |
|
|
Path to a private key to the certificate. The key MUST BE in PKCS 8 format |
|
|
If true then the server will required certificate from a client, otherwise client authentication is optional |
|
|
Certificate to validate client authentication |
proxy:
host: 0.0.0.0
port: 8080
tls:
enabled: true
server:
certificate: "/path/127.0.0.1.crt"
key: "/path/127.0.0.1.p8.key"
client:
require: true
ca: "/path/ca.dshackle.test.crt"
routes:
- id: eth
blockchain: ethereum
- id: kovan
blockchain: kovan
Option | Default Value | Description |
---|---|---|
|
|
Host to bind gRPC server |
|
|
Port to bind gRPC server |
|
Setup TLS configuration for the Proxy server. See TLS server config section |
|
|
Routing paths for Proxy.The proxy will handle requests as |
Option | Default Value | Description |
---|---|---|
|
Internal alphanumeric id, and a path of binding url - |
|
|
A blockchain that must be used to handle that route. |
accessLog:
enabled: true
filename: /var/log/dshackle/access_log.jsonl
Option | Default | Description |
---|---|---|
|
|
Enable/Disable Access logging |
|
|
Path to the access log file |
tokens:
- id: dai
blockchain: ethereum
name: DAI
type: ERC-20
address: 0x6B175474E89094C44Da98b954EedeAC495271d0F
- id: tether
blockchain: ethereum
name: Tether
type: ERC-20
address: 0xdac17f958d2ee523a2206206994597c13d831ec7
Tokens config enables tracking of a balance amount in the configured tokens.
After making the configuration above you can request balance (GetBalance
), or subscribe to balance changes (SubscribeBalance
), using enhanced protocol
Option | Description |
---|---|
|
Internal id for reference (used in logging, etc) |
|
An ethereum-based blockchain where the contract is deployed |
|
Name of the token, used for balance response as asset code (as converted to UPPERCASE) |
|
Type of token.Only |
|
Address of the deployed contract |
cache:
redis:
enabled: true
host: redis-master
port: 6379
db: 0
password: I1y0dGKy01by
Option | Default Value | Description |
---|---|---|
|
|
Enable/disable Redis cache |
|
|
Redis host address |
|
|
Redis port |
|
|
Redis DB to select |
|
Password for connection, if required |
The cluster config is the main part, that defines all connection to nodes and other servers
cluster:
defaults:
- chains:
- ethereum
options:
min-peers: 10
upstreams:
- id: local
chain: ethereum
connection:
ethereum:
rpc:
url: "http://localhost:8545"
ws:
url: "ws://localhost:8546"
origin: "http://localhost"
include:
- "upstreams-extra.yaml"
Option | Description |
---|---|
|
Default options applied to all upstreams within the specified blockchain. It’s an optional configuration, and may be omitted for most of the situations. |
|
List of upstream servers. The main part of the config. There are two types of upstream: JSON RPC Upstream and Dshackle Upstream. |
|
Path(s) to include configurations for upstream servers. Same as |
- id: local
chain: ethereum
role: standard
labels:
fullnode: true
methods:
enabled:
- name: "parity_trace"
disabled:
- name: "admin_shutdown"
connection:
ethereum:
rpc:
url: "http://localhost:8545"
ws:
url: "ws://localhost:8546"
origin: "http://localhost"
basic-auth:
username: 9c199ad8f281f20154fc258fe41a6814
password: 258fe4149c199ad8f2811a68f20154fc
Option | Required | Description |
---|---|---|
|
yes |
Per-cluster identifier of an upstream |
|
no |
|
|
yes |
Blockchain which is the provided by the upstream.
Cluster may have multiple upstreams for a single blockchain.
Accepted types: |
|
no |
Key-Value pairs that are assigned to the upstream. Used to select an upstream per-request. See Quorum and Selectors |
|
no |
Enable or disable additional JSON RPC methods that are provided by that particular upstream |
|
yes |
Connection configuration for Ethereum API |
|
yes |
Connection configuration for Bitcoin API |
Option | Description |
---|---|
|
HTTP URL to connect to. This is required for a connection. |
|
HTTP Basic Auth configuration, if required by the remote server. rpc:
url: "https://ethereum.com:8545"
basic-auth:
username: "${ETH_USERNAME}"
password: "${ETH_PASSWORD}" |
|
Websocket URL to connect to. Optional, but optimizes performance if it’s available. |
|
HTTP |
|
Websocket Basic Auth configuration, if required by the remote server |
Another option is using another Dshackle server as an upstream. It’s more effective, easier to secure connection, and allows to build a distributed network of servers.
- id: test1
connection:
grpc:
host: eu-api.mycompany.com
port: 2449
tls:
ca: ca.api.mycompany.crt
certificate: client-1.api.mycompany.crt
key: client-1.api.mycompany.p8.key
Option | Required | Description |
---|---|---|
|
yes |
Per-cluster identifier of an upstream |
|
yes |
Connection configuration for Dshackle gRPC |
Option | Description |
---|---|
|
Address to connect to |
|
TLC configuration for the connection.
In general it’s an optional configuration, but it’s strongly recommended.
Also HTTP2 + gRPC is designed to be used with TLS, and some of the related software is unable to use it without TLS. |
|
Path to x509 certificate to verify remote server |
|
Client certificate (x509) and its private key (PKCS 8) used for authentication on the remote server. |