arb1 backend deploy config

This commit is contained in:
tim
2024-10-05 19:42:06 -04:00
parent f0d03230ba
commit 98651a572d
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
account = '${accounts.gas}'
rpc_url = '${rpc_urls.arbsep_alchemy}'
ws_url = '${rpc_urls.arbsep_alchemy_ws}'

View File

@@ -0,0 +1,26 @@
# https://docs.python.org/3/library/logging.config.html#logging-config-dictschema
version=1
[loggers.'']
level='INFO'
handlers=['console',]
[loggers.dexorder]
level='DEBUG'
[handlers.console]
class='logging.StreamHandler'
formatter='default'
stream='ext://sys.stdout'
[formatters.default]
# https://docs.python.org/3/library/logging.html#logrecord-attributes
format='%(asctime)s %(levelname)s %(name)s %(message)s'
# https://docs.python.org/3/library/time.html#time.strftime
datefmt='%Y-%m-%d %H:%M:%S'
[formatters.notime]
# https://docs.python.org/3/library/logging.html#logrecord-attributes
format='%(levelname)s %(name)s %(message)s'
# https://docs.python.org/3/library/time.html#time.strftime
datefmt='%Y-%m-%d %H:%M:%S'