PendingTransaction | null - PendingTransaction object or null if not found.
PendingTransaction
type PendingTransaction = {
transaction: {
source: Address; // Address of the sender
destination: Address; // Address of the receiver
amount: Number; // Amount sent
fee: Number; // Fee sent
parent: {
hash: String<Hash>; // Hash of the parent transaction
ordinal: Number; // Ordinal of the parent transaction
};
salt: BigNumber | String; // Salt
};
hash: String<Hash>; // Hash of the transaction
status: String; // Status of the transaction. Currently there is only one status: "Waiting"
};