Skip to main content

UniverseStats

UniverseStats returns a set of aggregate statistics for the current state of the Universe. Stats returned include: total number of syncs, total number of proofs, and total number of known assets.

Source: universerpc/universe.proto

gRPC

rpc UniverseStats (StatsRequest) returns (StatsResponse);

REST

HTTP MethodPath
GET /v1/taproot-assets/universe/stats

Code Samples

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

const GRPC_HOST = 'localhost:10029'
const MACAROON_PATH = 'TAPROOT-ASSETS_DIR/regtest/taproot-assets.macaroon'
const TLS_PATH = 'TAPROOT-ASSETS_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('universerpc/universe.proto', loaderOptions);
const universerpc = grpc.loadPackageDefinition(packageDefinition).universerpc;
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 universerpc.Universe(GRPC_HOST, creds);
let request = {};
client.universeStats(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "num_total_assets": <int64>,
// "num_total_groups": <int64>,
// "num_total_syncs": <int64>,
// "num_total_proofs": <int64>,
// }

Messages

universerpc.StatsRequest

Source: universerpc/universe.proto

note

This request has no parameters.

universerpc.StatsResponse

Source: universerpc/universe.proto

FieldgRPC TypeREST Type
num_total_assets
int64string
num_total_groups
int64string
num_total_syncs
int64string
num_total_proofs
int64string