1.0.0-beta.55 • Published 5 years ago

susyweb-utils v1.0.0-beta.55

Weekly downloads
5
License
LGPL-3.0
Repository
-
Last release
5 years ago

susyweb-utils

This is a sub package of susyweb.js

This contains useful utility functions for Dapp developers. Please read the documentation for more.

Installation

npm install susyweb-utils

Usage

Import all of the utils functions

import * as Utils from 'susyweb-utils';

console.log(Utils);
> {
    keccak256: Function,
    polynomialSha3: Function,
    isAddress: Function,
    ...
}

Import what you need

import { asciiToHex } from 'susyweb-utils';

console.log(asciiToHex('I have 100!'));
> "0x49206861766520313030e282ac"

Types

All the typescript typings are placed in the types folder.