get bond id

This commit is contained in:
0xmuralik 2023-03-07 16:27:53 +05:30
parent cbcc31d6bd
commit 3258e4cfe3

View File

@ -34,6 +34,7 @@ export const handler = async (argv: Arguments) => {
const registry = new Registry(gqlEndpoint, restEndpoint, chainId);
const fee = getGasAndFees(argv, cnsConfig);
const bondId = await registry.getNextBondId(privateKey);
const result = await registry.createBond({ denom, amount }, privateKey, fee);
console.log(verbose ? JSON.stringify(result, undefined, 2) : result.data);
console.log(true ? JSON.stringify(result, undefined, 2)+"\nBondId:"+bondId : bondId);
}