30 lines
930 B
TypeScript
30 lines
930 B
TypeScript
import { Arguments } from 'yargs';
|
|
import assert from 'assert';
|
|
import { Registry } from '@cerc-io/laconic-sdk';
|
|
|
|
import { getConfig, getConnectionInfo } from '../../../util';
|
|
|
|
export const command = 'get';
|
|
|
|
export const desc = 'Get record.';
|
|
|
|
export const handler = async (argv: Arguments) => {
|
|
const { id, config } = argv;
|
|
assert(id, 'Invalid Record ID.');
|
|
|
|
const { services: { cns: cnsConfig } } = getConfig(config as string)
|
|
const { restEndpoint, gqlEndpoint, chainId } = getConnectionInfo(argv, cnsConfig);
|
|
assert(restEndpoint, 'Invalid CNS REST endpoint.');
|
|
assert(gqlEndpoint, 'Invalid CNS GQL endpoint.');
|
|
assert(chainId, 'Invalid CNS Chain ID.');
|
|
|
|
const registry = new Registry(gqlEndpoint, restEndpoint, chainId);
|
|
const result = await registry.getRecordsByIds([id as string]);
|
|
|
|
if (argv.output=="json"){
|
|
console.log(JSON.stringify(result, undefined, 2));
|
|
} else {
|
|
console.log(result)
|
|
}
|
|
}
|