import { QueryTFTPrice } from "@threefold/tfchain_client"; class TFTPrice extends QueryTFTPrice { async get(): Promise { const priceInMili = await super.get(); return priceInMili / 1000; } } export { TFTPrice };