npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

noahjs-tx

v6.1.1

Published

A simple module for creating, manipulating and signing Noah transactions

Readme

noahjs-tx

NPM Package Build Status Coverage Status License: MIT

A low level module for creating, manipulating and signing Noah transactions. Consider using noah-js-sdk to have full-featured solution.

It is complemented by the following packages:

Install

npm install noahjs-tx

or from browser

<script src="https://unpkg.com/noahjs-tx"></script>
<script>
const txData = noahTx.NoahTxDataSend(...);
const tx = noahTx.NoahTx(...);
</script>

Usage

Full example

example

import NoahTx from 'noahjs-tx';
import NoahTxSignature from 'noahjs-tx/src/tx-signature';
import NoahTxDataSend from 'noahjs-tx/src/tx-data/send';
import {TX_TYPE_SEND} from 'noahjs-tx/src/tx-types';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

// make tx data
const txData = new NoahTxDataSend({
    to: '0x0000000000000000000000000000000000000000',
    coin: coinToBuffer('BIP'),
    value: `0x01`,
});

// make tx
const tx = new NoahTx({
    nonce: '0x01',
    chainId: '0x01',
    gasPrice: '0x01',
    gasCoin: coinToBuffer('BIP'), 
    type: TX_TYPE_SEND,
    data: txData.serialize(),
});

// sign tx
const privateKey = Buffer.from('5fa3a8b186f6cc2d748ee2d8c0eb7a905a7b73de0f2c34c5e7857c3b46f187da', 'hex');
tx.signatureData = (new NoahTxSignature()).sign(tx.hash(false), privateKey).serialize();

// get signed tx string
const serializedTx = tx.serialize().toString('hex');

// post tx to blockchain
fetch(`https://noah-node-1.testnet.noah.network/send_transaction?tx=0x${serializedTx}`)
    .then((response) => {
        console.log('Success!', response.json());
    });

Initialization

import NoahTx from 'noahjs-tx';

const tx = new NoahTx(txParams);

Tx params

All tx params can be passed as Buffer or Hex string

  • nonce - int, used for prevent transaction reply (count of txs for this private key + 1)
  • `chainId' - int, identify network type, 0x01 - mainnet, 0x02 - testnet
  • gasPrice - big int, used for managing transaction fees
  • gasCoin - symbol of a coin to pay fee
  • type - type of transaction (see below).
  • data - data of transaction (depends on transaction type, see below).
  • payload (arbitrary bytes) - arbitrary user-defined bytes, e.g. tx message
  • serviceData - reserved field.
  • ECDSA fields (r, s and v) - digital signature of transaction

Methods

.sign(privateKey)

Sign a transaction with a given private key. privateKey - 32 bytes Buffer.

tx.sign(privateKey);

.verifySignature()

Determines if the signature is valid. Returns boolean.

const isValid = tx.verifySignature();

.validate(stringError)

Validates the signature. stringError - whether to return a string with a description of why the validation failed. Return boolean or string with errors.

const isValid = tx.validate();
const validationErrors = tx.validate(true);

.hash(includeSignature)

Computes a sha3-256 hash of the serialized tx. includeSignature - whether or not to include the signature, default true. Returns Buffer.

// hash of tx with signature
const hash = tx.hash();
// hash of tx without signature
const hashWithoutSignature = tx.hash(false);

.getSenderAddress()

Returns the sender's address. Returns Buffer.

const address = tx.getSenderAddress();

.getSenderPublicKey()

Returns the sender's public key. Returns Buffer.

const publicKey = tx.getSenderPublicKey();

Tx types

TX_TYPE_SEND: '0x01' TX_TYPE_SELL: '0x02' TX_TYPE_SELL_ALL: '0x03' TX_TYPE_BUY: '0x04' TX_TYPE_CREATE_COIN: '0x05' TX_TYPE_DECLARE_CANDIDACY: '0x06' TX_TYPE_DELEGATE: '0x07' TX_TYPE_UNBOND: '0x08' TX_TYPE_REDEEM_CHECK: '0x09' TX_TYPE_SET_CANDIDATE_ON: '0x0A' TX_TYPE_SET_CANDIDATE_OFF: '0x0B' TX_TYPE_CREATE_MULTISIG: '0x0C' TX_TYPE_MULTISEND: '0x0D' TX_TYPE_EDIT_CANDIDATE: '0x0E'

Tx data

Send

import {toBuffer, convertToPip} from 'noahjs-util';
import NoahTxDataSend from 'noahjs-tx/src/tx-data/send';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataSend({
   coin: coinToBuffer('MNT'),
   to: toBuffer('Mx7633980c000139dd3bd24a3f54e06474fa941e16'),
   value: `0x${convertToPip(10, 'hex')}`,
});

Multisend

import {toBuffer, convertToPip} from 'noahjs-util';
import NoahTxDataMultisend from 'noahjs-tx/src/tx-data/send';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataMultisend({
    list: [
        {
           coin: coinToBuffer('MNT'),
           to: toBuffer('Mx7633980c000139dd3bd24a3f54e06474fa941e16'),
           value: `0x${convertToPip(10, 'hex')}`,
        },
        {
           coin: coinToBuffer('MNT'),
           to: toBuffer('Mxddab6281766ad86497741ff91b6b48fe85012e3c'),
           value: `0x${convertToPip(2, 'hex')}`,
        },
    ]
});

Sell

import {convertToPip} from 'noahjs-util';
import NoahTxDataSell from 'noahjs-tx/src/tx-data/sell';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataSell({
   coinToSell: coinToBuffer('MNT'),
   valueToSell: `0x${convertToPip(10, 'hex')}`,
   coinToBuy: coinToBuffer('BELTCOIN'),
});

Sell All

import {convertToPip} from 'noahjs-util';
import NoahTxDataSellAll from 'noahjs-tx/src/tx-data/sell-all';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataSellAll({
   coinToSell: coinToBuffer('MNT'),
   coinToBuy: coinToBuffer('BELTCOIN'),
});

Buy

import {convertToPip} from 'noahjs-util';
import NoahTxDataBuy from 'noahjs-tx/src/tx-data/buy';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataBuy({
     coinToBuy: coinToBuffer('MNT'),
     valueToBuy: `0x${convertToPip(10, 'hex')}`,
     coinToSell: coinToBuffer('BELTCOIN'),
 });

Create Coin

import {convertToPip} from 'noahjs-util';
import NoahTxDataCreateCoin from 'noahjs-tx/src/tx-data/create-coin';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataCreateCoin({
   name: 'My coin',
   symbol: coinToBuffer('MYCOIN'),
   initialAmount: `0x${convertToPip(10, 'hex')}`,
   initialReserve: `0x${convertToPip(50, 'hex')}`,
   constantReserveRatio: 100,
});

Declare Candidacy

import {toBuffer, convertToPip} from 'noahjs-util';
import NoahTxDataDeclareCandidacy from 'noahjs-tx/src/tx-data/declare-candidacy';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataDeclareCandidacy({
   address: toBuffer('Mx7633980c000139dd3bd24a3f54e06474fa941e16'),
   pubKey: toBuffer('Mpf9e036839a29f7fba2d5394bd489eda927ccb95acc99e506e688e4888082b3a3'),
   commission: 10,
   coin: coinToBuffer('MNT'),
   stake: `0x${convertToPip(1000, 'hex')}`,
});

Edit Candidacy

import {toBuffer} from 'noahjs-util';
import NoahTxDataEditCandidate from 'noahjs-tx/src/tx-data/declare-candidacy';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataEditCandidate({
   ownerAddress: toBuffer('Mx7633980c000139dd3bd24a3f54e06474fa941e16'),
   rewardAddress: toBuffer('Mx7633980c000139dd3bd24a3f54e06474fa941e16'),
   pubKey: toBuffer('Mpf9e036839a29f7fba2d5394bd489eda927ccb95acc99e506e688e4888082b3a3'),
});

Delegate

import {toBuffer, convertToPip} from 'noahjs-util';
import NoahTxDataDelegate from 'noahjs-tx/src/tx-data/delegate';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataDelegate({
   pubKey: toBuffer('Mpf9e036839a29f7fba2d5394bd489eda927ccb95acc99e506e688e4888082b3a3'),
   coin: coinToBuffer('MNT'),
   stake: `0x${convertToPip(1000, 'hex')}`,
});

Unbond

import {toBuffer, convertToPip} from 'noahjs-util';
import NoahTxDataUnbond from 'noahjs-tx/src/tx-data/unbond';
import {coinToBuffer} from 'noahjs-tx/src/helpers';

const txData = new NoahTxDataUnbond({
   pubKey: toBuffer('Mpf9e036839a29f7fba2d5394bd489eda927ccb95acc99e506e688e4888082b3a3'),
   coin: coinToBuffer('MNT'),
   stake: `0x${convertToPip(1000, 'hex')}`,
});

Redeem Check

import {toBuffer} from 'noahjs-util';
import {Buffer} from 'safe-buffer';
import NoahTxDataRedeemCheck from 'noahjs-tx/src/tx-data/redeem-check';

const txData = new NoahTxDataRedeemCheck({
   rawCheck: toBuffer('Mcf89f01830f423f8a4d4e5400000000000000888ac7230489e80000b841ada7ad273bef8a1d22f3e314fdfad1e19b90b1fe8dc7eeb30bd1d391e89af8642af029c138c2e379b95d6bc71b26c531ea155d9435e156a3d113a14c912dfebf001ca0781a7b7d781634bcf632579b99d583887ab093dfbd50b65de5c0e5813028a277a071272d8e1be721f5307f40f87daa4ab632781640f18fd424839396442cc7ff17'),
   proof: Buffer.from('7f8b6d3ed18d2fe131bbdc9f9bce3b96724ac354ce2cfb49b4ffc4bd71aabf580a8dfed407a34122e45d290941d855d744a62110fa1c11448078b13d3117bdfc01', 'hex'),
});

Set Candidate On

import {toBuffer} from 'noahjs-util';
import NoahTxDataSetCandidateOn from 'noahjs-tx/src/tx-data/set-candidate-on';

const txData = new NoahTxDataSetCandidateOn({
   pubKey: toBuffer('Mpf9e036839a29f7fba2d5394bd489eda927ccb95acc99e506e688e4888082b3a3'),
});

Set Candidate Off

import {toBuffer} from 'noahjs-util';
import NoahTxDataSetCandidateOff from 'noahjs-tx/src/tx-data/set-candidate-off';

const txData = new NoahTxDataSetCandidateOff({
   pubKey: toBuffer('Mpf9e036839a29f7fba2d5394bd489eda927ccb95acc99e506e688e4888082b3a3'),
});

Create Multisig

import {toBuffer} from 'noahjs-util';
import NoahTxDataCreateMultisig from 'noahjs-tx/src/tx-data/create-multisig';

const txData = new NoahTxDataCreateMultisig({
   addresses: [toBuffer('Mxee81347211c72524338f9680072af90744333146'), toBuffer('Mxee81347211c72524338f9680072af90744333145'), toBuffer('Mxee81347211c72524338f9680072af90744333144')],
   weights: [1, 3, 5],
   threshold: 7,
});

License

MIT License