Uniswap v2 Polywrap Documentation
#
OverviewWelcome to the Uniswap v2 Polywrap documentation!
If you haven't seen our demo yet, please take a look at it first!
The Uniswap Polywrap is written in AssemblyScript, and like the official Uniswap SDK, it has a robust test suite, performs arbitrary precision arithmetic, and supports rounding to significant digits or fixed decimal places. The Uniswap Polywrap business logic will be deployed on a decentralized endpoint, like IPFS.
Our first Polywrap client is for JavaScript(@web3api/client-js
) and it can run in any environment that can execute JavaScript. In the future, we'll have Polywrap clients for other environments (Python, Go, and more).
Developers integrating the Uniswap Polywrap into their app would use GraphQL queries to execute functions provided by the Uniswap Polywrap. This documentation shows you which query and mutation functions are made available by the Uniswap Polywrap and how to use them.
#
Uniswap Polywrap vs. Existing SDKThe Uniswap Polywrap aims to be a substantial improvement over Uniswap v2โs existing SDK.
While the official SDK bundles all classes (e.g. Token
), necessary data fields, and helper functions into the application, the Uniswap Polywrap does not. Instead, all business logic is deployed on a decentralized endpoint, like IPFS, and is downloaded at runtime when the client application launches.
You can learn more about the benefits of using Polywrap here.
#
CodeThe Pre-alpha source code is available on GitHub.
#
UsageTo use any Polywrap in your dapp, all you need is the Polywrap Client.
The Polywrap JavaScript Client works in both Node.js and browser applications.
Then, initialize the client.
Now, you're able to send queries to the Uniswap v2 Polywrap!
Take a look at more sophisticated tooling, such as our useWeb3ApiQuery
hook, in our Create a JS dApp guide.