APIFunctionsFunction: toWei()On this pageFunction: toWei()toWei(num): BigNumberConvert any number to wei (add 18 zeros)ParametersnumstringReturnsBigNumberExampleimport { toWei } from '@colony/sdk';const oneEther = '1.0';console.log(toWei(oneEther)); // { BigNumber: "1000000000000000000" }