Setup

Cloning the base repository

First, you will need to clone the base ownables-sdk repository and save it under your preferred location.

$ git clone git@github.com:ltonetwork/ownable-sdk.git
$ cd ownable-sdk

Open it in your preferred editor and proceed to the next section.

Starting the demo wallet

First, navigate to the wallet directory and install the dependencies:

$ cd www/
$ npm i

We can now start the wallet:

$ npm run start

Once that is done, navigate to http://localhost:8080/ and you should see an empty wallet that is ready to import OWNABLES packages.

Building the Ownable

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:

$ npm run ownables:build --package=potion

Running this will produce a zip file containing the Ownable under ownables folder.

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.

Building all Ownables

In case you want to build all Ownables in your project at once, run:

$ npm run ownables:build-all

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.

Last updated