API Kit Reference
getTransaction

getTransaction

Returns all the information of a Safe transaction.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const safeTxHash = '0x...'
_10
_10
const tx = await apiKit.getTransaction(safeTxHash)

Returns

Promise<SafeMultisigTransactionResponse>

The information of a Safe transaction.

Parameters

safeTxHash

  • Type: string

The hash of the Safe transaction.


_10
const tx = await apiKit.getTransaction(
_10
'0x...'
_10
)

Was this page helpful?