Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

minterjs-util

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minterjs-util

Utils for Minter

latest
Source
npmnpm
Version
0.25.1
Version published
Weekly downloads
2.7K
2514.29%
Maintainers
1
Weekly downloads
 
Created
Source

minterjs-util

NPM Package Build Status Coverage Status License: MIT

A collection of utility functions for Minter

Please note that this package is under active development and is subject to change.

It is complemented by the following packages:

  • minter-js-sdk complete JS solution to work with Minter
  • minterjs-wallet take care of BIP39 mnemonic phrase, private key and address

Install

npm install minterjs-util

or from browser

<script src="https://unpkg.com/minterjs-util"></script>
<script>
const pips = minterUtil.convertFromPip(1);
const fee = (new minterUtil.FeePrice({/* ... */})).getFeeValue('0x01');
</script>

FeePrice.getFeeValue()

Params:

  • txType: number or string, tx type
  • options: object
  • options.payload: string or Buffer, tx payload
  • options.payloadLength: number, length of payload
  • options.coinSymbol: string, coin symbol if tx is coin creation (can be replaced with coinSymbolLength)
  • options.coinSymbolLength: number, coin symbol length if tx is coin creation (can be replaced with coinSymbol)
  • options.multisendCount: number, count of recipients if tx is multisend

Full example: github.com/MinterTeam/minterjs-util/blob/master/test/fee.test.js

import { FeePrice, TX_TYPE } from 'minterjs-util';
const getFeeValue = (new FeePrice({/* ... */})).getFeeValue;

getFeeValue(TX_TYPE.SEND);
// 0.01

getFeeValue(TX_TYPE.SEND, {payload: 'asé'});
// 0.018

getFeeValue(TX_TYPE.CREATE_COIN, {coinSymbol: 'ABCDEFG'});
// 10000

getFeeValue(TX_TYPE.CREATE_COIN, {coinSymbolLength: 6});
// 100000

getFeeValue(TX_TYPE.MULTISEND, {deltaItemCount: 5});
// 0.035

License

MIT License

Keywords

minter

FAQs

Package last updated on 05 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts