POST
/
nodes
/
claim-funds
curl --request POST \
  --url http://localhost:3001/nodes/claim-funds \
  --header 'Content-Type: application/json' \
  --data '{
  "gas": "<string>",
  "gas_budget": 1,
  "gas_price": 1,
  "node_badge_id": "<string>",
  "stack_small_ids": [
    123
  ]
}'
{
  "tx_digest": "<string>"
}

Body

application/json

Represents a request to claim funds from a stack.

This struct encapsulates the necessary parameters for claiming funds from a stack, including optional gas-related fields.

Response

200
application/json

Node claim funds successful

Represents a response to a node claim funds request.

This struct contains the transaction digest, which is a unique identifier for the transaction associated with the claim funds.