
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
bignumberify
Advanced tools
A simple parser to correctly rebuild objects containing big numbers while parsing JSON strings
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.
In a Node app load as
const bigNumberify = require("bignumberify");
In a ES6 app, load as
import bigNumberify from "bignumberify";
const obj = bigNumberify(inputObj);
or as a reviver function
const obj = JSON.parse(jsonStr, bigNumberify);
With BigNumber you do not need any special replacer to stringify an object containing BigNumbers. However, JSON.stringify throw an error if you try to stringify an object containing BigInt values. No problem, you can stringify them using
const jsonStr = JSON.stringify(obj, bigNumberify.stringify);
It will encode the BigInt 125000n
as
{
"type": "BigInt",
"hex": "0x01e848"
}
This way, during the parsing, the reviver function will be able to correctly rebuild the BigInt. Notice that the common practice is to stringify BigInt values as strings, but if you do so, how can you know, parsing the object, if that is a string or a BigInt?
0.0.7
bigNumberify.stringify
method to the able to stringify objects containing BigInt0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
MIT
(c) 2022, Francesco Sullo francesco@sullo.co
FAQs
A parser to correctly recreate BigNumber items in a JSON
The npm package bignumberify receives a total of 3 weekly downloads. As such, bignumberify popularity was classified as not popular.
We found that bignumberify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.