Skip to main content

PublishTransaction

PublishTransaction attempts to publish the passed transaction to the network. Once this returns without an error, the wallet will continually attempt to re-broadcast the transaction on start up, until it enters the chain.

Source: walletrpc/walletkit.proto

gRPC

rpc PublishTransaction (Transaction) returns (PublishResponse);

REST

HTTP MethodPath
POST /v2/wallet/tx

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 = {
tx_hex: <bytes>,
label: <string>,
};
client.publishTransaction(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "publish_error": <string>,
// }

Messages

walletrpc.Transaction

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST TypeREST Placement
tx_hex
bytesstringbody
label
stringstringbody

walletrpc.PublishResponse

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST Type
publish_error
stringstring