@martiandao/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
19 lines • 617 B
TypeScript
import type { Address } from './Address';
import type { HashValue } from './HashValue';
import type { TransactionPayload } from './TransactionPayload';
import type { TransactionSignature } from './TransactionSignature';
import type { U64 } from './U64';
/**
* A transaction waiting in mempool
*/
export declare type PendingTransaction = {
hash: HashValue;
sender: Address;
sequence_number: U64;
max_gas_amount: U64;
gas_unit_price: U64;
expiration_timestamp_secs: U64;
payload: TransactionPayload;
signature?: TransactionSignature;
};
//# sourceMappingURL=PendingTransaction.d.ts.map