From 52c7dc42d513d9436dfd70b395edfb4089eaea5d Mon Sep 17 00:00:00 2001 From: Hugo Caillard <911307+hugocaillard@users.noreply.github.com> Date: Mon, 29 Jan 2024 11:07:57 +0100 Subject: [PATCH] fix: add new epochs in js sdk types --- components/clarinet-sdk/src/contractInterface.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/clarinet-sdk/src/contractInterface.ts b/components/clarinet-sdk/src/contractInterface.ts index 449ce7f88..9172d5b09 100644 --- a/components/clarinet-sdk/src/contractInterface.ts +++ b/components/clarinet-sdk/src/contractInterface.ts @@ -53,7 +53,9 @@ export type StacksEpochId = | "Epoch21" | "Epoch22" | "Epoch23" - | "Epoch24"; + | "Epoch24" + | "Epoch25" + | "Epoch30"; export type ClarityVersion = "Clarity1" | "Clarity2";