https://github.com/sterliakov/pyevmos
Python SDK to assist developers on Evmos chain.
https://github.com/sterliakov/pyevmos
blockchain evmos python sdk
Last synced: 10 months ago
JSON representation
Python SDK to assist developers on Evmos chain.
- Host: GitHub
- URL: https://github.com/sterliakov/pyevmos
- Owner: sterliakov
- License: gpl-3.0
- Created: 2022-08-28T22:28:44.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-04-03T19:05:47.000Z (about 1 year ago)
- Last Synced: 2025-07-27T21:57:13.150Z (11 months ago)
- Topics: blockchain, evmos, python, sdk
- Language: Python
- Homepage:
- Size: 1.26 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://pypi.python.org/pypi/evmos/)
[](https://pypi.python.org/pypi/evmos/)
[](https://pyevmos.readthedocs.io/en/latest/?badge=latest)
[](https://github.com/pre-commit/pre-commit)
[](https://github.com/charliermarsh/ruff)

# Maintenance note
Evmos v16 and later introduced several major changes to the upstream protocol.
This library is not actively maintained now due to insufficient demand - please
open an issue if you have interested in using pyevmos, I will be able to
allocate some time to it.
Version on master has several breaking changes and generates EIP-712
transactions that may be rejected by upstream nodes: "old-style" EIP-712
with `ExtensionOptionsWeb3Tx` are deprecated and no longer supported by recent
node versions. Currently master branch ships with protobuf files generated from
evmos `v20.0.0`.
# Pyevmos - Python SDK to assist developers on Evmos chain.
**Disclaimer: this package is not officialy maintained by Evmos affiliates.**
Read our [documentation](https://pyevmos.readthedocs.io/en/latest/index.html) on ReadTheDocs.
This project is a direct python port of [evmosjs](https://github.com/evmos/evmosjs) library.
# Installation
Install with pip:
```bash
pip install -U evmos
```
Install from source:
```bash
git clone https://github.com/sterliakov/pyevmos/
cd pyevmos
pip install .
```
Supported extras:
- `types`: install stubs for untyped dependencies.