aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/deploy/src/utils/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/deploy/src/utils/utils.ts')
-rw-r--r--packages/contracts/deploy/src/utils/utils.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/packages/contracts/deploy/src/utils/utils.ts b/packages/contracts/deploy/src/utils/utils.ts
deleted file mode 100644
index 4390d8813..000000000
--- a/packages/contracts/deploy/src/utils/utils.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-export const utils = {
- consoleLog(message: string): void {
- /* tslint:disable */
- console.log(message);
- /* tslint:enable */
- },
- stringifyWithFormatting(obj: any): string {
- const jsonReplacer: null = null;
- const numberOfJsonSpaces = 4;
- const stringifiedObj = JSON.stringify(obj, jsonReplacer, numberOfJsonSpaces);
- return stringifiedObj;
- },
-};