Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.29 KB

File metadata and controls

44 lines (28 loc) · 1.29 KB

ActionRecord

One row in the lending action execution sequence.

Properties

Name Type Description Notes
actionType ActionTypeEnum Kind of step in the lending sequence.
status StatusEnum Step lifecycle status.
txId String Fireblocks transaction id when applicable (unset when NOT_STARTED). [optional]
txHash String On-chain transaction hash when applicable (unset when NOT_STARTED). [optional]
errorMessage String Error detail when the step failed. [optional]
updatedAt String Last update time (ISO-8601); may be empty when status is NOT_STARTED.

Enum: ActionTypeEnum

Name Value
APPROVE "APPROVE"
DEPOSIT "DEPOSIT"
WITHDRAW "WITHDRAW"

Enum: StatusEnum

Name Value
NOT_STARTED "NOT_STARTED"
PROCESSING "PROCESSING"
PENDING_SIGNATURE "PENDING_SIGNATURE"
BROADCASTING "BROADCASTING"
CONFIRMING "CONFIRMING"
COMPLETED "COMPLETED"
FAILED "FAILED"
CANCELED "CANCELED"