Skip to main content

Python

The Polywrap Client

To use Wraps in your app, all you need is the Polywrap Client.

NodeJS application boilerplate

We'll be using a simple empty python file named program.py as our boilerplate.

Install the Polywrap Client

You can install the Polywrap client using pip:

pip install polywrap

Invoking your first Wrap

In order to invoke a Wrap, we first need to instantiate the Polywrap Client:

At the top of your program.py file, import the PolywrapClient and instantiate it:

program.py
from polywrap import (
Uri, # Required to construct a valid wrap URI
PolywrapClient, # The client itself
PolywrapClientConfigBuilder,
sys_bundle,
web3_bundle,
)

builder = PolywrapClientConfigBuilder().add_bundle(sys_bundle).add_bundle(web3_bundle)

config = builder.build()

client = PolywrapClient(config)

At this point, you can already invoke Wraps! In the simple example below, we will invoke the SHA3 Wrap:

program.py
result = client.invoke(
uri=Uri.from_str("wrapscan.io/polywrap/sha3@1"),
method="sha3_256",
args={
"message": "Hello Polywrap!",
},
encode_result=False,
)

print(result)

Running the application using python program.py, you should now see the following appear in your console:

ba5a5d5fb7674f5975f0ecd0cd9a2f4bcadc9c04f5ac2ab3a887d8f10355fc38

This is the return value of our invocation.

What's going on here?

Using the Polywrap Client, we are invoking the sha3_256 method of a Wrap found under the WRAP URI wrapscan.io/polywrap/sha3@1.0 called the SHA3 Wrap.

Under the hood, through a process we call URI Resolution, the Polywrap Client knows how to fetch and execute the Wrap from decentralized storage.

The PolywrapClient comes pre-configured with everything you need for most Web2 and Web3 use-cases by default.

Invocation return value

Invoking a wrap can result in one of two scenarios:

  • A successful Wrap invocation returns the return value of the Wrap invocation. This can be anything - a boolean value, a string, an object, etc.
  • A failed Wrap invocation throws an exception describing the reason for invocation failure.

Universal SDKs

Now that we know how a Wrap is invoked, let's see Polywrap's true power: universal SDKs!

One of the greatest benefits of Polywrap for the end-user (you!) lies in the fact that you can use the Polywrap Client to invoke the same Wrap from a variety of platforms and languages. If there's a Polywrap Client for your language, you can invoke any Wrap. This means that you can use the same SDK across multiple languages!

Another important benefit of using Polywrap is that, since Wraps are downloaded from various sources, you can automatically receive patches and updates to your SDKs without having to update your codebase.

Now we'll invoke the Uniswap V3 Wrap which is a port of the Uniswap SDK, but written as a Wrap.

We can use the Uniswap Wrap to fetch Uniswap's basic data related to the WETH and USDC tokes, find the address of the pool for those two tokens. We are also checking each result for errors.

program.py
wethResult = client.invoke(
uri=Uri.from_str("wrapscan.io/polywrap/uniswap-v3@1"),
method="fetchToken",
args={
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"chainId": "MAINNET",
},
encode_result=False,
)

print(wethResult)

usdcResult = client.invoke(
uri=Uri.from_str("wrapscan.io/polywrap/uniswap-v3@1"),
method="fetchToken",
args={
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"chainId": "MAINNET",
},
encode_result=False,
)

print(usdcResult)

poolAddressResult = client.invoke(
uri=Uri.from_str("wrapscan.io/polywrap/uniswap-v3@1"),
method="getPoolAddress",
args={
"tokenA": wethResult,
"tokenB": usdcResult,
"fee": "MEDIUM",
},
encode_result=False,
)

print(poolAddressResult)

You can see more examples on how to use the Uniswap V3 Wrap in its docs page.

Compose everything

So far, we've only invoked a single Wrap, essentially using Polywrap to access a single SDK.

Using the Polywrap Client, we can invoke any number of SDKs, allowing us to build infinitely composable applications. If there's a Wrap for it, we can invoke it and use its functionality.

Visit Wrapscan and the awesome-polywrap repository to find a curated list of Wraps we and our community have developed.