API Kit Reference
getSafesByOwner

getSafesByOwner

Returns the list of Safes where the address provided is an owner.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const ownerAddress = '0x...'
_10
_10
const decodedData = await apiKit.getSafesByOwner(ownerAddress)

Returns

Promise<OwnerResponse>

The list of Safes where the address provided is an owner.

Parameters

ownerAddress

  • Type: string

The owner address.


_10
const decodedData = await apiKit.getSafesByOwner(
_10
'0x...'
_10
)

Was this page helpful?