updated imports for methods

This commit is contained in:
adpthegreat
2024-12-20 21:12:33 +01:00
parent c21d340fb8
commit 8d96ca0ecc
2 changed files with 15 additions and 8 deletions

View File

@@ -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

View File

@@ -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";