getOwnersWhoApprovedTransaction
Returns the list of owners who signed a given Safe transaction.
Usage
_10import { safeClient } from './setup.ts'_10_10const safeTxHash = '0x...'_10_10const owners = safeClient.getOwnersWhoApprovedTransaction(safeTxHash)
Returns
Promise<string[]>
The list of owners who signed a given Safe transaction hash.
Parameters
safeTxHash
- Type:
string
The Safe transaction hash to check.
_10const owners = safeClient.getOwnersWhoApprovedTransaction(_10 '0x...'_10)