curl --request GET \
--url https://api.example.com/api/v1/boards/[
{
"amount_sat": 1,
"funding_tx": {
"tx": "<string>",
"txid": "<string>"
},
"movement_id": 1,
"vtxos": [
"<string>"
]
}
]Returns all boards whose funding transactions have not yet reached the number of on-chain confirmations required by the Ark server.
curl --request GET \
--url https://api.example.com/api/v1/boards/[
{
"amount_sat": 1,
"funding_tx": {
"tx": "<string>",
"txid": "<string>"
},
"movement_id": 1,
"vtxos": [
"<string>"
]
}
]Returns all pending boards
The amount of the board.
x >= 0The funding transaction. This is the transaction that has to be confirmed onchain for the board to succeed.
Show child attributes
The ID of the movement associated with this board.
x >= 0The IDs of the VTXOs that were created in this board.
Currently, this is always a vector of length 1
Was this page helpful?