Winding Tree Javascript Libraries

A JS library for interaction with Winding Tree platform. For detailed description of higher-level
concepts, please head over to our Developer portal.
Installation
npm install @windingtree/wt-js-libs
const { WtJsLibs } = require('@windingtree/wt-js-libs');
const libs = WtJsLibs.createInstance({
onChainDataOptions: { ... },
offChainDataOptions: { ... },
trustClueOptions: { ... },
});
const entrypoint = libs.getEntrypoint('0x....');
const hotelsDirectory = await entrypoint.getSegmentDirectory('hotels');
<script type="text/javascript" src="https://unpkg.com/@windingtree/wt-js-libs"></script>
<script type="text/javascript" src="https://unpkg.com/@windingtree/off-chain-adapter-in-memory"></script>
<script type="text/javascript" src="https://unpkg.com/@windingtree/trust-clue-curated-list"></script>
<script type="text/javascript">
const libs = window.WtJsLibs.createInstance({
onChainDataOptions: {
provider: 'http://localhost:8545',
},
offChainDataOptions: {
adapters: {
'in-memory': {
create: (options) => {
return new window.InMemoryAdapter(options);
},
},
},
},
trustClueOptions: {
provider: 'http://localhost:8545',
clues: {
'curated-list': {
options: {
address: '0x...',
provider: 'http://localhost:8545',
},
create: async (options) => {
return new window.TrustClueCuratedList(options);
},
},
}
},
});
const entrypoint = libs.getEntrypoint('0x....');
const hotelsDirectory = await entrypoint.getSegmentDirectory('hotels');
const factory = await entrypoint.getOrganizationFactory();
</script>
Usage
For more examples, see test/usage/integration.spec.js
file. The public interface of this library
should always be the same regardless of what kind of implementation is used
under the hood.
import { WtJsLibs } from '@windingtree/wt-js-libs';
import InMemoryAdapter from '@windingtree/off-chain-adapter-in-memory';
import { TrustClueCuratedList } from '@windingtree/trust-clue-curated-list';
const libs = WtJsLibs.createInstance({
onChainDataOptions: {
provider: 'http://localhost:8545',
},
offChainDataOptions: {
adapters: {
'in-memory': {
options: {
},
create: (options) => {
return new InMemoryAdapter(options);
},
},
},
},
trustClueOptions: {
provider: 'http://localhost:8545',
clues: {
'curated-list': {
options: {
address: '0x...',
provider: 'http://localhost:8545',
},
create: async (options) => {
return new window.TrustClueCuratedList(options);
},
},
}
},
});
const entrypoint = libs.getEntrypoint('0x....');
const directory = await entrypoint.getSegmentDirectory('hotels');
const hotel = await directory.getOrganization('0x...');
const plainHotel = await hotel.toPlainObject();
const hotelName2 = plainHotel.orgJson.contents.name;
const hotelApis = await hotel.getWindingTreeApi();
const apiContents = (await hotelApis.hotel[0].toPlainObject()).contents;
const hotelDescriptionDocument = await apiContents.descriptionUri.contents;
const orgJson = await hotel.orgJson;
const hotelOrgJsonUrl = orgJson.ref;
const orgJsonContents = await orgJson.contents;
wallet = libs.createWallet({});
wallet.unlock('with-password');
try {
const factory = entrypoint.getOrganizationFactory();
const createHotel = await factory.createAndAddOrganization({
orgJsonUri: 'https://example.com/my-hotel-data.json',
owner: '0x...',
}, directory.address);
const result = await wallet.signAndSendTransaction(createHotel.transactionData, createHotel.eventCallbacks);
const hotel = await createHotel.organization;
const newHotelAddress = hotel.address;
} finally {
wallet.lock();
}
const directory = entrypoint.getSegmentDirectory('airlines');
const airline = await directory.getOrganization('0x...');
try {
const factory = entrypoint.getOrganizationFactory('0x...');
const createAirline = await factory.createAndAddOrganization({
orgJsonUri: 'https://example.com/my-airline-data.json',
owner: '0x...',
}, directory.address);
const result = await wallet.signAndSendTransaction(transactionData, eventCallbacks);
const airline = await createAirline.organization;
const newAirlineAddress = airline.address;
} finally {
wallet.lock();
}
If you want, you can create the airline contract first and add it later:
const createHotel = await factory.createOrganization({
owner: hotelOwner,
orgJsonUri: orgJsonUri,
});
const result = await wallet.signAndSendTransaction(createHotel.transactionData, createHotel.eventCallbacks);
const hotel = await createHotel.hotel;
const addHotel = await directory.add(hotel);
await wallet.signAndSendTransaction(addHotel.transactionData, addHotel.eventCallbacks);
Documentation
The current documentation can be rendered by running npm run docs
.
Off-chain data adapters
These are used to access data stored not on the Ethereum blockchain but in
a different storage. The adapters are used to unify access to these resources.
Existing implementations
- In memory - Example basic implementation which is not very useful, but should be enough for quick hacking or testing
- Swarm - Uses Ethereum Swarm for off-chain storage.
- HTTPS - Retrieves data from arbitrary HTTPS locations.
Developing your own off-chain data adapter
For insipiration, you can have a look at in-memory adapter,
if you'd like to create it all by yourself, here's what you need.
- Your package has to implement a simple interface
that provides ways to store, update and retrieve data.
- You can also choose how your plugin is instantiated and whether you need any initialization
options. These will be passed whenever an instance is created.
- Off Chain data adapters are used in two places
StoragePointer
- The adapter is used to download off-chain data in thereOffChainDataClient
- It is responsible for proper instantiation of all off-chain data adapters.
The interface is subject to change as we go along and find out what other types
of storages might require - be it a signature verification, data signing and other non-common
utilities. The only actual method used in the wt-js-libs internals is download
right now.
Trust clues
Trust clues are used to determine a trust level towards an actor on Winding Tree
platform. Every client can use and interpret any trust clues they want. This library
does not enforce any combination or implementation of trust clues.
Existing implementations
- Curated List - Example list of addresses maintained by a smart contract owner
- LÍF Deposit - Lif deposit smart contract
Developing your own trust clue
- Your package has to implement simple interface
that provides ways to get and interpret its value for a particular ETH address.
- You can also choose how your plugin is instantiated and whether you need any initialization
options. These will be passed whenever an instance of a clue is created.
- Trust clues are used in a single place - the
TrustClueClient
. However, all users
of this library are encouraged to pass their own interpret
methods that
convert the raw value into a boolean flag based on the client's needs.
Test
To run unit tests, run npm test
.
Update notifications
Ideally, in addition to storing the data on the WT platform, the
WT Notification API should be used to immediately broadcast any data
changes to interested data consumers. For various reasons, the
wt-js-libs library does not implement this functionality. You
should make yourself familiar with the concept and documentation
at https://github.com/windingtree/wt-notification-api
and make sure to publish the notifications when appropriate. If
you do not do this, things will still work but the consumers
might take a significantly longer time to learn about the latest
changes you made.