Metadata-Version: 2.1
Name: evmosproto
Version: 1.0.2
Summary: Evmos protobuf compiled files.
Home-page: https://github.com/hanchon-live/evmosproto
Author: Hanchon
Author-email: guillermo.paoletti@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: google (==3.0.0)
Requires-Dist: grpc-tools (==0.0.1)
Requires-Dist: grpcio (==1.41.0)
Requires-Dist: grpcio-tools (==1.41.0)
Requires-Dist: protobuf (==3.18.1)
Requires-Dist: six (==1.16.0)

# Evmos proto

Compiled evmos' `protobuf` files ready to use with `python3.9+`.

## Installation

```sh
pip install evmosproto
```

## Usage

```python
import grpc
from evmosproto.cosmos.tx.v1beta1.service_pb2_grpc import ServiceStub
from evmosproto.cosmos.tx.v1beta1.service_pb2 import BroadcastTxRequest
channel = grpc.insecure_channel('127.0.0.1:9090')
stub = ServiceStub(channel)

msg = BroadcastTxRequest()

# Set your msg params...

send = stub.BroadcastTx(msg)
print(send)
```


