API Kit Reference
getSafeOperation

getSafeOperation

Returns a Safe operation by its hash.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const safeOperationHash = '0x...'
_10
_10
const safeOperation = await apiKit.getSafeOperation(safeOperationHash)

Returns

Promise<SafeOperationResponse>

The Safe operation.

Parameters

safeOperationHash

  • Type: string

The Safe operation hash.


_10
const safeOperation = await apiKit.getSafeOperation(
_10
'0x...'
_10
)

Was this page helpful?