mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-13 16:19:26 +08:00
23 lines
630 B
JSON
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"
|
|
}
|
|
}
|
|
}
|