Skip to main content

DelayTransaction

id string

Unique identifier for the delayed transaction.

Example: clp3j1f9a0000a1cdh6ezx2qv
safeAddress string

The Safe contract address associated with the transaction.

Example: 0x1234567890abcdef1234567890abcdef12345678
transactionData string

Data payload of the transaction.

Example: 0xabcdef
enqueueTaskId string

Identifier of the task that enqueued this transaction.

Example: task_abc123
dispatchTaskId stringnullable

Identifier of the task responsible for dispatching this transaction.

Example: task_def456
readyAt date-timenullable

Timestamp indicating when the transaction is ready for processing.

Example: 2025-02-07T12:34:56Z
operationType string

Type of operation being performed.

Possible values: [CALL, DELEGATECALL]

Example: CALL
userId string

Identifier of the user associated with the transaction.

Example: user_123
status string

Current status of the transaction.

Possible values: [QUEUING, WAITING, EXECUTING, EXECUTED, FAILED]

Example: QUEUING
createdAt date-time

Timestamp of when the transaction was created.

Example: 2025-02-07T12:34:56Z
DelayTransaction
{
"id": "clp3j1f9a0000a1cdh6ezx2qv",
"safeAddress": "0x1234567890abcdef1234567890abcdef12345678",
"transactionData": "0xabcdef",
"enqueueTaskId": "task_abc123",
"dispatchTaskId": "task_def456",
"readyAt": "2025-02-07T12:34:56Z",
"operationType": "CALL",
"userId": "user_123",
"status": "QUEUING",
"createdAt": "2025-02-07T12:34:56Z"
}