5.1.3 • Published 6 years ago

@susy-js/contracts v5.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

@susy-js/contracts

Susy's contracts as ES6 classes.

Build Status npm (scoped) npm dependencies Status

Installation

yarn add @susy-js/contracts

Usage

The Contracts object

import Api from '@susy-js/api';
import Contracts from '@susy-js/contracts';

const sophonProvider = ...; // Put your Sophon provider here, e.g. from MetaMask
const api = new Api(sophonProvider);

const contracts = Contracts.get(api);

// The contracts object exposes the following contracts:
contracts.badgerefg
contracts.dappref
contracts.githubhint
contracts.registry
contracts.signaturereg
contracts.tokenreg

See the docs/ folder to see the properties of each of those contracts.

Import ABIs

import { sip20 } from '@susy-js/contracts/lib/abi';

The list of available ABIs is in the src/abi/ folder.