From 76f20547ad78b71c8d413ca2a4e74b167b1bcba8 Mon Sep 17 00:00:00 2001 From: Tim Olson <> Date: Tue, 9 Jan 2024 13:30:07 -0400 Subject: [PATCH] 1337 --- dexorder-alpha.toml | 2 +- src/dexorder/base/chain.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dexorder-alpha.toml b/dexorder-alpha.toml index 40d52c0..c0538f8 100644 --- a/dexorder-alpha.toml +++ b/dexorder-alpha.toml @@ -6,4 +6,4 @@ redis_url='redis://redis:6379' polling=0.5 [deployments] -53261='alpha' +1337='alpha' diff --git a/src/dexorder/base/chain.py b/src/dexorder/base/chain.py index b3997b6..d101f33 100644 --- a/src/dexorder/base/chain.py +++ b/src/dexorder/base/chain.py @@ -47,7 +47,7 @@ Mumbai = Blockchain(80001, 'Mumbai') BSC = Blockchain(56, 'BSC') 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) -Alpha = Blockchain(53261, 'Dexorder Alpha', 3, batch_size=10000) +Alpha = Blockchain(1337, 'Dexorder Alpha', 3, batch_size=10000) current_chain = ContextVar[Blockchain]('current_chain')