Starter Kit Reference
SafeClient
getOwnersWhoApprovedTransaction

getOwnersWhoApprovedTransaction

Returns the list of owners who signed a given Safe transaction.

Usage


_10
import { safeClient } from './setup.ts'
_10
_10
const safeTxHash = '0x...'
_10
_10
const 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.


_10
const owners = safeClient.getOwnersWhoApprovedTransaction(
_10
'0x...'
_10
)

Was this page helpful?