getIncomingTransactions
Returns the history of incoming transactions of a Safe account.
Usage
_10import { apiKit } from './setup.ts'_10_10const safeAddress = '0x...'_10const options = {_10 _from: '0x...',_10 limit: 10,_10 offset: 10_10}_10_10const incomingTxs = await apiKit.getIncomingTransactions(safeAddress, options)
Returns
Promise<TransferListResponse>
The history of incoming transactions.
Parameters
safeAddress
- Type:
string
The Safe address.
_10const incomingTxs = await apiKit.getIncomingTransactions(_10 '0x...'_10)
options.from
(Optional)
- Type:
string
The transaction sender address.
options.limit
(Optional)
- Type:
number
The number of results to return per page.
options.offset
(Optional)
- Type:
number
The initial index from which to return the results.