Build deposit transaction

To Do: <Description of the endpoint>

POST /accounts/deposit/build

<Description of the endpoint>

Headers

Name
Value

X-API-KEY

<YOUR_API_KEY>

Body

// Schema Type

amount: {
 unit: "string",
 quantity: "string"
}

input_utxo: {
 tx_hash: "string",
 tx_id: "string",
 amount: []amount,
 address: "string"
}
Name
Type
Schema
Description

deposit_amount

object []

[]amount *

input_utxos

object []

[]input_utxo *

Response

{
  "tx_hex": "string",
}

Last updated