Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bignumberify

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bignumberify

A parser to correctly recreate BigNumber items in a JSON

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

bigNumberify

A simple parser to correctly rebuild objects containing big numbers while parsing JSON strings

Intro

Managing transactions and results of query to smart contracts, you get a JSON string that encodes some Big Number in a format like

{
  "bn": {
    "type": "BigNumber",
    "hex": "0x32"
  }
}

If you JSON.parse it, the property bn won't be a BigNumber :(

bigNumberify fixes the issue fixing all the BigNumber objects inside the JSON.

Usage

Use with

const bigNumberify = require("bignumberify")
const obj = bigNumberify(JSON.parse(jsonStr))

History

0.0.1

  • First version

License

MIT

(c) 2022, Francesco Sullo francesco@sullo.co

FAQs

Package last updated on 05 Dec 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc