import { ChainError, FeeProperties, FeePropertiesDto } from "@gala-chain/api"; import { GalaChainContext } from "../types"; /** * features like Fees are anticipated to *only* support $GALA as the currency of choice. * Current plans are for all fees to be paid in $GALA. * This hardcoded id here gives us something to use as a ChainKey for the properties * while keeping it effectively immutable * from outside assets-chaincode calls without a code change. */ export declare const galaFeePropertiesIdentifier = "galachain"; export declare function fetchGalaFeeProperties(ctx: GalaChainContext): Promise; export declare function setGalaFeeProperties(ctx: GalaChainContext, dto: FeePropertiesDto): Promise; //# sourceMappingURL=galaFeeProperties.d.ts.map