Skip to content

Commit d36252f

Browse files
committed
added chain id and app name defaults to flags
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent d21abb7 commit d36252f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/flags.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export const chainId = {
247247
name: 'ledger-id',
248248
definition: {
249249
describe: 'Ledger ID (a.k.a. Chain ID)',
250-
defaultValue: '298', // Ref: https://github.com/hashgraph/hedera-json-rpc-relay#configuration
250+
defaultValue: constants.HEDERA_CHAIN_ID, // Ref: https://github.com/hashgraph/hedera-json-rpc-relay#configuration
251251
alias: 'l',
252252
type: 'string'
253253
}
@@ -403,7 +403,7 @@ export const app = {
403403
name: 'app',
404404
definition: {
405405
describe: 'Testing app name',
406-
defaultValue: '',
406+
defaultValue: constants.HEDERA_APP_NAME,
407407
type: 'string'
408408
}
409409
}

0 commit comments

Comments
 (0)