Ethereum provider plugin for Polywrap Python Client
Project description
This package provides a Polywrap plugin for interacting with EVM networks.
The Ethereum Provider plugin implements the ethereum-provider-interface @ ens/wraps.eth:ethereum-provider@2.0.0 (see ../../interface/polywrap.graphql ). It handles Ethereum wallet transaction signatures and sends JSON RPC requests for the Ethereum wrapper.
Quickstart
Imports
>>> from polywrap_core import Uri >>> from polywrap_client import PolywrapClient >>> from polywrap_ethereum_provider import ethereum_provider_plugin >>> from polywrap_ethereum_provider.connection import Connection >>> from polywrap_ethereum_provider.connections import Connections >>> from polywrap_ethereum_provider.networks import KnownNetwork >>> from polywrap_client_config_builder import ( ... PolywrapClientConfigBuilder ... )
Configure Client
>>> ethreum_provider_interface_uri = Uri.from_str("ens/wraps.eth:ethereum-provider@2.0.0") >>> ethereum_provider_plugin_uri = Uri.from_str("plugin/ethereum-provider") >>> connections = Connections( ... connections={ ... "sepolia": Connection.from_network(KnownNetwork.sepolia, None) ... }, ... default_network="sepolia" ... ) >>> client_config = ( ... PolywrapClientConfigBuilder() ... .set_package( ... ethereum_provider_plugin_uri, ... ethereum_provider_plugin(connections=connections) ... ) ... .add_interface_implementations( ... ethreum_provider_interface_uri, ... [ethereum_provider_plugin_uri] ... ) ... .set_redirect(ethreum_provider_interface_uri, ethereum_provider_plugin_uri) ... .build() ... ) >>> client = PolywrapClient(client_config)
Invocation
>>> result = client.invoke( ... uri=ethreum_provider_interface_uri, ... method="request", ... args={"method": "eth_chainId"}, ... encode_result=False, ... ) >>> print(result) "0xaa36a7"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file polywrap_ethereum_provider-0.1.0b7.tar.gz
.
File metadata
- Download URL: polywrap_ethereum_provider-0.1.0b7.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.12 Linux/5.15.0-1042-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fad34ad3fdf4ead66cda6be3f41615389d0062c2786c8bfa2338e05f929aaaf |
|
MD5 | f60a6a9596c872a1e8e8ed75ed41e0b1 |
|
BLAKE2b-256 | 5163f4cc85c1ce09c300b73d179f00e64ebd8d2c0bf7e48cf0d75590446f9dad |
File details
Details for the file polywrap_ethereum_provider-0.1.0b7-py3-none-any.whl
.
File metadata
- Download URL: polywrap_ethereum_provider-0.1.0b7-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.12 Linux/5.15.0-1042-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2976b09d6bbe6290ae02ef1f0f14733f3db00a696ef11a2f5677f565f7568d97 |
|
MD5 | 3d5622603bd2ec8dfc0db20a5124b599 |
|
BLAKE2b-256 | 0bb076e2d7b81cd87e4580db59b24209d296ae38dc3d400c8e34ee912df06410 |