"summary":"NextAddr returns the next unused address within the wallet.",
"operationId":"NextAddr",
"responses":{
"200":{
"description":"A successful response.",
"schema":{
"$ref":"#/definitions/walletrpcAddrResponse"
}
},
"default":{
"description":"An unexpected error response",
"schema":{
"$ref":"#/definitions/runtimeError"
}
}
},
"parameters":[
{
"name":"body",
"in":"body",
"required":true,
"schema":{
"$ref":"#/definitions/walletrpcAddrRequest"
}
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/bumpfee":{
"post":{
"summary":"BumpFee bumps the fee of an arbitrary input within a transaction. This RPC\ntakes a different approach than bitcoind's bumpfee command. lnd has a\ncentral batching engine in which inputs with similar fee rates are batched\ntogether to save on transaction fees. Due to this, we cannot rely on\nbumping the fee on a specific transaction, since transactions can change at\nany point with the addition of new inputs. The list of inputs that\ncurrently exist within lnd's central batching engine can be retrieved\nthrough the PendingSweeps RPC.",
"description":"When bumping the fee of an input that currently exists within lnd's central\nbatching engine, a higher fee transaction will be created that replaces the\nlower fee transaction through the Replace-By-Fee (RBF) policy. If it\n\nThis RPC also serves useful when wanting to perform a Child-Pays-For-Parent\n(CPFP), where the child transaction pays for its parent's fee. This can be\ndone by specifying an outpoint within the low fee transaction that is under\nthe control of the wallet.\n\nThe fee preference can be expressed either as a specific fee rate or a delta\nof blocks in which the output should be swept on-chain within. If a fee\npreference is not explicitly specified, then an error is returned.\n\nNote that this RPC currently doesn't perform any validation checks on the\nfee preference being provided. For now, the responsibility of ensuring that\nthe new fee preference is sufficient is delegated to the user.",
"operationId":"BumpFee",
"responses":{
"200":{
"description":"A successful response.",
"schema":{
"$ref":"#/definitions/walletrpcBumpFeeResponse"
}
},
"default":{
"description":"An unexpected error response",
"schema":{
"$ref":"#/definitions/runtimeError"
}
}
},
"parameters":[
{
"name":"body",
"in":"body",
"required":true,
"schema":{
"$ref":"#/definitions/walletrpcBumpFeeRequest"
}
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/estimatefee/{conf_target}":{
"get":{
"summary":"EstimateFee attempts to query the internal fee estimator of the wallet to\ndetermine the fee (in sat/kw) to attach to a transaction in order to\nachieve the confirmation target.",
"description":"The number of confirmations to shoot for when estimating the fee.",
"in":"path",
"required":true,
"type":"integer",
"format":"int32"
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/key":{
"post":{
"summary":"DeriveKey attempts to derive an arbitrary key specified by the passed\nKeyLocator.",
"operationId":"DeriveKey",
"responses":{
"200":{
"description":"A successful response.",
"schema":{
"$ref":"#/definitions/signrpcKeyDescriptor"
}
},
"default":{
"description":"An unexpected error response",
"schema":{
"$ref":"#/definitions/runtimeError"
}
}
},
"parameters":[
{
"name":"body",
"in":"body",
"required":true,
"schema":{
"$ref":"#/definitions/signrpcKeyLocator"
}
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/key/next":{
"post":{
"summary":"DeriveNextKey attempts to derive the *next* key within the key family\n(account in BIP43) specified. This method should return the next external\nchild within this branch.",
"operationId":"DeriveNextKey",
"responses":{
"200":{
"description":"A successful response.",
"schema":{
"$ref":"#/definitions/signrpcKeyDescriptor"
}
},
"default":{
"description":"An unexpected error response",
"schema":{
"$ref":"#/definitions/runtimeError"
}
}
},
"parameters":[
{
"name":"body",
"in":"body",
"required":true,
"schema":{
"$ref":"#/definitions/walletrpcKeyReq"
}
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/send":{
"post":{
"summary":"SendOutputs is similar to the existing sendmany call in Bitcoind, and\nallows the caller to create a transaction that sends to several outputs at\nonce. This is ideal when wanting to batch create a set of transactions.",
"summary":"ListSweeps returns a list of the sweep transactions our node has produced.\nNote that these sweeps may not be confirmed yet, as we record sweeps on\nbroadcast, not confirmation.",
"description":"Retrieve the full sweep transaction details. If false, only the sweep txids\nwill be returned.",
"in":"query",
"required":false,
"type":"boolean",
"format":"boolean"
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/sweeps/pending":{
"get":{
"summary":"PendingSweeps returns lists of on-chain outputs that lnd is currently\nattempting to sweep within its central batching engine. Outputs with similar\nfee rates are batched together in order to sweep them within a single\ntransaction.",
"description":"NOTE: Some of the fields within PendingSweepsRequest are not guaranteed to\nremain supported. This is an advanced API that depends on the internals of\nthe UtxoSweeper, so things may change.",
"summary":"PublishTransaction attempts to publish the passed transaction to the\nnetwork. Once this returns without an error, the wallet will continually\nattempt to re-broadcast the transaction on start up, until it enters the\nchain.",
"operationId":"PublishTransaction",
"responses":{
"200":{
"description":"A successful response.",
"schema":{
"$ref":"#/definitions/walletrpcPublishResponse"
}
},
"default":{
"description":"An unexpected error response",
"schema":{
"$ref":"#/definitions/runtimeError"
}
}
},
"parameters":[
{
"name":"body",
"in":"body",
"required":true,
"schema":{
"$ref":"#/definitions/walletrpcTransaction"
}
}
],
"tags":[
"WalletKit"
]
}
},
"/v2/wallet/tx/label":{
"post":{
"summary":"LabelTransaction adds a label to a transaction. If the transaction already\nhas a label the call will fail unless the overwrite bool is set. This will\noverwrite the exiting transaction label. Labels must not be empty, and\ncannot exceed 500 characters.",
"summary":"ListUnspent returns a list of all utxos spendable by the wallet with a\nnumber of confirmations between the specified minimum and maximum.",
"summary":"LeaseOutput locks an output to the given ID, preventing it from being\navailable for any future coin selection attempts. The absolute time of the\nlock's expiration is returned. The expiration of the lock can be extended by\nsuccessive invocations of this RPC. Outputs can be unlocked before their\nexpiration through `ReleaseOutput`.",
"summary":"ReleaseOutput unlocks an output, allowing it to be available for coin\nselection if it remains unspent. The ID should match the one used to\noriginally lock the output.",
"description":"Reversed, hex-encoded string representing the transaction ids of the\nsweeps that our node has broadcast. Note that these transactions may\nnot have confirmed yet, we record sweeps on broadcast, not confirmation."
"description":"Is the key finger print of the root pubkey that this request is targeting.\nThis allows the WalletKit to possibly serve out keys for multiple HD chains\nvia public derivation."
},
"key_family":{
"type":"integer",
"format":"int32",
"description":"The target key family to derive a key from. In other contexts, this is\nknown as the \"account\"."
}
}
},
"walletrpcLabelTransactionRequest":{
"type":"object",
"properties":{
"txid":{
"type":"string",
"format":"byte",
"description":"The txid of the transaction to label."
},
"label":{
"type":"string",
"description":"The label to add to the transaction, limited to 500 characters."
},
"overwrite":{
"type":"boolean",
"format":"boolean",
"description":"Whether to overwrite the existing label, if it is present."
"description":"An ID of 32 random bytes that must be unique for each distinct application\nusing this RPC which will be used to bound the output lease to."
},
"outpoint":{
"$ref":"#/definitions/lnrpcOutPoint",
"description":"The identifying outpoint of the output being leased."
"description":"The outpoint of the output we're attempting to sweep."
},
"witness_type":{
"$ref":"#/definitions/walletrpcWitnessType",
"description":"The witness type of the output we're attempting to sweep."
},
"amount_sat":{
"type":"integer",
"format":"int64",
"description":"The value of the output we're attempting to sweep."
},
"sat_per_byte":{
"type":"integer",
"format":"int64",
"description":"The fee rate we'll use to sweep the output. The fee rate is only determined\nonce a sweeping transaction for the output is created, so it's possible for\nthis to be 0 before this."
},
"broadcast_attempts":{
"type":"integer",
"format":"int64",
"description":"The number of broadcast attempts we've made to sweep the output."
},
"next_broadcast_height":{
"type":"integer",
"format":"int64",
"description":"The next height of the chain at which we'll attempt to broadcast the\nsweep transaction of the output."
},
"requested_conf_target":{
"type":"integer",
"format":"int64",
"description":"The requested confirmation target for this output."
},
"requested_sat_per_byte":{
"type":"integer",
"format":"int64",
"description":"The requested fee rate, expressed in sat/byte, for this output."
},
"force":{
"type":"boolean",
"format":"boolean",
"description":"Whether this input must be force-swept. This means that it is swept even\nif it has a negative yield."
}
}
},
"walletrpcPendingSweepsResponse":{
"type":"object",
"properties":{
"pending_sweeps":{
"type":"array",
"items":{
"$ref":"#/definitions/walletrpcPendingSweep"
},
"description":"The set of outputs currently being swept by lnd's central batching engine."
}
}
},
"walletrpcPublishResponse":{
"type":"object",
"properties":{
"publish_error":{
"type":"string",
"description":"If blank, then no error occurred and the transaction was successfully\npublished. If not the empty string, then a string representation of the\nbroadcast error.\n\nTODO(roasbeef): map to a proper enum type"
"description":" - COMMITMENT_TIME_LOCK: A witness that allows us to spend the output of a commitment transaction\nafter a relative lock-time lockout.\n - COMMITMENT_NO_DELAY: A witness that allows us to spend a settled no-delay output immediately on a\ncounterparty's commitment transaction.\n - COMMITMENT_REVOKE: A witness that allows us to sweep the settled output of a malicious\ncounterparty's who broadcasts a revoked commitment transaction.\n - HTLC_OFFERED_REVOKE: A witness that allows us to sweep an HTLC which we offered to the remote\nparty in the case that they broadcast a revoked commitment state.\n - HTLC_ACCEPTED_REVOKE: A witness that allows us to sweep an HTLC output sent to us in the case that\nthe remote party broadcasts a revoked commitment state.\n - HTLC_OFFERED_TIMEOUT_SECOND_LEVEL: A witness that allows us to sweep an HTLC output that we extended to a\nparty, but was never fulfilled. This HTLC output isn't directly on the\ncommitment transaction, but is the result of a confirmed second-level HTLC\ntransaction. As a result, we can only spend this after a CSV delay.\n - HTLC_ACCEPTED_SUCCESS_SECOND_LEVEL: A witness that allows us to sweep an HTLC output that was offered to us, and\nfor which we have a payment preimage. This HTLC output isn't directly on our\ncommitment transaction, but is the result of confirmed second-level HTLC\ntransaction. As a result, we can only spend this after a CSV delay.\n - HTLC_OFFERED_REMOTE_TIMEOUT: A witness that allows us to sweep an HTLC that we offered to the remote\nparty which lies in the commitment transaction of the remote party. We can\nspend this output after the absolute CLTV timeout of the HTLC as passed.\n - HTLC_ACCEPTED_REMOTE_SUCCESS: A witness that allows us to sweep an HTLC that was offered to us by the\nremote party. We use this witness in the case that the remote party goes to\nchain, and we know the pre-image to the HTLC. We can sweep this without any\nadditional timeout.\n - HTLC_SECOND_LEVEL_REVOKE: A witness that allows us to sweep an HTLC from the remote party's commitment\ntransaction in the case that the broadcast a revoked commitment, but then\nalso immediately attempt to go to the second level to claim the HTLC.\n - WITNESS_KEY_HASH: A witness type that allows us to spend a regular p2wkh output that's sent to\nan output which is under complete control of the backing wallet.\n - NESTED_WITNESS_KEY_HASH: A witness type that allows us to sweep an output that sends to a nested P2SH\nscript that pays to a key solely under our control.\n - COMMITMENT_ANCHOR: A witness type that allows us to spend our anchor on the commitment\ntransaction."