getPendingTransactions
Returns the list of multi-signature transactions that are waiting for the confirmation of the Safe owners.
Usage
_10import { apiKit } from './setup.ts'_10_10const safeAddress = '0x...'_10_10const currentNonce = 10_10_10const pendingTxs = await apiKit.getPendingTransactions(_10 safeAddress,_10 currentNonce // Optional_10)
Returns
Promise<SafeMultisigTransactionListResponse>
The list of transactions waiting for the confirmation of the Safe owners.
Parameters
safeAddress
- Type:
string
The Safe address.
_10const pendingTxs = await apiKit.getPendingTransactions(_10 '0x...'_10)
currentNonce
(Optional)
- Type:
number
The current nonce of the Safe.
_10const pendingTxs = await apiKit.getPendingTransactions(_10 '0x...',_10 10_10)