Fix cns name resolve #42

Merged
telackey merged 3 commits from telackey/resolver into main 2023-11-30 05:01:30 +00:00
2 changed files with 4 additions and 6 deletions
Showing only changes of commit 3939b311f7 - Show all commits

View File

@ -2,7 +2,7 @@ import { Arguments } from 'yargs';
import assert from 'assert';
import { Registry } from '@cerc-io/laconic-sdk';
import { getConfig, getConnectionInfo,txOutput } from '../../../util';
import { getConfig, getConnectionInfo, queryOutput } from '../../../util';
export const command = 'resolve [name]';
@ -21,7 +21,5 @@ export const handler = async (argv: Arguments) => {
const registry = new Registry(gqlEndpoint, restEndpoint, chainId);
const result = await registry.resolveNames([name]);
const success = `{"success":${result.code==0}}`
txOutput(result,success,argv.output,argv.verbose)
queryOutput(result, argv.output);
}

View File

@ -48,11 +48,11 @@ export const handler = async (argv: Arguments) => {
// Apply ex post filters.
if (bondId) {
result = result.filter(v => v.bondId === bondId);
result = result.filter((v: any) => v.bondId === bondId);
}
if (owner) {
result = result.filter(v => v.owners?.find((e: string) => e === owner));
result = result.filter((v: any) => v.owners?.find((e: string) => e === owner));
}
queryOutput(result, argv.output)