API Kit Reference
confirmTransaction

confirmTransaction

Adds a confirmation for a Safe transaction.

Usage


_10
import { apiKit } from './setup.ts'
_10
_10
const safeTxHash = '0x...'
_10
_10
const signature = '0x...'
_10
_10
const signature = await apiKit.confirmTransaction(safeTxHash, signature)

Returns

Promise<SignatureResponse>

The signature.

Parameters

safeTxHash

  • Type: string

The hash of the Safe transaction that will be confirmed.


_10
const signature = await apiKit.confirmTransaction(
_10
'0x...',
_10
'0x...'
_10
)

signature

  • Type: string

The signature of the transaction.


_10
const signature = await apiKit.confirmTransaction(
_10
'0x...',
_10
'0x...'
_10
)

Was this page helpful?