API Kit Reference
getModuleTransactions

getModuleTransactions

Returns the history of module transactions of a Safe account.

Usage


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

Returns

Promise<SafeModuleTransactionListResponse>

The history of Safe transactions triggered by a module.

Parameters

safeAddress

  • Type: string

The Safe address.


_10
const moduleTxs = await apiKit.getModuleTransactions(
_10
'0x...'
_10
)

Was this page helpful?