@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
9 lines • 502 B
TypeScript
import { AvaxApi } from '../common/avaxApi';
import type { BuildGenesisParams, BuildGenesisResponse, GetAllBalancesParams, GetAllBalancesResponse, TxFee } from './models';
export declare class AVMApi extends AvaxApi {
constructor(baseURL?: string);
buildGenesis: (params: BuildGenesisParams) => Promise<BuildGenesisResponse>;
getAllBalances(getAllBalancesParams: GetAllBalancesParams): Promise<GetAllBalancesResponse>;
getTxFee: () => Promise<TxFee>;
}
//# sourceMappingURL=api.d.ts.map