@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
12 lines • 475 B
TypeScript
export interface CalculateFeeLimitType {
gasLimit: string;
gasPrice: string;
data: string;
gasPerDataByte: string;
gasPriceModifier: string;
chainId: string;
minGasLimit?: string;
defaultGasPrice?: string;
}
export declare function calculateFeeLimit({ minGasLimit, gasLimit, gasPrice, data: inputData, gasPerDataByte, gasPriceModifier, defaultGasPrice, chainId }: CalculateFeeLimitType): string;
//# sourceMappingURL=calculateFeeLimit.d.ts.map