UNPKG

toncenter-v3-api

Version:

Complete TypeScript/JavaScript library for TON Center v3 API with ALL methods support

26 lines (22 loc) 707 B
// TON Center v3 API - Accounts Methods export { getAccountStates } from "./getAccountStates"; export { getAddressBook } from "./getAddressBook"; export { getMetadata } from "./getMetadata"; export { getWalletStates } from "./getWalletStates"; // Re-export constants and types for convenience export { BASE_URLS, DEFAULT_CHAIN } from "../const"; export type { Chain, APIOptions } from "../const"; // Re-export account-related types for convenience export type { AccountStateFull, AccountStatesResponse, WalletState, WalletStatesResponse, GetAccountStatesParams, GetAddressBookParams, GetMetadataParams, GetWalletStatesParams, AddressBook, Metadata, RequestError, } from "../types";