Move files up and remove ts folder

This commit is contained in:
Leonid Logvinov
2017-05-29 11:39:12 +02:00
parent 62cc3b919c
commit 0848fe96cf
11 changed files with 0 additions and 0 deletions

18
src/utils/utils.ts Normal file
View File

@@ -0,0 +1,18 @@
import * as BN from 'bn.js';
export const utils = {
/**
* Converts BigNumber instance to BN
* The only reason we convert to BN is to remain compatible with `ethABI. soliditySHA3` that
* expects values of Solidity type `uint` to be passed as type `BN`.
* We do not use BN anywhere else in the codebase.
*/
bigNumberToBN(value: BigNumber.BigNumber) {
return new BN(value.toString(), 10);
},
consoleLog(message: string): void {
/* tslint:disable */
console.log(message);
/* tslint:enable */
},
};