eth-protocols-py 0.1.6.dev1__tar.gz → 0.1.6.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/PKG-INFO +1 -1
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/dex_pairs.py +3 -6
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols_py.egg-info/PKG-INFO +1 -1
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/pyproject.toml +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/setup.cfg +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/setup.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/camelot_v3/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/camelot_v3/pool.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/multicall.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/price_tracker.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/logger.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/tokens/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/tokens/erc20/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/tokens/erc20/events.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/types/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/types/dex_pair.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/factory.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/pair.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/price.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v3/__init__.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v3/liquidity.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v3/pool.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/utils/lookup_dict.py +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols_py.egg-info/SOURCES.txt +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols_py.egg-info/dependency_links.txt +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols_py.egg-info/requires.txt +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols_py.egg-info/top_level.txt +0 -0
- {eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/tests/test_create2_address.py +0 -0
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/dex_pairs.py
RENAMED
|
@@ -79,13 +79,11 @@ class DexPairHelper(BaseModel):
|
|
|
79
79
|
),
|
|
80
80
|
]
|
|
81
81
|
)
|
|
82
|
-
if
|
|
82
|
+
if factory == Factories.Arbitrum.Camelot_V3:
|
|
83
83
|
calls_list.extend(
|
|
84
84
|
[
|
|
85
85
|
(
|
|
86
|
-
CamelotV3Factory(
|
|
87
|
-
address=uniswap_v3_factory_address
|
|
88
|
-
).pool_by_pair(
|
|
86
|
+
CamelotV3Factory(address=factory).pool_by_pair(
|
|
89
87
|
CamelotGetPoolRequest(token_a=addr, token_b=paired_with)
|
|
90
88
|
),
|
|
91
89
|
lambda result, addr=addr, paired_with=paired_with: ( # type: ignore
|
|
@@ -150,8 +148,7 @@ class DexPairHelper(BaseModel):
|
|
|
150
148
|
t[0],
|
|
151
149
|
t[1],
|
|
152
150
|
fee_tiers,
|
|
153
|
-
|
|
154
|
-
uniswap_v3_factory_address,
|
|
151
|
+
factories,
|
|
155
152
|
)
|
|
156
153
|
)
|
|
157
154
|
await try_execute_with_setters(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/camelot_v3/__init__.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/camelot_v3/pool.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/__init__.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/helpers/multicall.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/tokens/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/tokens/erc20/events.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/types/__init__.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/types/dex_pair.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/__init__.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/factory.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/pair.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v2/price.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v3/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/uniswap_v3/pool.py
RENAMED
|
File without changes
|
{eth_protocols_py-0.1.6.dev1 → eth_protocols_py-0.1.6.dev2}/src/eth_protocols/utils/lookup_dict.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|