From 642917922a5d5278e8c575a2b4ffd60fff53cf42 Mon Sep 17 00:00:00 2001 From: Miljan Milidrag Date: Wed, 20 Apr 2022 15:01:33 +0200 Subject: [PATCH] fix(utils): adding transaction utils to the utils export --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 7e18b6d45..bbec6f067 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,6 +15,7 @@ export * as encode from './utils/encode'; export * as hash from './utils/hash'; export * as json from './utils/json'; export * as number from './utils/number'; +export * as transaction from './utils/transaction'; export * as stark from './utils/stark'; export * as ec from './utils/ellipticCurve'; export * as uint256 from './utils/uint256';