CONFIGURATIONS database table
Worker can create a database row in the database CONFIGURATIONS table. A worker's CONFIG is a JSON obj that contain exceptions that it will use during its run cycle.
New configurations must be created (or deleted) using PSQL via command line interface.
The following is an example of the CONFIG for the walltetsWorker.
{
"excludeChainSponsorWallets": [],
"excludeChainFallbackWallets": ["oev-network"]
}
A worker's configuration is updated using the Centurion UI. Most workers are written so that the configuration is read each time the worker starts a new run cycle. Meaning changes to the configuration can be made real-time and the backend does not need to be restarted.