Skip to main content

LabelTransaction

LabelTransaction adds a label to a transaction. If the transaction already has a label the call will fail unless the overwrite bool is set. This will overwrite the exiting transaction label. Labels must not be empty, and cannot exceed 500 characters.

Source: walletrpc/walletkit.proto

gRPC

rpc LabelTransaction (LabelTransactionRequest) returns (LabelTransactionResponse);

REST

HTTP MethodPath
POST /v2/wallet/tx/label

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 = {
txid: <bytes>,
label: <string>,
overwrite: <bool>,
};
client.labelTransaction(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// }

Messages

walletrpc.LabelTransactionRequest

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST TypeREST Placement
txid
bytesstringbody
label
stringstringbody
overwrite
boolbooleanbody

walletrpc.LabelTransactionResponse

Source: walletrpc/walletkit.proto

note

This response has no parameters.