MyContract.numberFormat - 数值格式
MyContract.numberFormat
属性用来设置合约抽象的方法返回值的数值格式。
默认行为是返回BN对象。可选类型:BigNumber、BN、string。
属性原型
MyContract.numberFormat = number_type
示例代码
// Choices are: `["BigNumber", "BN", "String"].
const Example = artifacts.require('Example');
Example.numberFormat = 'BigNumber';