Skip to content

Commit

Permalink
Merge pull request #75 from fjarri/compages
Browse files Browse the repository at this point in the history
Switch to `compages` for JSON serialization
  • Loading branch information
fjarri authored Mar 16, 2024
2 parents 68e4585 + 07efeed commit 761ffbd
Show file tree
Hide file tree
Showing 19 changed files with 783 additions and 1,184 deletions.
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Changed
- ``ClientSession.estimate_transact()`` and ``estimate_deploy()`` now require a ``sender_address`` parameter. (PR_62_)
- Switched to ``alysis`` from ``eth-tester`` for the backend of ``LocalProvider``. (PR_70_)
- Bumped the minimum Python version to 3.10. (PR_72_)
- The entities are now dataclasses instead of namedtuples. (PR_75_)


Added
Expand Down Expand Up @@ -65,6 +66,7 @@ Fixed
.. _PR_68: https://github.com/fjarri/pons/pull/68
.. _PR_70: https://github.com/fjarri/pons/pull/70
.. _PR_72: https://github.com/fjarri/pons/pull/72
.. _PR_75: https://github.com/fjarri/pons/pull/75


0.7.0 (09-07-2023)
Expand Down
198 changes: 99 additions & 99 deletions pdm.lock

Large diffs are not rendered by default.

13 changes: 3 additions & 10 deletions pons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Mutability,
Receive,
)
from ._entities import Address, Amount, Block, BlockHash, TxHash
from ._entities import Address, Amount, Block, BlockHash, RPCError, RPCErrorCode, TxHash
from ._fallback_provider import (
CycleFallback,
FallbackProvider,
Expand All @@ -48,15 +48,8 @@
)
from ._http_provider_server import HTTPProviderServer
from ._local_provider import LocalProvider, SnapshotID
from ._provider import (
JSON,
HTTPProvider,
ProtocolError,
Provider,
RPCError,
RPCErrorCode,
Unreachable,
)
from ._provider import HTTPProvider, ProtocolError, Provider, Unreachable
from ._serialization import JSON
from ._signer import AccountSigner, Signer

__all__ = [
Expand Down
Loading

0 comments on commit 761ffbd

Please sign in to comment.