Skip to main content

SetScores

SetScores attempts to set the scores used by the running autopilot agent, if the external scoring heuristic is enabled.

Source: autopilotrpc/autopilot.proto

gRPC

rpc SetScores (SetScoresRequest) returns (SetScoresResponse);

REST

HTTP MethodPath
POST /v2/autopilot/scores

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', 'autopilotrpc/autopilot.proto'], loaderOptions);
const autopilotrpc = grpc.loadPackageDefinition(packageDefinition).autopilotrpc;
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 autopilotrpc.Autopilot(GRPC_HOST, creds);
let request = {
heuristic: <string>,
scores: <ScoresEntry>,
};
client.setScores(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// }

Messages

autopilotrpc.SetScoresRequest

Source: autopilotrpc/autopilot.proto

FieldgRPC TypeREST TypeREST Placement
heuristic
stringstringbody
scores
ScoresEntry[]objectbody

autopilotrpc.SetScoresResponse

Source: autopilotrpc/autopilot.proto

note

This response has no parameters.

Nested Messages

autopilotrpc.SetScoresRequest.ScoresEntry

FieldgRPC TypeREST Type
key
stringunknown
value
doubleunknown