Skip to main content

NextBatchInfo

NextBatchInfo returns information about the next batch the auctioneer will perform.

Source: poolrpc/trader.proto

gRPC

rpc NextBatchInfo (NextBatchInfoRequest) returns (NextBatchInfoResponse);

REST

HTTP MethodPath
GET /v1/pool/batch/next

Code Samples

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

const GRPC_HOST = 'localhost:12010'
const MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
const TLS_PATH = 'POOL_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('poolrpc/trader.proto', loaderOptions);
const poolrpc = grpc.loadPackageDefinition(packageDefinition).poolrpc;
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 poolrpc.Trader(GRPC_HOST, creds);
let request = {};
client.nextBatchInfo(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "conf_target": <uint32>,
// "fee_rate_sat_per_kw": <uint64>,
// "clear_timestamp": <uint64>,
// "auto_renew_extension_blocks": <uint32>,
// }

Messages

poolrpc.NextBatchInfoRequest

Source: poolrpc/trader.proto

note

This request has no parameters.

poolrpc.NextBatchInfoResponse

Source: poolrpc/trader.proto

FieldgRPC TypeREST Type
conf_target
uint32integer
fee_rate_sat_per_kw
uint64string
clear_timestamp
uint64string
auto_renew_extension_blocks
uint32integer