conflux-web-utils

Collection of utility functions used in conflux-web.js.

Usage no npm install needed!

<script type="module">
  import confluxWebUtils from 'https://cdn.skypack.dev/conflux-web-utils';
</script>

README

conflux-web-utils

This is a sub package of ConfluxWeb.js

This contains useful utility functions for Dapp developers.

Installation

npm install conflux-web-utils

Usage

Import all of the utils functions

import * as Utils from 'conflux-web-utils';

console.log(Utils);
> {
    sha3: Function,
    soliditySha3: Function,
    isAddress: Function,
    ...
}

Import what you need

import { asciiToHex } from 'conflux-web-utils';

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

Types

All the typescript typings are placed in the types folder.