@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
7 lines • 328 B
TypeScript
import { SignedTransactionType } from 'types';
export interface PendingTransactionType {
hash: string;
previousStatus: string;
}
export declare function getPendingTransactions(transactions: SignedTransactionType[], timedOutHashes: string[]): PendingTransactionType[];
//# sourceMappingURL=getPendingTransactions.d.ts.map