poly-web3 0.0.3__tar.gz → 0.0.4__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.
- {poly_web3-0.0.3 → poly_web3-0.0.4}/PKG-INFO +1 -1
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/web3_service/proxy_service.py +0 -2
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3.egg-info/PKG-INFO +1 -1
- {poly_web3-0.0.3 → poly_web3-0.0.4}/pyproject.toml +53 -55
- {poly_web3-0.0.3 → poly_web3-0.0.4}/README.md +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/examples/example_redeem.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/__init__.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/const.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/log.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/schema.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/signature/__init__.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/signature/build.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/signature/hash_message.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/signature/secp256k1.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/web3_service/__init__.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/web3_service/base.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/web3_service/eoa_service.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3/web3_service/safe_service.py +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3.egg-info/SOURCES.txt +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3.egg-info/dependency_links.txt +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3.egg-info/requires.txt +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/poly_web3.egg-info/top_level.txt +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/setup.cfg +0 -0
- {poly_web3-0.0.3 → poly_web3-0.0.4}/setup.py +0 -0
|
@@ -136,8 +136,6 @@ class ProxyWeb3Service(BaseWeb3Service):
|
|
|
136
136
|
return redeem_res
|
|
137
137
|
|
|
138
138
|
def redeem_all(self) -> list[dict]:
|
|
139
|
-
logger.info("test")
|
|
140
|
-
return
|
|
141
139
|
positions = self.fetch_positions(user_address=self._resolve_user_address())
|
|
142
140
|
if not positions:
|
|
143
141
|
return []
|
|
@@ -1,55 +1,53 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "poly-web3"
|
|
3
|
-
version = "0.0.
|
|
4
|
-
description = "Polymarket Proxy wallet redeem SDK - Execute redeem operations on Polymarket using proxy wallets"
|
|
5
|
-
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.11"
|
|
7
|
-
dependencies = [
|
|
8
|
-
"py-clob-client>=0.25.0",
|
|
9
|
-
"py-builder-relayer-client>=0.0.1",
|
|
10
|
-
"web3==6.8",
|
|
11
|
-
"eth-utils==5.3.1",
|
|
12
|
-
"setuptools>=80.9.0",
|
|
13
|
-
]
|
|
14
|
-
authors = [
|
|
15
|
-
{name = "PinBar"}
|
|
16
|
-
]
|
|
17
|
-
keywords = ["polymarket", "web3", "proxy", "wallet", "redeem", "blockchain", "polygon"]
|
|
18
|
-
classifiers = [
|
|
19
|
-
"Development Status :: 3 - Alpha",
|
|
20
|
-
"Intended Audience :: Developers",
|
|
21
|
-
"License :: OSI Approved :: MIT License",
|
|
22
|
-
"Programming Language :: Python :: 3",
|
|
23
|
-
"Programming Language :: Python :: 3.11",
|
|
24
|
-
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
25
|
-
"Topic :: Internet :: WWW/HTTP",
|
|
26
|
-
]
|
|
27
|
-
|
|
28
|
-
[format]
|
|
29
|
-
line-length = 120
|
|
30
|
-
|
|
31
|
-
[project.urls]
|
|
32
|
-
"Homepage" = "https://github.com/tosmart01/poly-web3"
|
|
33
|
-
"Repository" = "https://github.com/tosmart01/poly-web3"
|
|
34
|
-
"Bug Tracker" = "https://github.com/tosmart01/poly-web3/issues"
|
|
35
|
-
|
|
36
|
-
[tool.ruff.format]
|
|
37
|
-
quote-style = "double"
|
|
38
|
-
indent-style = "space"
|
|
39
|
-
line-ending = "lf"
|
|
40
|
-
|
|
41
|
-
[dependency-groups]
|
|
42
|
-
dev = [
|
|
43
|
-
"build>=1.3.0",
|
|
44
|
-
"loguru>=0.7.3",
|
|
45
|
-
"twine>=6.2.0",
|
|
46
|
-
]
|
|
47
|
-
|
|
48
|
-
[tool.setuptools.packages.find]
|
|
49
|
-
exclude = [
|
|
50
|
-
"__pycache__",
|
|
51
|
-
"*.pyc",
|
|
52
|
-
"*.pyo",
|
|
53
|
-
]
|
|
54
|
-
[[tool.uv.index]]
|
|
55
|
-
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
|
|
1
|
+
[project]
|
|
2
|
+
name = "poly-web3"
|
|
3
|
+
version = "0.0.4"
|
|
4
|
+
description = "Polymarket Proxy wallet redeem SDK - Execute redeem operations on Polymarket using proxy wallets"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
dependencies = [
|
|
8
|
+
"py-clob-client>=0.25.0",
|
|
9
|
+
"py-builder-relayer-client>=0.0.1",
|
|
10
|
+
"web3==6.8",
|
|
11
|
+
"eth-utils==5.3.1",
|
|
12
|
+
"setuptools>=80.9.0",
|
|
13
|
+
]
|
|
14
|
+
authors = [
|
|
15
|
+
{name = "PinBar"}
|
|
16
|
+
]
|
|
17
|
+
keywords = ["polymarket", "web3", "proxy", "wallet", "redeem", "blockchain", "polygon"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 3 - Alpha",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
25
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[format]
|
|
29
|
+
line-length = 120
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
"Homepage" = "https://github.com/tosmart01/poly-web3"
|
|
33
|
+
"Repository" = "https://github.com/tosmart01/poly-web3"
|
|
34
|
+
"Bug Tracker" = "https://github.com/tosmart01/poly-web3/issues"
|
|
35
|
+
|
|
36
|
+
[tool.ruff.format]
|
|
37
|
+
quote-style = "double"
|
|
38
|
+
indent-style = "space"
|
|
39
|
+
line-ending = "lf"
|
|
40
|
+
|
|
41
|
+
[dependency-groups]
|
|
42
|
+
dev = [
|
|
43
|
+
"build>=1.3.0",
|
|
44
|
+
"loguru>=0.7.3",
|
|
45
|
+
"twine>=6.2.0",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[tool.setuptools.packages.find]
|
|
49
|
+
exclude = [
|
|
50
|
+
"__pycache__",
|
|
51
|
+
"*.pyc",
|
|
52
|
+
"*.pyo",
|
|
53
|
+
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|