
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@windingtree/wt-js-libs
Advanced tools
Javascript libraries to interact with the Winding Tree contracts
A JS library for interaction with Winding Tree platform. For detailed description of higher-level concepts, please head over to our Developer portal.
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', // or infura or any other ETH RPC node
},
offChainDataOptions: {
adapters: {
'in-memory': {
create: (options) => {
return new window.InMemoryAdapter(options);
},
},
},
},
trustClueOptions: {
provider: 'http://localhost:8545', // or infura or any other ETH RPC node
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>
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.
// Winding Tree hotel index backed by a local Ethereum node. See below for airlines usage.
// You need to deploy the index and the hotel first. See test/utils/migrations
// for inspiration.
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: {
// This is how you plug-in any off-chain data adapter you want.
'in-memory': {
options: {
// some: options
},
create: (options) => {
return new InMemoryAdapter(options);
},
},
},
},
// This is how you configure trust clues
trustClueOptions: {
provider: 'http://localhost:8545', // or infura or any other ETH RPC node
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...');
// You can get all the off-chain data at once
// This approach might be a little slow as all off-chain data gets downloaded
const plainHotel = await hotel.toPlainObject();
// You get a synced plain javascript object you can traverse in any way you want
const hotelName2 = plainHotel.orgJson.contents.name;
// If an ORG.ID is using an API that conform to Winding Tree data model, you can wrap
// them into a storage pointer as well
const hotelApis = await hotel.getWindingTreeApi();
const apiContents = (await hotelApis.hotel[0].toPlainObject()).contents;
const hotelDescriptionDocument = await apiContents.descriptionUri.contents;
// OR you can do it like this
// Accessing off-chain data - the entry point url is actually stored on chain
const orgJson = await hotel.orgJson;
const hotelOrgJsonUrl = orgJson.ref;
// This data is fetched from some off-chain storage
const orgJsonContents = await orgJson.contents;
// How about creating a hotel and adding it to a directory?
wallet = libs.createWallet({/*...Your wallet in a JSON format..*/});
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);
// After the transaction is confirmed, one of the callbacks
// will set the object of the hotel.
const hotel = await createHotel.organization;
const newHotelAddress = hotel.address;
} finally {
wallet.lock();
}
// Working with airline data is very similar. Just change the segment and a few method names:
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);
// After the transaction is confirmed, one of the callbacks
// will set the object of the airline.
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;
// and add later
const addHotel = await directory.add(hotel);
await wallet.signAndSendTransaction(addHotel.transactionData, addHotel.eventCallbacks);
The current documentation can be rendered by running npm run docs
.
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
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.
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 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
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.To run unit tests, run npm test
.
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.
FAQs
Javascript libraries to interact with the Winding Tree contracts
The npm package @windingtree/wt-js-libs receives a total of 19 weekly downloads. As such, @windingtree/wt-js-libs popularity was classified as not popular.
We found that @windingtree/wt-js-libs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.