Setup
Last updated
Last updated
First, you will need to clone the base ownables-sdk
repository and save it under your preferred location.
Open it in your preferred editor and proceed to the next section.
First, navigate to the wallet directory and install the dependencies:
We can now start the wallet:
Once that is done, navigate to http://localhost:8080/ and you should see an empty wallet that is ready to import OWNABLES packages.
Now that the wallet is running, we need some Ownable packages that we can import.
There are a few handy commands for that.
The ownables:build
script, which takes a --package
parameter that specifies which OWNABLE should be packaged. The potion OWNABLE is built by running:
Running this will produce a zip file containing the Ownable under ownables
folder.
Now we can go back to our wallet and click the ➕ icon at the bottom right. This will open an action menu in which we can choose to import a new Ownable from a file and select the zipped package from the previous step.
After importing the potion Ownable package, there will be another option in the action menu named potion, clicking on which will issue the Ownable.
Success! The issued Ownable will be visible in your wallet.
In case you want to build all Ownables in your project at once, run:
It will simply run the previous script in every directory under /ownables
.
To get more insight on how to build your own custom Ownable read about the Ownable Architecture.