Protocol Kit Reference
Safe Configuration
isOwner

isOwner

Checks if a given address is an owner of the connected Safe.

Usage


_10
import { protocolKit } from './setup.ts'
_10
_10
const address = '0x...'
_10
_10
const isOwner = await protocolKit.isOwner(address)

Parameters

address

  • Type: string

The address to check.


_10
const isOwner = await protocolKit.isOwner(
_10
'0x...'
_10
)

Returns

Promise<string>

The boolean value that indicates if the address is an owner of the Safe.

Was this page helpful?