Starter Kit Reference
SafeClient
isOwner

isOwner

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

Usage


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


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

Was this page helpful?