confirmSafeOperation
If the number of signatures collected in the Safe Transaction Service for a given Safe operation hash hasn't met the threshold, it will add the signature from the connected signer.
If the number of collected signatures reaches the threshold, the Safe operation will be submitted instantly.
Usage
_10import { safeOperationsClient } from './setup.ts'_10_10const safeOperationResult = await safeOperationsClient.confirmSafeOperation({_10 safeOperationHash: '0x...'_10})
Returns
Promise<SafeClientResult>
The result of the confirmed Safe operation.
Parameters
safeOperationHash
- Type:
string
The Safe transaction hash to sign.
_10const txResult = await safeOperationsClient.confirm({_10 safeTxHash: '0x...'_10})