getTransaction
Returns all the information of a Safe transaction.
Usage
_10import { apiKit } from './setup.ts'_10_10const safeTxHash = '0x...'_10_10const tx = await apiKit.getTransaction(safeTxHash)
Returns
Promise<SafeMultisigTransactionResponse>
The information of a Safe transaction.
Parameters
safeTxHash
- Type:
string
The hash of the Safe transaction.
_10const tx = await apiKit.getTransaction(_10 '0x...'_10)