wallet_createDroplitFaucet
Creates a faucet owned by this wallet which must be funded before use. This does not provide free credit or approval for another sponsor.
Read as MarkdownResult
An MCP result containing the operation outcome as text, with structured content where supplied. Check isError before using it; an output schema is shown when registered.
Permissions
This operation can change wallet, account or service state. A connected wallet applies its own permissions. Guarded broadcasts also require broadcasting to be enabled; service authorization is separate from wallet approval.
Inputs and availability
Full catalog · Droplit wallet
| Field | Type / required | Description |
|---|---|---|
| faucetName | string Required | Identifier for the new faucet; must be unique minLength: 1 |
| fixedDropSats | integer Optional | Satoshis paid out per tap. Server default applies if unset. maximum: 9007199254740991; exclusiveMinimum: 0 |
| maxConsolidationInputs | integer Optional | Cap on inputs the faucet consolidates in one transaction maximum: 9007199254740991; exclusiveMinimum: 0 |
Nested fields are required only when their parent object or array item is supplied.
Full input schema
{
"type": "object",
"properties": {
"faucetName": {
"type": "string",
"minLength": 1,
"description": "Identifier for the new faucet; must be unique"
},
"fixedDropSats": {
"description": "Satoshis paid out per tap. Server default applies if unset.",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
},
"maxConsolidationInputs": {
"description": "Cap on inputs the faucet consolidates in one transaction",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"faucetName"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}