mm-web3 0.5.3__tar.gz → 0.5.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.
- {mm_web3-0.5.3 → mm_web3-0.5.4}/.claude/settings.local.json +3 -2
- mm_web3-0.5.4/CLAUDE.md +13 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/PKG-INFO +2 -3
- {mm_web3-0.5.3 → mm_web3-0.5.4}/pyproject.toml +2 -3
- {mm_web3-0.5.3 → mm_web3-0.5.4}/uv.lock +8 -10
- {mm_web3-0.5.3 → mm_web3-0.5.4}/.gitignore +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/.pre-commit-config.yaml +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/README.md +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/justfile +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/__init__.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/account.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/calcs.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/config.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/log.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/network.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/node.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/proxy.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/py.typed +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/retry.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/utils.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/validators.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/__init__.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/common.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_account.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_calcs.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_config.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_network.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_node.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_proxy.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_retry.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_utils.py +0 -0
- {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_validators.py +0 -0
mm_web3-0.5.4/CLAUDE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Claude Guidelines
|
|
2
|
+
|
|
3
|
+
## Critical Guidelines
|
|
4
|
+
|
|
5
|
+
1. **Always communicate in English** - Regardless of the language the user speaks, always respond in English. All code, comments, and documentation must be in English.
|
|
6
|
+
|
|
7
|
+
2. **Minimal documentation** - Only add comments/documentation when it simplifies understanding and isn't obvious from the code itself. Keep it strictly relevant and concise.
|
|
8
|
+
|
|
9
|
+
3. **Critical thinking** - Always critically evaluate user ideas. Users can make mistakes. Think first about whether the user's idea is good before implementing.
|
|
10
|
+
|
|
11
|
+
4. **Lint after changes** - After making code changes, always run `just lint` to verify code quality and fix any linter issues.
|
|
12
|
+
|
|
13
|
+
5. **No disabling linter rules** - Never use special disabling comments (like `# noqa`, `# type: ignore`, `# ruff: noqa`, etc.) to turn off linter rules without explicit permission. If you believe a rule should be disabled, ask first.
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mm-web3
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Requires-Python: >=3.13
|
|
5
5
|
Requires-Dist: loguru>=0.7.3
|
|
6
6
|
Requires-Dist: mm-http~=0.2.1
|
|
7
|
-
Requires-Dist: mm-print~=0.2.
|
|
7
|
+
Requires-Dist: mm-print~=0.2.1
|
|
8
8
|
Requires-Dist: mm-std~=0.5.4
|
|
9
|
-
Requires-Dist: pydantic~=2.12.3
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mm-web3"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.4"
|
|
4
4
|
description = ""
|
|
5
5
|
requires-python = ">=3.13"
|
|
6
6
|
dependencies = [
|
|
7
7
|
"mm-std~=0.5.4",
|
|
8
8
|
"mm-http~=0.2.1",
|
|
9
|
-
"mm-print~=0.2.
|
|
9
|
+
"mm-print~=0.2.1",
|
|
10
10
|
"loguru>=0.7.3",
|
|
11
|
-
"pydantic~=2.12.3",
|
|
12
11
|
]
|
|
13
12
|
|
|
14
13
|
[build-system]
|
|
@@ -676,16 +676,16 @@ wheels = [
|
|
|
676
676
|
|
|
677
677
|
[[package]]
|
|
678
678
|
name = "mm-print"
|
|
679
|
-
version = "0.2.
|
|
679
|
+
version = "0.2.1"
|
|
680
680
|
source = { registry = "https://pypi.org/simple" }
|
|
681
681
|
dependencies = [
|
|
682
682
|
{ name = "mm-std" },
|
|
683
683
|
{ name = "rich" },
|
|
684
684
|
{ name = "tomlkit" },
|
|
685
685
|
]
|
|
686
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
686
|
+
sdist = { url = "https://files.pythonhosted.org/packages/24/e9/6d0643c1cab5baca2f190672ba998f935aafaabfdad191e2e433c6d70e6d/mm_print-0.2.1.tar.gz", hash = "sha256:25d2a044dfdd636ad866239f3fffd599041e10ccca4744b4e08314f9451ecf84", size = 29130, upload-time = "2025-10-29T07:27:18.558Z" }
|
|
687
687
|
wheels = [
|
|
688
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
688
|
+
{ url = "https://files.pythonhosted.org/packages/fb/66/30bacdc99e3a2d6ea88983dac265566d8175b8c93428b2b9e9e9aa37f607/mm_print-0.2.1-py3-none-any.whl", hash = "sha256:b15c9308ddb4c134a37b661147b088444ed88be54e9b36315d941533ba205d02", size = 2106, upload-time = "2025-10-29T07:27:17.272Z" },
|
|
689
689
|
]
|
|
690
690
|
|
|
691
691
|
[[package]]
|
|
@@ -708,14 +708,13 @@ wheels = [
|
|
|
708
708
|
|
|
709
709
|
[[package]]
|
|
710
710
|
name = "mm-web3"
|
|
711
|
-
version = "0.5.
|
|
711
|
+
version = "0.5.4"
|
|
712
712
|
source = { editable = "." }
|
|
713
713
|
dependencies = [
|
|
714
714
|
{ name = "loguru" },
|
|
715
715
|
{ name = "mm-http" },
|
|
716
716
|
{ name = "mm-print" },
|
|
717
717
|
{ name = "mm-std" },
|
|
718
|
-
{ name = "pydantic" },
|
|
719
718
|
]
|
|
720
719
|
|
|
721
720
|
[package.dev-dependencies]
|
|
@@ -737,9 +736,8 @@ dev = [
|
|
|
737
736
|
requires-dist = [
|
|
738
737
|
{ name = "loguru", specifier = ">=0.7.3" },
|
|
739
738
|
{ name = "mm-http", specifier = "~=0.2.1" },
|
|
740
|
-
{ name = "mm-print", specifier = "~=0.2.
|
|
739
|
+
{ name = "mm-print", specifier = "~=0.2.1" },
|
|
741
740
|
{ name = "mm-std", specifier = "~=0.5.4" },
|
|
742
|
-
{ name = "pydantic", specifier = "~=2.12.3" },
|
|
743
741
|
]
|
|
744
742
|
|
|
745
743
|
[package.metadata.requires-dev]
|
|
@@ -1451,15 +1449,15 @@ socks = [
|
|
|
1451
1449
|
|
|
1452
1450
|
[[package]]
|
|
1453
1451
|
name = "rich"
|
|
1454
|
-
version = "14.
|
|
1452
|
+
version = "14.2.0"
|
|
1455
1453
|
source = { registry = "https://pypi.org/simple" }
|
|
1456
1454
|
dependencies = [
|
|
1457
1455
|
{ name = "markdown-it-py" },
|
|
1458
1456
|
{ name = "pygments" },
|
|
1459
1457
|
]
|
|
1460
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1458
|
+
sdist = { url = "https://files.pythonhosted.org/packages/fb/d2/8920e102050a0de7bfabeb4c4614a49248cf8d5d7a8d01885fbb24dc767a/rich-14.2.0.tar.gz", hash = "sha256:73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4", size = 219990, upload-time = "2025-10-09T14:16:53.064Z" }
|
|
1461
1459
|
wheels = [
|
|
1462
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1460
|
+
{ url = "https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl", hash = "sha256:76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd", size = 243393, upload-time = "2025-10-09T14:16:51.245Z" },
|
|
1463
1461
|
]
|
|
1464
1462
|
|
|
1465
1463
|
[[package]]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|