API Kit Reference
getPendingTransactions

getPendingTransactions

Returns the list of multi-signature transactions that are waiting for the confirmation of the Safe owners.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const safeAddress = '0x...'
_10
_10
const currentNonce = 10
_10
_10
const 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.


_10
const pendingTxs = await apiKit.getPendingTransactions(
_10
'0x...'
_10
)

currentNonce (Optional)

  • Type: number

The current nonce of the Safe.


_10
const pendingTxs = await apiKit.getPendingTransactions(
_10
'0x...',
_10
10
_10
)

Was this page helpful?