getSafeCreationInfo
Returns the creation information of a Safe.
Usage
_10import { apiKit } from './setup.ts'_10_10const safeAddress = '0x...'_10_10const safeCreationInfo = await apiKit.getSafeCreationInfo(_10 safeAddress_10)
Returns
Promise<SafeCreationInfoResponse>
The creation information of a Safe account.
Parameters
safeAddress
- Type:
string
The Safe address.
_10const safeCreationInfo = await apiKit.getSafeCreationInfo(_10 '0x...'_10)