import { GasPriceCoefDto } from './GasPriceCoefDto';
export default class VeChainTransactionPreparationDto {
    gasPriceCoefficients: GasPriceCoefDto[];
    gasLimit: number;
    reverted: boolean;
}
