This commit is contained in:
Tim Olson
2024-01-09 13:30:07 -04:00
parent d9f0711ce8
commit 76f20547ad
2 changed files with 2 additions and 2 deletions

View File

@@ -6,4 +6,4 @@ redis_url='redis://redis:6379'
polling=0.5 polling=0.5
[deployments] [deployments]
53261='alpha' 1337='alpha'

View File

@@ -47,7 +47,7 @@ Mumbai = Blockchain(80001, 'Mumbai')
BSC = Blockchain(56, 'BSC') BSC = Blockchain(56, 'BSC')
Arbitrum = Blockchain(42161, 'Arbitrum', 3, batch_size=1000) # todo configure batch size... does it depend on log count? :( Arbitrum = Blockchain(42161, 'Arbitrum', 3, batch_size=1000) # todo configure batch size... does it depend on log count? :(
Mock = Blockchain(31337, 'Mock', 3, batch_size=10000) Mock = Blockchain(31337, 'Mock', 3, batch_size=10000)
Alpha = Blockchain(53261, 'Dexorder Alpha', 3, batch_size=10000) Alpha = Blockchain(1337, 'Dexorder Alpha', 3, batch_size=10000)
current_chain = ContextVar[Blockchain]('current_chain') current_chain = ContextVar[Blockchain]('current_chain')