You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add ERC2335 ProxyStore type with loader
* Small refactor
* Store proxy keys and secrets when generated
* Add support for ECDSA keys
* Refactor
* Update docs
* Add multiple proxies support for same module
* Fix clippy
* Add tests
* Update docs
* Fix parallel tests failures
* Run tests sequentially
* Fix paths
* Read paths from config if env var is not present
* Add healthcheck to signer container
* Fix format
* Update example config
* Use signer_port var for healthcheck
# For teku, it's the path to the directory where all `<pubkey>.txt` files are located.
159
159
# For lodestar, it's the path to the file containing the decryption password.
160
160
# secrets_path = ""
161
-
# Configuration for how the Signer module should store proxy delegations. Currently one type of store is supported:
161
+
# Configuration for how the Signer module should store proxy delegations. Supported types of store are:
162
162
# - File: store keys and delegations from a plain text file (unsafe, use only for testing purposes)
163
+
# - ERC2335: store keys and delegations safely using ERC-2335 style keystores. More details can be found in the docs (https://commit-boost.github.io/commit-boost-client/get_started/configuration#proxy-keys-store)
163
164
# OPTIONAL, if missing proxies are lost on restart
164
165
[signer.local.store]
165
166
# File: path to the keys file
166
167
proxy_dir = "./proxies"
168
+
# ERC2335: path to the keys directory
169
+
# keys_path = "./tests/data/proxy/keys"
170
+
# ERC2335: path to the secrets directory
171
+
# secrets_path = "./tests/data/proxy/secrets"
167
172
168
173
# Commit-Boost can optionally run "modules" which extend the capabilities of the sidecar.
0 commit comments