From 72ec81e2a309bb8217bea00b8350f468318cc8be Mon Sep 17 00:00:00 2001 From: Tyler van der Hoeven Date: Thu, 6 Jun 2024 12:01:29 -0400 Subject: [PATCH 1/2] Export DEFAULT_TIMEOUT --- src/contract/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/contract/index.ts b/src/contract/index.ts index 8b9e1dc5e..61a3b2941 100644 --- a/src/contract/index.ts +++ b/src/contract/index.ts @@ -5,3 +5,4 @@ export * from "./rust_result"; export * from "./sent_transaction"; export * from "./spec"; export * from "./types"; +export { DEFAULT_TIMEOUT } from "./utils.ts"; From 68845790d93874cb631b5fe7a545c09f227f8dd5 Mon Sep 17 00:00:00 2001 From: Tyler van der Hoeven Date: Thu, 6 Jun 2024 12:02:13 -0400 Subject: [PATCH 2/2] no .ts suffix needed --- src/contract/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contract/index.ts b/src/contract/index.ts index 61a3b2941..657bde8cf 100644 --- a/src/contract/index.ts +++ b/src/contract/index.ts @@ -5,4 +5,4 @@ export * from "./rust_result"; export * from "./sent_transaction"; export * from "./spec"; export * from "./types"; -export { DEFAULT_TIMEOUT } from "./utils.ts"; +export { DEFAULT_TIMEOUT } from "./utils";