Files
stacks-blockchain-api/docs/api/faucet/run-faucet.schema.json
2021-12-15 17:49:20 +01:00

23 lines
630 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "POST request that initiates a transfer of tokens to a specified testnet address",
"title": "RunFaucetResponse",
"type": "object",
"additionalProperties": false,
"required": ["success"],
"properties": {
"success": {
"type": "boolean",
"description": "Indicates if the faucet call was successful"
},
"txId": {
"type": "string",
"description": "The transaction ID for the faucet call"
},
"txRaw": {
"type": "string",
"description": "Raw transaction in hex string representation"
}
}
}