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