import { Avalanche } from "avalanche/dist" import { InfoAPI } from "avalanche/dist/apis/info" import { GetTxFeeResponse } from "avalanche/dist/apis/info/interfaces" const ip: string = "localhost" const port: number = 9650 const protocol: string = "http" const networkID: number = 1337 const avalanche: Avalanche = new Avalanche(ip, port, protocol, networkID) const info: InfoAPI = avalanche.Info() const main = async (): Promise => { const iGetTxFeeResponse: GetTxFeeResponse = await info.getTxFee() console.log(iGetTxFeeResponse) } main()