UNPKG

@avalabs/avalanchejs

Version:
15 lines 977 B
import { SignedTx } from '../../serializable/avax'; import type { GetAddressTxsParams, GetAddressTxsResponse } from '../avm/models'; import type { GetBalanceParams, GetBalanceResponse } from '../pvm'; import type { GetTxServerResponse } from '../pvm/privateModels'; import type { GetAssetDescriptionResponse, GetTxParams, GetTxStatusParams, GetTxStatusResponse } from './apiModels'; import { ChainApi } from './chainAPI'; export declare class AvaxApi extends ChainApi { getAssetDescription(assetID: string): Promise<GetAssetDescriptionResponse>; getTx: (getTxParams: GetTxParams) => Promise<SignedTx>; getTxJson: (getTxParams: GetTxParams) => Promise<GetTxServerResponse>; getTxStatus(getTxStatus: GetTxStatusParams): Promise<GetTxStatusResponse>; getBalance(getBalanceParams: GetBalanceParams): Promise<GetBalanceResponse>; getAddressTxs(GetAddressTxsParams: GetAddressTxsParams): Promise<GetAddressTxsResponse>; } //# sourceMappingURL=avaxApi.d.ts.map