Skip to main content

SubscribeOnionMessages

SubscribeOnionMessages subscribes to a stream of incoming onion messages.

Source: lightning.proto

gRPC

info

This is a server-streaming RPC

rpc SubscribeOnionMessages (SubscribeOnionMessagesRequest) returns (stream OnionMessageUpdate);

REST

HTTP MethodPath
GET /v1/onionmessage/subscribe

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', loaderOptions);
const lnrpc = grpc.loadPackageDefinition(packageDefinition).lnrpc;
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 lnrpc.Lightning(GRPC_HOST, creds);
let request = {};
let call = client.subscribeOnionMessages(request);
call.on('data', function(response) {
// A response was received from the server.
console.log(response);
});
call.on('status', function(status) {
// The current status of the stream.
});
call.on('end', function() {
// The server has closed the stream.
});
// Console output:
// {
// "peer": <bytes>,
// "path_key": <bytes>,
// "onion": <bytes>,
// "reply_path": <BlindedPath>,
// "encrypted_recipient_data": <bytes>,
// "custom_records": <CustomRecordsEntry>,
// }

Messages

lnrpc.SubscribeOnionMessagesRequest

Source: lightning.proto

note

This request has no parameters.

lnrpc.OnionMessageUpdate

Source: lightning.proto

FieldgRPC TypeREST Type
peer
bytesstring
path_key
bytesstring
onion
bytesstring
reply_path
BlindedPathobject
encrypted_recipient_data
bytesstring
custom_records
CustomRecordsEntry[]object

Nested Messages

lnrpc.BlindedHop

FieldgRPC TypeREST Type
blinded_node
bytesstring
encrypted_data
bytesstring

lnrpc.BlindedPath

FieldgRPC TypeREST Type
introduction_node
bytesstring
blinding_point
bytesstring
blinded_hops
BlindedHop[]array

lnrpc.OnionMessageUpdate.CustomRecordsEntry

FieldgRPC TypeREST Type
key
uint64unknown
value
bytesunknown