isOwner
Checks if a given address is an owner of the connected Safe.
Usage
_10import { safeClient } from './setup.ts'_10_10const address = '0x...'_10_10const isOwner = await safeClient.isOwner(address)
Returns
Promise<boolean>
The boolean value that indicates if the given address is an owner of the connected Safe.
Parameters
address
- Type:
string
The address to check if it is an owner of the Safe.
_10const isOwner = await safeClient.isOwner(_10 '0x...'_10)