API Kit Reference
getIncomingTransactions

getIncomingTransactions

Returns the history of incoming transactions of a Safe account.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const safeAddress = '0x...'
_10
_10
const incomingTxs = await apiKit.getIncomingTransactions(safeAddress)

Returns

Promise<TransferListResponse>

The history of incoming transactions.

Parameters

safeAddress

  • Type: string

The Safe address.


_10
const incomingTxs = await apiKit.getIncomingTransactions(
_10
'0x...'
_10
)

Was this page helpful?