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.
Files changed (32) hide show
  1. {mm_web3-0.5.3 → mm_web3-0.5.4}/.claude/settings.local.json +3 -2
  2. mm_web3-0.5.4/CLAUDE.md +13 -0
  3. {mm_web3-0.5.3 → mm_web3-0.5.4}/PKG-INFO +2 -3
  4. {mm_web3-0.5.3 → mm_web3-0.5.4}/pyproject.toml +2 -3
  5. {mm_web3-0.5.3 → mm_web3-0.5.4}/uv.lock +8 -10
  6. {mm_web3-0.5.3 → mm_web3-0.5.4}/.gitignore +0 -0
  7. {mm_web3-0.5.3 → mm_web3-0.5.4}/.pre-commit-config.yaml +0 -0
  8. {mm_web3-0.5.3 → mm_web3-0.5.4}/README.md +0 -0
  9. {mm_web3-0.5.3 → mm_web3-0.5.4}/justfile +0 -0
  10. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/__init__.py +0 -0
  11. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/account.py +0 -0
  12. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/calcs.py +0 -0
  13. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/config.py +0 -0
  14. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/log.py +0 -0
  15. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/network.py +0 -0
  16. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/node.py +0 -0
  17. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/proxy.py +0 -0
  18. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/py.typed +0 -0
  19. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/retry.py +0 -0
  20. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/utils.py +0 -0
  21. {mm_web3-0.5.3 → mm_web3-0.5.4}/src/mm_web3/validators.py +0 -0
  22. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/__init__.py +0 -0
  23. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/common.py +0 -0
  24. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_account.py +0 -0
  25. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_calcs.py +0 -0
  26. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_config.py +0 -0
  27. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_network.py +0 -0
  28. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_node.py +0 -0
  29. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_proxy.py +0 -0
  30. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_retry.py +0 -0
  31. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_utils.py +0 -0
  32. {mm_web3-0.5.3 → mm_web3-0.5.4}/tests/test_validators.py +0 -0
@@ -2,9 +2,10 @@
2
2
  "permissions": {
3
3
  "allow": [
4
4
  "Bash(just lint)",
5
- "mcp__ide__getDiagnostics"
5
+ "mcp__ide__getDiagnostics",
6
+ "Bash(tree:*)"
6
7
  ],
7
8
  "deny": [],
8
9
  "ask": []
9
10
  }
10
- }
11
+ }
@@ -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
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.0
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"
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.0",
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.0"
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/1b/6a/2995a476c87ba674d81e3c3198c4133bd61ce340d23650921233baa644ca/mm_print-0.2.0.tar.gz", hash = "sha256:4801932f25a9c01c02572c47f4c3d47ab599e7dc72e33af8c7281993cf40e108", size = 29118, upload-time = "2025-10-08T13:12:31.665Z" }
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/e3/0e/68f88f9a98bc83a20de5dbb18bc13349ac60ffd6614c5f90cae2fdde6e23/mm_print-0.2.0-py3-none-any.whl", hash = "sha256:1b1372062b150785ccbb13378f7cd0f75834b442c2c8262d25945482095f0c6c", size = 2102, upload-time = "2025-10-08T13:12:30.474Z" },
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.3"
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.0" },
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.1.0"
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/fe/75/af448d8e52bf1d8fa6a9d089ca6c07ff4453d86c65c145d0a300bb073b9b/rich-14.1.0.tar.gz", hash = "sha256:e497a48b844b0320d45007cdebfeaeed8db2a4f4bcf49f15e455cfc4af11eaa8", size = 224441, upload-time = "2025-07-25T07:32:58.125Z" }
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/e3/30/3c4d035596d3cf444529e0b2953ad0466f6049528a879d27534700580395/rich-14.1.0-py3-none-any.whl", hash = "sha256:536f5f1785986d6dbdea3c75205c473f970777b4a0d6c6dd1b696aa05a3fa04f", size = 243368, upload-time = "2025-07-25T07:32:56.73Z" },
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