UNPKG

@sofaws/dapp-core

Version:

A library to hold the main logic for a dapp on the Elrond Network

8 lines 434 B
import { SignedTransactionsType, SignedTransactionsBodyType } from 'types'; export interface UseGetPendingTransactionsReturnType { pendingTransactions: SignedTransactionsType; pendingTransactionsArray: [string, SignedTransactionsBodyType][]; hasPendingTransactions: boolean; } export declare function useGetPendingTransactions(): UseGetPendingTransactionsReturnType; //# sourceMappingURL=useGetPendingTransactions.d.ts.map