v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Account Management

Change Onchain Daily Limit with Signature

This endpoint is deprecated and will be removed in a future version. Please use PUT /api/v1/accounts/daily-limit instead.

Sets a new onchain daily spending limit for the authenticated user's Safe account. This endpoint requires a valid signature from the user's wallet to authorize the change.

The signature should be generated by signing the transaction data obtained from the /api/v1/accounts/onchain-daily-limit/transaction-data endpoint.

The limit update is processed through a delay relay mechanism that executes after 3 minutes.

Note: The onchainDailyLimit must be an integer value between 1 and 8000.

put/api/v1/accounts/onchain-daily-limit

Request body

onchainDailyLimitinteger required

The new daily spending limit to set (must be an integer).

signaturestring required

The wallet signature authorizing this limit change.

Example request

{
  "onchainDailyLimit": 2500,
  "signature": "0x1234567890abcdef..."
}

Response

Successfully submitted the daily limit update request.

Example response

{
  "data": {
    "requestedOnchainDailyLimit": 2500
  }
}