UNPKG

@arbius/aa-wallet

Version:

A secure and flexible Account Abstraction wallet implementation for Arbitrum One chain applications.

16 lines (15 loc) 420 B
import { Transaction } from '../types'; interface UseTransactionsResult { transactions: Transaction[]; pending: Transaction[]; completed: Transaction[]; failed: Transaction[]; isPending: boolean; hasFailed: boolean; } /** * Hook to access and filter transactions * @returns Filtered transactions and status flags */ export declare function useTransactions(): UseTransactionsResult; export {};