diff --git a/src/agent/index.ts b/src/agent/index.ts index b06947e..b6fa57d 100644 --- a/src/agent/index.ts +++ b/src/agent/index.ts @@ -25,16 +25,17 @@ import { stakeWithJup, sendCompressedAirdrop, createOrcaSingleSidedWhirlpool, - FEE_TIERS + FEE_TIERS, + getAllDomainsTLDs, + getAllRegisteredAllDomains, + getOwnedDomainsForTLD, + getMainAllDomainsDomain, + getOwnedAllDomains, + resolveAllDomains, } from "../tools"; import { CollectionOptions, PumpFunTokenOptions } from "../types"; import { BN } from "@coral-xyz/anchor"; -import { getAllDomainsTLDs } from "../tools/get_all_active_tlds"; -import { getAllRegisteredAllDomains } from "../tools/get_all_registered_all_domains"; -import { getOwnedDomainsForTLD } from "../tools/get_domains_on_tld"; -import { getMainAllDomainsDomain } from "../tools/get_main_domain"; -import { getOwnedAllDomains } from "../tools/lookup_owner"; -import { resolveAllDomains } from "../tools/resolve_domain"; +import Decimal from "decimal.js"; /** * Main class for interacting with Solana blockchain diff --git a/src/tools/index.ts b/src/tools/index.ts index 303cde2..ef12932 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -16,7 +16,13 @@ export * from "./stake_with_jup"; export * from "./fetch_price"; export * from "./send_compressed_airdrop"; -export * from "./create_orca_single_sided_whirlpool";export * from "./raydium_create_ammV4"; +export * from "./create_orca_single_sided_whirlpool"; +export * from "../tools/get_all_active_tlds"; +export * from "../tools/get_all_registered_all_domains"; +export * from "../tools/get_domains_on_tld"; +export * from "../tools/get_main_domain"; +export * from "../tools/lookup_owner"; +export * from "../tools/resolve_domain";export * from "./raydium_create_ammV4"; export * from "./raydium_create_clmm"; export * from "./raydium_create_cpmm"; export * from "./openbook_create_market"; \ No newline at end of file