Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 2.96 KB

File metadata and controls

29 lines (17 loc) · 2.96 KB

AddressTransferDestination

The information about the transaction destination type Address. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type. You need to specify either the account_output property or the utxo_outputs property. You can transfer tokens to multiple addresses only if you use MPC Wallets as the transaction source. To do this, you should use the utxo_outputs property to specify the destination addresses. Switch between the tabs to display the properties for different transaction destinations.

Properties

Name Type Description Notes
destinationType TransferDestinationType
accountOutput AddressTransferDestinationAccountOutput [optional]
utxoOutputs List<AddressTransferDestinationUtxoOutputsInner> [optional]
changeAddress String The address used to receive the remaining funds or change from the transaction. [optional]
changeOutputType ChangeOutputTypeEnum The position of the change output in the transaction's outputs. Possible values are: - `Last`: The change output is placed at the end of the transaction's outputs. - `First`: The change output is placed at the beginning of the transaction's outputs. [optional]
forceInternal Boolean Whether the transaction request must be executed as a Cobo Loop transfer. - `true`: The transaction request must be executed as a Cobo Loop transfer. - `false`: The transaction request may not be executed as a Cobo Loop transfer. Please do not set both `force_internal` and `force_external` as `true`. If both are set to `false`, the system uses Cobo Loop by default if possible; otherwise, it proceeds with an on-chain transfer. [optional]
forceExternal Boolean Whether the transaction request must not be executed as a Cobo Loop transfer. - `true`: The transaction request must not be executed as a Cobo Loop transfer. - `false`: The transaction request can be executed as a Cobo Loop transfer. Please do not set both `force_internal` and `force_external` as `true`. If both are set to `false`, the system uses Cobo Loop by default if possible; otherwise, it proceeds with an on-chain transfer. [optional]

Enum: ChangeOutputTypeEnum

Name Value
LAST "Last"
FIRST "First"