API Kit Reference
getSafeCreationInfo

getSafeCreationInfo

Returns the creation information of a Safe.

Usage


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

Returns

Promise<SafeCreationInfoResponse>

The creation information of a Safe account.

Parameters

safeAddress

  • Type: string

The Safe address.


_10
const safeCreationInfo = await apiKit.getSafeCreationInfo(
_10
'0x...'
_10
)

Was this page helpful?