GithubHelp home page GithubHelp logo

suissa / crypto-coin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from polkajs/crypto-coin

0.0 2.0 0.0 65 KB

Working with denominations and big number

License: ISC License

JavaScript 100.00%

crypto-coin's Introduction

crypto-coin travis npm downloads Greenkeeper badge

About

Install

// npm
npm install --save @polkajs/crypto-coin
// yarn
yarn add @polkajs/crypto-coin

// GLOBAL
npm install -g @polkajs/crypto-coin

Global use:

crypto-coin [from] [to] [value]

  • help crypto-coin -h
  • types crypto-coin -t ETH
  • version crypto-coin -v
crypto-coin ether wei 1

// OUTPUT: 1 ether = 1000000000000000000 wei

Use

// ES6
import CryptoCoin from '@polkajs/CryptoCoin';
// Or standard
const CryptoCoin = require('@polkajs/CryptoCoin').default;


// Create a new Coin:
const coin = new CryptoCoin(21000);

Basic Examples

new CryptoCoin([num, [radix, [denom, [opts]]]])

  • num?: number | string | bigNum
  • radix?: number
  • denom?: string
  • opts?: Object
// FULL SETUP OF THE DEFAULTS:
const coin = new CryptoCoin(0, 10, 'wei', {
  DEFAULT_GAS: '21000',      // an ethereum standard gas price
  UNIT_MAP:    UNIT_MAP_ETH, // scroll to the bottom to see
  COIN:        'ETH',        // which blockchain coin to use
  BIG_NUM_CONFIG: {}         // to update bignumber.js config
});
// simple:
const coin = new CryptoCoin(0, 'wei');
// options setting bitcoins denominations:
const coin = new CryptoCoin(10, {
  COIN: 'BTC'
});

// add to the coin:
coin.add(1);

// or add in a denomination:
coin.add(1, 'ether');

// print the total:
coin.toString();
// OUTPUT: 1000000000000000002      (wei)
coin.toString('ether');
// OUTPUT: 1.000000000000000002      (ether)

// subtract:
coin.sub(1);

// divide:
coin.div(1);

// multiply
coin.mul(1);

// get the default gas value:
const gas = new CryptoCoin().defaultGas(); // (bignumber)

The CryptoCoin is persistent If the coin's value is 1 wei:

coin.add(1);
coin.add(1);
coin.toString(); // 3  wei
coin.add(7);
coin.toString(); // 10 wei
coin.sub(5);
coin.toString(); // 5  wei

API

this module extends bignumber.js whose documentation can be found here: bignumber.js

Updated bignumber.js methods

addition

add(num, [radix, [denom]]): CryptoCoin

  • num: string | number | bigNum
  • radix: number
  • denom: string
const coin = new CryptoCoin('5', 'kwei'); // 5000 (wei)

coin.add(2).toString();         // 5002   (wei)
// or add in a different denomination
coin.add(2, 'kwei').toString(); // 7      (wei)
// or print in a different denomination
coin.add(2).toString('kwei');   // 5.002 (kwei)

subtraction

sub(num, [radix, [denom]]): CryptoCoin

  • num: string | number | bigNum
  • radix: number
  • denom: string
const coin = new CryptoCoin('5', 'kwei'); // 5000 (wei)

coin.sub(2).toString();         // 4998  (wei)
// or add in a different denomination
coin.sub(2, 'kwei').toString(); // 3000  (wei)
// or print in a different denomination
coin.sub(2).toString('kwei');   // 4.998 (kwei)

division

div(num, [radix, [denom]]): CryptoCoin

  • num: string | number | bigNum
  • radix: number
  • denom: string
const coin = new CryptoCoin('5', 'kwei'); // 5000 (wei)

coin.div(2).toString();         // 2500     (wei)
// or add in a different denomination
coin.div(2, 'kwei').toString(); // 2.5      (wei)
// or print in a different denomination
coin.div(2).toString('kwei');   // 2.5      (kwei)

multiplication

mul(num, [radix, [denom]]): CryptoCoin

  • num: string | number | bigNum
  • radix?: number
  • denom?: string
const coin = new CryptoCoin('5', 'kwei'); // 5000 (wei)

coin.mul(2).toString();         // 10000    (wei)
// or add in a different denomination
coin.mul(2, 'kwei').toString(); // 10000000 (wei)
// or print in a different denomination
coin.mul(2).toString('kwei');   // 10       (kwei)

CryptoCoin methods

INSTANTIATE

new CryptoCoin([num, [radix, [denom, [opts]]]])

  • num?: number | string | bigNum
  • radix?: number
  • denom?: string
  • opts?: Object
// DEFAULTS:
const coin = new CryptoCoin('0', 10, 'wei', {
  DEFAULT_GAS: '21000',      // an ethereum standard gas price
  UNIT_MAP:    UNIT_MAP_ETH, // scroll to the bottom to see
  COIN:        'ETH',        // which blockchain coin to use
  BIG_NUM_CONFIG: {}         // to update bignumber.js config
});

TO_STRING

toString([radix, [denom]]): string

  • radix: string | number = 10
  • denom: string
const coin = new CryptoCoin('5', 'kwei'); // 5000 (wei)

coin.toString();           // 5000 (wei)
// or print in a different denomination
coin.toString('kwei');     // 5    (kwei)
// fill in every parameter
coin.toString(10, 'kwei'); // 5    (kwei)

DEFAULT_GAS

defaultGas(): CryptoCoin

const coin = new CryptoCoin().defaultGas(); // 21000 (wei)

coin.toString();  // 21000 (wei)

Built-in Denominations

const UNIT_MAP_ETH = {
    'wei':          '1',
    'kwei':         '1000',
    'ada':          '1000',
    'femtoether':   '1000',
    'mwei':         '1000000',
    'babbage':      '1000000',
    'picoether':    '1000000',
    'gwei':         '1000000000',
    'shannon':      '1000000000',
    'nanoether':    '1000000000',
    'nano':         '1000000000',
    'szabo':        '1000000000000',
    'microether':   '1000000000000',
    'micro':        '1000000000000',
    'finney':       '1000000000000000',
    'milliether':   '1000000000000000',
    'milli':        '1000000000000000',
    'ether':        '1000000000000000000',
    'kether':       '1000000000000000000000',
    'grand':        '1000000000000000000000',
    'einstein':     '1000000000000000000000',
    'mether':       '1000000000000000000000000',
    'gether':       '1000000000000000000000000000',
    'tether':       '1000000000000000000000000000000'
};

const UNIT_MAP_BTC = {
    'satoshi':      '1',
    'microbit':     '1000',
    'uBTC':         '1000',
    'mBTC':         '100000',
    'bitcent':      '100000',
    'megabit':      '100000000',
    'XBT':          '100000000',
    'BTC':          '100000000',
    'bitcoin':      '100000000'
};

ISC License (ISC)

Copyright 2017 Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") Copyright (c) 1995-2003 by Internet Software Consortium

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

crypto-coin's People

Contributors

craiggleso avatar greenkeeper[bot] avatar

Watchers

Jean Carlo Nascimento avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.