getSafeInfo
Returns the information and configuration of the provided Safe address.
Usage
_10import { apiKit } from './setup.ts'_10_10const safeAddress = '0x...'_10_10const safeInfo = await apiKit.getSafeInfo(safeAddress)
Returns
Promise<SafeInfoResponse>
The information and configuration of the provided Safe address.
Parameters
safeAddress
- Type:
string
The Safe address.
_10const safeInfo = await apiKit.getSafeInfo(_10 '0x...'_10)