IBExWalletAPI
Blockchain Operations

Multisig Operations

Manage Safe wallet owners and threshold for multisig configuration.

Manage the multisig configuration of a Safe wallet: add or remove owners, and change the signature threshold.

All multisig operations use the two-step POST /v1.2/safes/operations → PUT /v1.2/safes/operations flow.

Add Owner

Add a new owner (signer) to the Safe and optionally update the threshold.

{
  "type": "ADD_OWNER",
  "owner": "0xNewOwnerAddress",
  "threshold": 2
}
FieldTypeRequiredDescription
typestringYesMust be "ADD_OWNER"
ownerstringYesAddress of the new owner to add
thresholdnumberYesNew signature threshold (minimum 1)

Remove Owner

{
  "type": "REMOVE_OWNER",
  "owner": "0xOwnerToRemove",
  "threshold": 1
}
FieldTypeRequiredDescription
typestringYesMust be "REMOVE_OWNER"
ownerstringYesAddress of the owner to remove
thresholdnumberYesNew signature threshold after removal

Change Threshold

{
  "type": "CHANGE_THRESHOLD",
  "threshold": 2
}
FieldTypeRequiredDescription
typestringYesMust be "CHANGE_THRESHOLD"
thresholdnumberYesNew signature threshold (minimum 1)

On this page