Part of [Create a public laconicd testnet](https://www.notion.so/Create-a-public-laconicd-testnet-896a11bdd8094eff8f1b49c0be0ca3b8) Requires cerc-io/registry-sdk#22 Behaviour in different configuration scenarios: - Gas set, fees set to `Xalnt`: ```bash # Example gas: 500000 fees: 500000alnt gasPrice: ``` - `gasPrice` config ignored - tx rejected if given `fees` < `gas` * `min-gas-price` set by the node - tx fails mid-execution if it runs out of given `gas` - Fees not set, gas price set to `Xalnt`: ```bash # Example gas: fees: gasPrice: 1alnt ``` - `gas` config ignored - uses `auto` fee calculation using gas estimation with [default multiplier](https://git.vdb.to/cerc-io/registry-sdk/src/branch/main/src/constants.ts) (`2`) value from `registry-sdk` - tx rejected if given `gasPrice` < `min-gas-price` set by the node - tx fails mid-execution if it runs out of calculated gas - Fees set to a `X` (without `alnt` suffix), gas price set to `Yalnt`: ```bash # Example gas: fees: 1.8 gasPrice: 1alnt ``` - `gas` config ignored - uses `auto` fee calculation using gas estimation with `fees` as the multiplier - tx rejected if given `gasPrice` < `min-gas-price` set by the node - tx fails mid-execution if it runs out of calculated gas, can be retried with a higher gas estimation multiplier (`fees`) - Fees and gas price both not set: ```bash # Example gas: fees: gasPrice: ``` - `gas` config ignored - uses `auto` fee calculation using gas estimation - throws error: ```bash Gas price must be set in the client options when auto gas is used. ``` The provided config can be overridden with CLI args if required. Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: cerc-io/laconic-registry-cli#81 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import { Arguments } from 'yargs';
|
|
import assert from 'assert';
|
|
import yaml from 'js-yaml';
|
|
import fs from 'fs';
|
|
import { Registry } from '@cerc-io/registry-sdk';
|
|
|
|
import { getConfig, getGasAndFees, getConnectionInfo, getGasPrice, txOutput } from '../../../util';
|
|
|
|
export const command = 'publish';
|
|
|
|
export const desc = 'Register record.';
|
|
|
|
export const builder = {
|
|
'bond-id': {
|
|
type: 'string'
|
|
}
|
|
};
|
|
|
|
export const handler = async (argv: Arguments) => {
|
|
const { txKey, filename, config } = argv;
|
|
const { services: { registry: registryConfig } } = getConfig(config as string);
|
|
const { rpcEndpoint, gqlEndpoint, userKey, bondId, chainId } = getConnectionInfo(argv, registryConfig);
|
|
|
|
assert(rpcEndpoint, 'Invalid registry RPC endpoint.');
|
|
assert(gqlEndpoint, 'Invalid registry GQL endpoint.');
|
|
assert(userKey, 'Invalid User Key.');
|
|
assert(bondId, 'Invalid Bond ID.');
|
|
assert(chainId, 'Invalid registry Chain ID.');
|
|
|
|
let file = null;
|
|
if (filename) {
|
|
file = filename as string;
|
|
} else {
|
|
file = 0; // stdin
|
|
}
|
|
|
|
const { record } = await yaml.load(fs.readFileSync(file, 'utf-8')) as any;
|
|
|
|
// Convert sub-objects (other than arrays) to a JSON automatically.
|
|
for (const [k, v] of Object.entries(record)) {
|
|
if (v && typeof v === 'object' && !Array.isArray(v)) {
|
|
record[k] = JSON.stringify(v);
|
|
}
|
|
}
|
|
|
|
const gasPrice = getGasPrice(argv, registryConfig);
|
|
const registry = new Registry(gqlEndpoint, rpcEndpoint, { chainId, gasPrice });
|
|
|
|
const fee = getGasAndFees(argv, registryConfig);
|
|
const result = await registry.setRecord({ privateKey: userKey, record, bondId }, txKey || userKey, fee);
|
|
|
|
txOutput(result, JSON.stringify(result, undefined, 2), argv.output, argv.verbose);
|
|
};
|