Skip to main content

Oasis Sapphire encryption middleware for Web3.py

Project description

sapphire.py

Installation

pip3 install --user -r requirements.txt
pip3 install --user -r requirements.dev.txt
make

Changelog

https://github.com/oasisprotocol/sapphire-paratime/tree/main/clients/py/CHANGELOG.md

Usage

from web3 import Web3, AsyncWeb3
from web3.middleware import SignAndSendRawMiddlewareBuilder
from eth_account import Account
from eth_account.signers.local import LocalAccount

from sapphirepy import sapphire

w3 = Web3(Web3.HTTPProvider(sapphire.NETWORKS['sapphire-localnet']))
async_w3 = AsyncWeb3(
    AsyncWeb3.AsyncHTTPProvider(
        sapphire.NETWORKS['sapphire-localnet']
    )
)

# Optional: Setup your Web3 provider with a signing account.
# This account is used for signing transactions.
account: LocalAccount = (
    Account.from_key(  # pylint: disable=no-value-for-parameter
        private_key="<your_private_key_here>"
    )
)
w3.middleware_onion.add(SignAndSendRawMiddlewareBuilder.build(account))

# Finally, wrap the provider to add Sapphire end-to-end encryption.
# Note: Account parameter in the wrap() function is used for signing view
# calls and can be different from the account used for singing transactions.
w3 = sapphire.wrap(w3, account) # Can provide custom "account" parameter
w3.eth.default_account = account.address # Alternatively you can set "from" tx param each time for signed view calls
# Wrapper middleware also works with AsyncWeb3
async_w3 = sapphire.wrap(async_w3, account)

# Account parameter is optional, to encrypt view calls without signing 
# we can omit the account parameter
w3 = sapphire.wrap(w3)
async_w3 = sapphire.wrap(async_w3)

# Optionally, query Oasis Web3 Gateway for the gas price.
from web3.gas_strategies.rpc import rpc_gas_price_strategy
w3.eth.set_gas_price_strategy(rpc_gas_price_strategy)

The Sapphire middleware for Web3.py ensures all transactions, gas estimates and view calls are end-to-end encrypted between your application and the smart contract.

License

The Deoxys-ii library and its test vectors are derived directly from the original go library.

The remainder of the Oasis Sapphire python bindings is licensed under Apache 2.0 license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oasis_sapphire_py-0.4.2-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file oasis_sapphire_py-0.4.2-py3-none-any.whl.

File metadata

File hashes

Hashes for oasis_sapphire_py-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e3c957df9958fd6e8e7cf700228d4255bf1f32800974e11770f4ba41b2be65ab
MD5 e037628e6e0a7df3ac37f1ddceb208a6
BLAKE2b-256 12be6b2771f716c3d94d249262e85418e9175864d925537c1f0f55af3170ccef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page