RIF Multisig SDK - rejecting
Required packages:
Transaction rejection implies the creation and execution of a new transaction with the same nonce
of the one we want to reject.
Once the rejection transaction is created, it must be approved and executed according to the threshold currently set to the safe.
For instance, if the current threshold is set to 2, rejecting a transaction will require:
- The creation of a rejection transaction
- The approval of the rejection transaction by at least 2 owners
- The execution of the rejection transaction.
As long as the rejection transaction isn't executed, the initial transaction could still be approved and executed by other owners.
Rejection transaction creation
It creates a new transaction, rejectionTx
, that must be approved and executed in order to invalidate the original one.
Parameters:
safe: Safe
- the safe previously createdtransaction: SafeTransaction
- the transaction to be rejected.
{:.snippet__parameters.snippet__parameters--lightgreen.border-bottom-0}
import { rejectTx } from '@rsksmart/safe-transactions-sdk'
const rejectionTx = await rejectTx(safe, transaction)
{:.snippet__code.snippet__code--lightgreen.border-top-0}
IMPORTANT: With the previously mentioned method, we are creating the rejection transaction, but we are not executing it. The rejection is successful only once it's signed (according to the safe threshold) and executed. Please refer to transaction execution for further instructions.
{:.mt-3}