From 4695e1548881213912d80d50a306b03ec96ea0b9 Mon Sep 17 00:00:00 2001 From: quangkeu95 Date: Sat, 21 Dec 2024 23:54:28 +0700 Subject: [PATCH] chore: Update imports --- test/tools.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/tools.ts b/test/tools.ts index e154a0d..be518fb 100644 --- a/test/tools.ts +++ b/test/tools.ts @@ -1,7 +1,5 @@ import * as dotenv from "dotenv"; -import { test_deploy_token } from "./deployToken"; -import { test_deploy_collection } from "./deployCollection"; -import { test_mint_nft } from "./mintNft"; +import { test_create_meteora_dynamic_amm_pool } from "./create_meteora_dynamic_amm_pool"; dotenv.config(); @@ -10,9 +8,7 @@ async function main() { console.log("Starting Agent..."); // Test Tools - await test_deploy_token(); - await test_deploy_collection(); - await test_mint_nft(); + await test_create_meteora_dynamic_amm_pool(); } catch (error) { if (error instanceof Error) { console.error("Error:", error.message);