You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On-chain transaction hash. Absent while the transaction is pending.
[optional]
staking_operation
str
Staking operation type. One of APPROVE, STAKE, UNSTAKE, WITHDRAW, CLAIM_REWARDS, SPLIT, CONSOLIDATE, MERGE, TRANSFER, AUTHORIZE, ADD_TO_STAKE. Absent on legacy persisted rows.
[optional]
timestamp
datetime
ISO timestamp when the transaction was initiated (send time).
status
str
Transaction outcome.
amount
str
Portion of position amount this transaction moved (native units). Absent on legacy rows.
[optional]
tx_note
str
User-provided note from the transfer request. Omitted when not set.
[optional]
Example
fromfireblocks.models.position_related_transactionimportPositionRelatedTransaction# TODO update the JSON string belowjson="{}"# create an instance of PositionRelatedTransaction from a JSON stringposition_related_transaction_instance=PositionRelatedTransaction.from_json(json)
# print the JSON string representation of the objectprint(PositionRelatedTransaction.to_json())
# convert the object into a dictposition_related_transaction_dict=position_related_transaction_instance.to_dict()
# create an instance of PositionRelatedTransaction from a dictposition_related_transaction_from_dict=PositionRelatedTransaction.from_dict(position_related_transaction_dict)