Skip to main content

FinalizePsbt

FinalizePsbt expects a partial transaction with all inputs and outputs fully declared and tries to sign all inputs that belong to the wallet. Lnd must be the last signer of the transaction. That means, if there are any unsigned non-witness inputs or inputs without UTXO information attached or inputs without witness data that do not belong to lnd's wallet, this method will fail. If no error is returned, the PSBT is ready to be extracted and the final TX within to be broadcast.

NOTE: This method does NOT publish the transaction once finalized. It is the caller's responsibility to either publish the transaction on success or unlock/release any locked UTXOs in case of an error in this method.

Source: walletrpc/walletkit.proto

gRPC

rpc FinalizePsbt (FinalizePsbtRequest) returns (FinalizePsbtResponse);

REST

HTTP MethodPath
POST /v2/wallet/psbt/finalize

Code Samples

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:10009'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
const TLS_PATH = 'LND_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync(['lightning.proto', 'walletrpc/walletkit.proto'], loaderOptions);
const walletrpc = grpc.loadPackageDefinition(packageDefinition).walletrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new walletrpc.WalletKit(GRPC_HOST, creds);
let request = {
funded_psbt: <bytes>,
account: <string>,
};
client.finalizePsbt(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "signed_psbt": <bytes>,
// "raw_final_tx": <bytes>,
// }

Messages

walletrpc.FinalizePsbtRequest

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST TypeREST Placement
funded_psbt
bytesstringbody
account
stringstringbody

walletrpc.FinalizePsbtResponse

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST Type
signed_psbt
bytesstring
raw_final_tx
bytesstring