toncenter-v3-api
Version:
Complete TypeScript/JavaScript library for TON Center v3 API with ALL methods support
20 lines (16 loc) • 542 B
text/typescript
// TON Center v3 API - Multisig Methods
export { getMultisigOrders } from "./getMultisigOrders";
export { getMultisigWallets } from "./getMultisigWallets";
// Re-export constants and types for convenience
export { BASE_URLS, DEFAULT_CHAIN } from "../const";
export type { Chain, APIOptions } from "../const";
// Re-export multisig-related types for convenience
export type {
MultisigOrder,
Multisig,
MultisigOrderResponse,
MultisigResponse,
GetMultisigOrdersParams,
GetMultisigWalletsParams,
RequestError,
} from "../types";