@martiandao/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
18 lines • 463 B
TypeScript
/**
* Struct holding the outputs of the estimate gas API
*/
export declare type GasEstimation = {
/**
* The deprioritized estimate for the gas unit price
*/
deprioritized_gas_estimate?: number;
/**
* The current estimate for the gas unit price
*/
gas_estimate: number;
/**
* The prioritized estimate for the gas unit price
*/
prioritized_gas_estimate?: number;
};
//# sourceMappingURL=GasEstimation.d.ts.map