From a9fd9cda53e0da622839eb04a459807c28b78aa9 Mon Sep 17 00:00:00 2001 From: austinabell Date: Fri, 3 Jun 2022 13:29:56 -0400 Subject: [PATCH] chore: remove unused SDK utility --- src/utils.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/utils.js b/src/utils.js index 79a336afb..fa6ead21a 100644 --- a/src/utils.js +++ b/src/utils.js @@ -13,7 +13,3 @@ export function stringToU8Array(string) { } return ret } - -export function encodeCall(contract, method, args) { - return Buffer.concat([Buffer.from(contract), Buffer.from([0]), Buffer.from(method), Buffer.from([0]), Buffer.from(JSON.stringify(args))]) -} \ No newline at end of file