You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For amount field, it has the number type which can support around 53 bit number. However, an issue currency amount has the maximum value of 9999999999999999 * 10^80, which is not a value that number can store. Explorer should change to a type(eg. BigNumber) that can store these large values. This would likely affect a lot of places in the repo, such as helper functions.
The text was updated successfully, but these errors were encountered:
For amount field, it has the
number
type which can support around 53 bit number. However, an issue currency amount has the maximum value of 9999999999999999 * 10^80, which is not a value thatnumber
can store. Explorer should change to a type(eg.BigNumber
) that can store these large values. This would likely affect a lot of places in the repo, such as helper functions.The text was updated successfully, but these errors were encountered: