Skip to main content

Understanding plugins

Polywrap plugins enable existing SDKs implemented in the client's language (e.g. JavaScript) to be queried as if they were normal wrappers.

For information on how to create your own Polywrap plugin, read the guide here.

Plugins can be used to enable any native client functionality that cannot be implemented in WebAssembly, such as sending HTTP requests, or signing with a private key.

Default Plugins#

All Polywrap clients come equipped with the following default plugins:

  • ens/ens.web3api.eth
  • ens/ipfs.web3api.eth
  • ens/ethereum.web3api.eth
  • w3/logger

Plugin URI Redirects#

Plugins are configured using URI Redirects. We would specify the uri property as the URI of the plugin we want to use, and the plugin property as the actual plugin.

For example, we can add an Ethereum plugin that uses MetaMask (or any other Ethereum JS provider) for its provider & signer!

import { ethereumPlugin } from '@web3api/ethereum-plugin-js';
// Enable Metamask
const ethereum = window.ethereum;
await ethereum.request({
method: 'eth_requestAccounts',
});
// Configure the Ethereum plugin w/ MetaMask
const client = new Web3ApiClient({
plugins: [
uri: "ens/ethereum.web3api.eth",
plugin: ethereumPlugin({
networks: {
mainnet: {
provider: ethereum
}
},
// If defaultNetwork is not specified, mainnet will be used.
defaultNetwork: "mainnet"
})
]
});