diff --git a/package.json b/package.json index c79f765..02459e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tari-project/tarijs", - "version": "0.1.23", + "version": "0.1.24", "description": "", "type": "module", "publishConfig": { diff --git a/src/index.ts b/src/index.ts index 60a96b9..381e09f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,7 +27,7 @@ import { fromWorkspace, toWorkspace, } from "./builders"; -import { TariswapTemplate, AccountTemplate, PoolTemplate, TestFaucet } from "./templates"; +import * as templates from "./templates"; export * from "./builders/types"; export { @@ -53,14 +53,11 @@ export { permissions, WalletConnectTariProvider, TransactionBuilder, - AccountTemplate, - TariswapTemplate, - PoolTemplate, - TestFaucet, TransactionRequest, buildTransactionRequest, submitAndWaitForTransaction, waitForTransactionResult, fromWorkspace, toWorkspace, + templates, }; diff --git a/src/templates/index.ts b/src/templates/index.ts index 73a3415..b441bc7 100644 --- a/src/templates/index.ts +++ b/src/templates/index.ts @@ -1,3 +1,4 @@ +export { TemplateFactory } from "./TemplateFactory"; export { AccountTemplate } from "./Account"; export { TariswapTemplate } from "./Tariswap"; export { PoolTemplate } from "./Pool";