This package has been deprecated

Author message:

Dharma.js is no longer being maintained by the Dharma Labs team. Please email support@dharma.io if you have any questions / concerns

@dharmaprotocol/dharma.js
TypeScript icon, indicating that this package has built-in type declarations

0.1.76 • Public • Published


Hello, dharma.js!

CircleCI

This repository contains the dharma.js client application development libraries. dharma.js makes it easy for developers who may not be deeply familiar with smart contract development to interact with the various components of Dharma protocol and build hyper-flexible lending applications.

For more information, please check out the Dharma Developer Portal.

Getting Started with Dharma.js

Installing Dharma.js

Add Dharma.js to your project using yarn:

yarn add @dharmaprotocol/dharma.js

Alternatively, add Dharma.js to your project using npm:

npm install @dharmaprotocol/dharma.js --save

Importing Dharma.js

Include Dharma.js in your project code using ES6 style imports (recommended):

import { Dharma } from "@dharmaprotocol/dharma.js";

Alternatively, include Dharma.js in your project code using require syntax:

const { Dharma } = require("@dharmaprotocol/dharma.js");

Instantiating Dharma.js

In order to instantiate Dharma.js, you need to specify a web3 provider.

The web3 provider can either be instantiated directly, or pulled from the browser's window object.

Instantiating the web3 provider directly

You'll want to instantiate a web3 provider directly if you're:

  • running Dharma.js on a backend
  • working with a local blockchain

You'll first import Dharma and Web3 from the Dharma.js package:

import { Dharma, Web3 } from "@dharmaprotocol/dharma.js";

Assuming you're running a local blockchain on localhost port 8545, you'd specify the provider as follows:

const host = "http://localhost:8545";
const provider = new Web3.providers.HttpProvider(host);

You'd then pass the above provider to the Dharma constructor, using JavaScript's new operator to construct an instance of Dharma connected to your local blockchain:

const dharma = new Dharma(provider);

Pulling the web3 provider off the browser's window object

If the user is interacting with your dApp via a web3 wallet (e.g., MetaMask, Coinbase Wallet, etc.), you can pull the web3 provider from the browser's window object and pass that to the Dharma constructor:

const provider = window.web3.currentProvider;

const dharma = new Dharma(provider);

Readme

Keywords

none

Package Sidebar

Install

npm i @dharmaprotocol/dharma.js

Weekly Downloads

1

Version

0.1.76

License

MIT

Unpacked Size

37.1 MB

Total Files

348

Last publish

Collaborators

  • cminxi
  • graemeboy
  • nahollander
  • saturnial