Skip to content

Commit 02e1b73

Browse files
committed
v0.3.2 Not using IP Proxy for SubSquid by default
1 parent 9f55670 commit 02e1b73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

IceCreamSwapWeb3/Subsquid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def get_filter(
110110
else:
111111
worker_url = get_text(f'{gateway_url}/{from_block}/worker')
112112

113-
if os.getenv("SUBSQUID_USE_IP_PROXY", "true").lower() == "true":
113+
if os.getenv("SUBSQUID_USE_IP_PROXY", "false").lower() == "true":
114114
assert worker_url.startswith("https://")
115115
worker_url = "https://rpc-internal.icecreamswap.com/proxy/" + worker_url[8:]
116116

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '0.3.1'
3+
VERSION = '0.3.2'
44
DESCRIPTION = 'IceCreamSwap Web3.py wrapper'
55
LONG_DESCRIPTION = 'IceCreamSwap Web3.py wrapper with automatic retries, multicall and other advanced functionality'
66

0 commit comments

Comments
 (0)