Adds basic BigNumber type support

Fixes `To Base` & `From Base` issues as reported on twitter
This commit is contained in:
Matt C 2018-01-03 11:26:31 +00:00
parent 0ba28dc891
commit c241d2f90b
5 changed files with 47 additions and 932 deletions

View file

@ -806,7 +806,7 @@ const OperationConfig = {
module: "Default",
description: "Converts a number to decimal from a given numerical base.",
inputType: "string",
outputType: "number",
outputType: "BigNumber",
args: [
{
name: "Radix",
@ -818,7 +818,7 @@ const OperationConfig = {
"To Base": {
module: "Default",
description: "Converts a decimal number to a given numerical base.",
inputType: "number",
inputType: "BigNumber",
outputType: "string",
args: [
{