From 056f7ef021a6390ee3f252b223aaa77501ace398 Mon Sep 17 00:00:00 2001 From: Bobby Lat Date: Mon, 23 Dec 2024 11:01:13 +0800 Subject: [PATCH] feat: export ptypeToArc4EncodedType function needed for stub implementation of encodeArc4, decodeArc4 functions --- src/awst_build/ptypes/for-export.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/awst_build/ptypes/for-export.ts b/src/awst_build/ptypes/for-export.ts index 6093c0b1..61966dae 100644 --- a/src/awst_build/ptypes/for-export.ts +++ b/src/awst_build/ptypes/for-export.ts @@ -1,3 +1,4 @@ /* This file aggregates all ptypes into a single export for external consumption of the compiler api */ -export * from './index' +export { ptypeToArc4EncodedType } from '../arc4-util' export * from './arc4-types' +export * from './index'