import GasPriceDto from './GasPriceDto';
export default class MaticTransactionPreparationDto {
    gasPrices: GasPriceDto[];
    gasLimit: number;
    reverted: boolean;
}
