Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29a57930f7 | ||
|
|
37b69da3bb | ||
|
|
707b3049ef |
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "2.9.0",
|
|
||||||
"useWorkspaces": true,
|
|
||||||
"npmClient": "yarn"
|
|
||||||
}
|
|
||||||
@@ -36,6 +36,14 @@ export const handler = async (argv: Arguments) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const { record } = await yaml.load(fs.readFileSync(file, 'utf-8')) as any;
|
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 registry = new Registry(gqlEndpoint, restEndpoint, chainId);
|
const registry = new Registry(gqlEndpoint, restEndpoint, chainId);
|
||||||
const fee = getGasAndFees(argv, cnsConfig);
|
const fee = getGasAndFees(argv, cnsConfig);
|
||||||
const result = await registry.setRecord({ privateKey: userKey, record, bondId }, txKey as string, fee);
|
const result = await registry.setRecord({ privateKey: userKey, record, bondId }, txKey as string, fee);
|
||||||
|
|||||||
Reference in New Issue
Block a user