API Kit Reference
getSafeInfo

getSafeInfo

Returns the information and configuration of the provided Safe address.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const safeAddress = '0x...'
_10
_10
const safeInfo = await apiKit.getSafeInfo(safeAddress)

Returns

Promise<SafeInfoResponse>

The information and configuration of the provided Safe address.

Parameters

safeAddress

  • Type: string

The Safe address.


_10
const safeInfo = await apiKit.getSafeInfo(
_10
'0x...'
_10
)

Was this page helpful?