Build, deploy and test
#
BuildLet's start building our project! Simply run:
In the output window, you'll see that our smart contract was compiled, and our Polywrap wrapper was built and output to the ./build/*
folder. It contains the following files:
This directory's contents will be uploaded to decentralized storage, and enable any Polywrap Client to download, and execute your wrapper's functionality within the application.
The wrap.wasm
file is the WebAssembly file that was compiled from AssemblyScript.
Lastly, the wrap.info
file describes the layout of the package, as well as its methods and custom types.
#
DeployTo deploy our Polywrap wrapper and associated smart contracts for testing, let's first setup a test environment. Simply run:
This will stand-up an Ethereum node, as well as an IPFS node.
tip
In the future, test environments will be easily configurable to include any nodes your Polywrap wrapper requires.
Next, let's deploy the SimpleStorage.sol
smart contract, and the simplestorage.eth
wrapper URI by running:
#
TestWith our Polywrap wrapper live at simplestorage.eth
on our test network, it's now time to test it out!
This is where our workflows come in handy. Run yarn test
to see this in action.
In the output window, you'll see a combination of jobs and returned results from the Polywrap wrapper. In this workflow, we send a combination of setData
and getData
queries which modify the SimpleStorage.sol
contract's stored value.
Now that we've built the SimpleStorage Wasm wrapper, let's add custom functionality to it in the next section!