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
const options = {
_10
_from: '0x...',
_10
limit: 10,
_10
offset: 10
_10
}
_10
_10
const incomingTxs = await apiKit.getIncomingTransactions(safeAddress, options)

Returns

Promise<TransferListResponse>

The history of incoming transactions.

Parameters

safeAddress

  • Type: string

The Safe address.


_10
const 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.

Was this page helpful?