BatchSnapshot
danger
This RPC is deprecated and will be removed in a future version.
BatchSnapshot returns the snapshot of a past batch identified by its ID. If no ID is provided, the snapshot of the last finalized batch is returned. Deprecated, use BatchSnapshots instead.
Source: poolrpc/trader.proto
gRPC
rpc BatchSnapshot (BatchSnapshotRequest) returns (BatchSnapshotResponse);
REST
HTTP Method | Path |
---|---|
GET | /v1/pool/batch/snapshot |
Code Samples
- gRPC
- REST
- Shell
- Javascript
- Python
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 = {
batch_id: <bytes>,
};
client.batchSnapshot(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "version": <uint32>,
// "batch_id": <bytes>,
// "prev_batch_id": <bytes>,
// "clearing_price_rate": <uint32>,
// "matched_orders": <MatchedOrderSnapshot>,
// "batch_tx_id": <string>,
// "batch_tx": <bytes>,
// "batch_tx_fee_rate_sat_per_kw": <uint64>,
// "creation_timestamp_ns": <uint64>,
// "matched_markets": <MatchedMarketsEntry>,
// }
import codecs, grpc, os
# Generate the following 2 modules by compiling the poolrpc/trader.proto with the grpcio-tools.
# See https://github.com/lightningnetwork/lnd/blob/master/docs/grpc/python.md for instructions.
import trader_pb2 as poolrpc, trader_pb2_grpc as traderstub
GRPC_HOST = 'localhost:12010'
MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
TLS_PATH = 'POOL_DIR/tls.cert'
# create macaroon credentials
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
def metadata_callback(context, callback):
callback([('macaroon', macaroon)], None)
auth_creds = grpc.metadata_call_credentials(metadata_callback)
# create SSL credentials
os.environ['GRPC_SSL_CIPHER_SUITES'] = 'HIGH+ECDSA'
cert = open(TLS_PATH, 'rb').read()
ssl_creds = grpc.ssl_channel_credentials(cert)
# combine macaroon and SSL credentials
combined_creds = grpc.composite_channel_credentials(ssl_creds, auth_creds)
# make the request
channel = grpc.secure_channel(GRPC_HOST, combined_creds)
stub = traderstub.TraderStub(channel)
request = poolrpc.BatchSnapshotRequest(
batch_id=<bytes>,
)
response = stub.BatchSnapshot(request)
print(response)
# {
# "version": <uint32>,
# "batch_id": <bytes>,
# "prev_batch_id": <bytes>,
# "clearing_price_rate": <uint32>,
# "matched_orders": <MatchedOrderSnapshot>,
# "batch_tx_id": <string>,
# "batch_tx": <bytes>,
# "batch_tx_fee_rate_sat_per_kw": <uint64>,
# "creation_timestamp_ns": <uint64>,
# "matched_markets": <MatchedMarketsEntry>,
# }
- Javascript
- Python
const fs = require('fs');
const request = require('request');
const REST_HOST = 'localhost:8281'
const MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
let options = {
url: `https://${REST_HOST}/v1/pool/batch/snapshot`,
// Work-around for self-signed certificates.
rejectUnauthorized: false,
json: true,
headers: {
'Grpc-Metadata-macaroon': fs.readFileSync(MACAROON_PATH).toString('hex'),
},
}
request.get(options, function(error, response, body) {
console.log(body);
});
// Console output:
// {
// "version": <integer>, // <uint32>
// "batch_id": <string>, // <bytes>
// "prev_batch_id": <string>, // <bytes>
// "clearing_price_rate": <integer>, // <uint32>
// "matched_orders": <array>, // <MatchedOrderSnapshot>
// "batch_tx_id": <string>, // <string>
// "batch_tx": <string>, // <bytes>
// "batch_tx_fee_rate_sat_per_kw": <string>, // <uint64>
// "creation_timestamp_ns": <string>, // <uint64>
// "matched_markets": <object>, // <MatchedMarketsEntry>
// }
import base64, codecs, json, requests
REST_HOST = 'localhost:8281'
MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
TLS_PATH = 'POOL_DIR/tls.cert'
url = f'https://{REST_HOST}/v1/pool/batch/snapshot'
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
headers = {'Grpc-Metadata-macaroon': macaroon}
r = requests.get(url, headers=headers, verify=TLS_PATH)
print(r.json())
# {
# "version": <uint32>,
# "batch_id": <bytes>,
# "prev_batch_id": <bytes>,
# "clearing_price_rate": <uint32>,
# "matched_orders": <MatchedOrderSnapshot>,
# "batch_tx_id": <string>,
# "batch_tx": <bytes>,
# "batch_tx_fee_rate_sat_per_kw": <uint64>,
# "creation_timestamp_ns": <uint64>,
# "matched_markets": <MatchedMarketsEntry>,
# }
$ pool auction snapshot --help
NAME:
pool auction snapshot - return information about a prior cleared auction batch
USAGE:
pool auction snapshot [command options] batch_id
DESCRIPTION:
Returns information about a prior batch or batches such as the
clearing price and the set of orders included in the batch. The
prev_batch_id field can be used to explore prior batches in the
sequence, similar to a block chain.
OPTIONS:
--batch_id value the target batch ID to obtain a snapshot for, if left blank, information about the latest batch is returned
--num_batches value the number of batches to show, starting at the batch_id and going back through the history of finalized batches (default: 1)
Messages
poolrpc.BatchSnapshotRequest
Source: auctioneerrpc/auctioneer.proto
Field | gRPC Type | REST Type | REST Placement |
---|---|---|---|
batch_id | bytes | string | query |
poolrpc.BatchSnapshotResponse
Source: auctioneerrpc/auctioneer.proto
Field | gRPC Type | REST Type |
---|---|---|
version | uint32 | integer |
batch_id | bytes | string |
prev_batch_id | bytes | string |
clearing_price_rate deprecated | uint32 | integer |
matched_orders deprecated | MatchedOrderSnapshot[] | array |
batch_tx_id | string | string |
batch_tx | bytes | string |
batch_tx_fee_rate_sat_per_kw | uint64 | string |
creation_timestamp_ns | uint64 | string |
matched_markets | MatchedMarketsEntry[] | object |
Nested Messages
poolrpc.AskSnapshot
Field | gRPC Type | REST Type |
---|---|---|
version | uint32 | integer |
lease_duration_blocks | uint32 | integer |
rate_fixed | uint32 | integer |
chan_type | OrderChannelType | string |
poolrpc.BatchSnapshotResponse.MatchedMarketsEntry
Field | gRPC Type | REST Type |
---|---|---|
key | uint32 | unknown |
value | MatchedMarketSnapshot | unknown |
poolrpc.BidSnapshot
Field | gRPC Type | REST Type |
---|---|---|
version | uint32 | integer |
lease_duration_blocks | uint32 | integer |
rate_fixed | uint32 | integer |
chan_type | OrderChannelType | string |
poolrpc.MatchedMarketSnapshot
Field | gRPC Type | REST Type |
---|---|---|
matched_orders | MatchedOrderSnapshot[] | array |
clearing_price_rate | uint32 | integer |
poolrpc.MatchedOrderSnapshot
Field | gRPC Type | REST Type |
---|---|---|
ask | AskSnapshot | object |
bid | BidSnapshot | object |
matching_rate | uint32 | integer |
total_sats_cleared | uint64 | string |
units_matched | uint32 | integer |
Enums
poolrpc.OrderChannelType
Name | Number |
---|---|
ORDER_CHANNEL_TYPE_UNKNOWN | 0 |
ORDER_CHANNEL_TYPE_PEER_DEPENDENT | 1 |
ORDER_CHANNEL_TYPE_SCRIPT_ENFORCED | 2 |
ORDER_CHANNEL_TYPE_SIMPLE_TAPROOT | 3 |