-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
81 additions
and
142 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,3 @@ services: | |
volumes: | ||
unchained: | ||
cache: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,36 @@ | ||
# This is an example `.env` file. Copy this file and rename it if you wish. | ||
|
||
#--------- | ||
# To various degrees, TrueBlocks runs against any evm-based blockchain (although we only officially | ||
# support `mainnet`, `sepolia`, and `gnosis`). Specify the default chain you wish to use. The default | ||
# chain is the one `chifra` processes if you don't specify a `--chain` parameter. | ||
# TrueBlocks runs against any evm-based blockchain. Specify the default chain you | ||
# wish to use. The default chain is the one `chifra` processes if you don't | ||
# specify a `--chain` parameter. | ||
#--------- | ||
TB_SETTINGS_DEFAULTCHAIN=mainnet | ||
|
||
#--------- | ||
# For each chain you wish to support, you must instruct TrueBlocks how to connect to it. Below, we | ||
# configure for "mainnet" and "sepolia". If you wish to support other chains, add their RPC providers | ||
# below. Variables are named as follows: TB_CHAINS_<chain>_RPCPROVIDER. The value provided should be | ||
# the URL of the RPC provider for the chain. It's highly suggested that the URL is local. | ||
# For each chain you wish to support, you must instruct TrueBlocks how to connect | ||
# to it. Below, we configure for "mainnet" and "sepolia". If you wish to support | ||
# other chains, add their RPC providers below. Variables are named as follows: | ||
# TB_CHAINS_<chain>_RPCPROVIDER. The value provided should be the URL of the RPC | ||
# provider for the chain. It's highly suggested that the URL is local. | ||
#--------- | ||
# Note: The following values most likely will not work on your machine. Replace these vaules with | ||
# values that work on your machine. The values below work for us on a Mac running Docker Desktop. | ||
# Note: The following values most likely will not work on your machine. Replace | ||
# these vaules with values that work on your machine. The values below work | ||
# for us on a Mac running Docker Desktop. | ||
TB_CHAINS_MAINNET_RPCPROVIDER=http://host.docker.internal:8545 | ||
TB_CHAINS_SEPOLIA_RPCPROVIDER=http://host.docker.internal:8546 | ||
|
||
#--------- | ||
# This value, which is optional, enables the articulation feature. Eventually, we will provide a | ||
# way to use the articulation feature without an API key. In the meantime, you can get an API | ||
# key from https://etherscan.io/apis. | ||
# This value, which is optional, enables the articulation feature. Eventually, we | ||
# will provide a way to use the articulation feature without an API key. In the | ||
# meantime, you can get an API key from https://etherscan.io/apis. | ||
#--------- | ||
TB_KEYS_ETHERSCAN_APIKEY=<not-set> | ||
|
||
#--------- | ||
# These two paths, while optional, allow us to more easily use the data produced by TrueBlocks | ||
# outside the docker image. We recommend you leave these settings as they are. | ||
# These two paths, while optional, allow us to more easily use the data produced | ||
# by TrueBlocks outside the docker image. We recommend you leave these settings | ||
# as they are. | ||
#--------- | ||
TB_SETTINGS_CACHEPATH=/cache | ||
TB_SETTINGS_INDEXPATH=/unchained |