Server Error Error: Convert JSBI instances to native numbers using `toNumber`

Viewed 32

When try to use JSBI.BigInt(wei) function of JSBI causing Issue.

It throughs Server Error: Error: Convert JSBI instances to native numbers using toNumber.

1 Answers

This Problem is with newer versions of JSBI. Use Specifically version: "3.2.5"

npm unistall jsbi
npm install jsbi@3.2.5

Related