import { Tabs } from 'nextra/components'
Returns the history of multi-signature transactions of a Safe account.
{/* */}
<Tabs items={['example.ts', 'setup.ts']}> <Tabs.Tab> ```typescript import { apiKit } from './setup.ts'
const safeAddress = '0x...'
const options = {
executed: true,
nonce: '0x...',
ordering: 'created',
limit: 10,
offset: 10
}
const multisigTxs = await apiKit.getMultisigTransactions(safeAddress, options)
```
</Tabs.Tab> <Tabs.Tab> ```typescript import SafeApiKit from '@safe-global/api-kit'
export const apiKit = new SafeApiKit({
chainId: 1n, // Mainnet
})
```
</Tabs.Tab>
{/* */}
Promise<SafeMultisigTransactionListResponse>
The history of multi-signature transactions.
- Type:
string
The Safe address.
const multisigTxs = await apiKit.getMultisigTransactions(
'0x...'
)
- Type:
boolean
Filter the executed transactions if true
.
- Type:
string
The nonce used to return the results.
- Type:
string
The field used to sort the results.
- Type:
number
The number of results to return per page.
- Type:
number
The initial index from which to return the results.