getMultisigTransactions
Returns the history of multi-signature transactions of a Safe account.
Usage
_12import { apiKit } from './setup.ts'_12_12const safeAddress = '0x...'_12const options = {_12 executed: true,_12 nonce: '0x...',_12 ordering: 'created',_12 limit: 10,_12 offset: 10_12}_12_12const multisigTxs = await apiKit.getMultisigTransactions(safeAddress, options)
Returns
Promise<SafeMultisigTransactionListResponse>
The history of multi-signature transactions.
Parameters
safeAddress
- Type:
string
The Safe address.
_10const multisigTxs = await apiKit.getMultisigTransactions(_10 '0x...'_10)
options.executed
(Optional)
- Type:
boolean
Filter the executed transactions if true
.
options.nonce
(Optional)
- Type:
string
The nonce used to return the results.
options.ordering
(Optional)
- Type:
string
The field used to sort the results.
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.