Skip to content

Enable integration of JavaScript, TypeScript, and Node.js code with the DAV Network

License

Notifications You must be signed in to change notification settings

DAVFoundation/dav-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a5c0cc1 · Jan 7, 2020
Oct 2, 2018
Jan 24, 2019
Jan 7, 2020
Jan 7, 2020
Jan 7, 2020
Jan 7, 2020
Aug 13, 2018
Dec 21, 2018
Mar 26, 2018
Mar 25, 2018
Sep 17, 2018
Jan 24, 2019
Oct 2, 2018
Dec 16, 2018
Sep 17, 2018
Sep 26, 2018
May 5, 2019
Aug 22, 2017
Dec 4, 2018
Jan 19, 2019
Dec 2, 2019
Sep 26, 2018
Sep 26, 2018
Nov 27, 2019
Sep 22, 2018
Nov 27, 2019
Sep 26, 2018

Repository files navigation

DAV-JS SDK

Gitter chat license

The DAV JavaScript SDK eases integration of JavaScript, TypeScript, and Node.js code with the DAV Network.

Sample Code

The following sample shows how an electic boat might define a statement of need for charging services. Typically this will be sent by a boat that is looking for a charging station around certain coordinates that can accommodate it.

This request is sent to the discovery engine which broadcasts the need to DAV identities that can provide this service. Bids are later received in response.

const { SDKFactory } = require('dav-js');
const { NeedParams, enums } = require('dav-js/dist/vessel-charging');
const DAV = SDKFactory({
  apiSeedUrls,
  kafkaSeedUrls,
});
const boat = await DAV.getIdentity(boatDavId);

const needParams = new NeedParams({
  location: {
    lat: 32.050382,
    long: 34.766149,
  },
  radius: 20,
  startAt: 1538995253092,
  dimensions: {
    length: 50,
    width: 15,
    height: 20,
  },
  weight: 50000,
  batteryCapacity: 4,
  currentBatteryCharge: 45,
  energySource: enums.EnergySources.Solar,
  amenities: [enums.Amenities.Docking],
});
const need = await boat.publishNeed(needParams);

A full working sample can be seen in the DAV developer portal.

About

Enable integration of JavaScript, TypeScript, and Node.js code with the DAV Network

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published