UNPKG

@hashgraph/hedera-cli

Version:

CLI tool to manage and setup developer environments for Hedera Hashgraph.

28 lines (25 loc) 667 B
import accountCommands from './account'; import backupCommands from './backup'; import networkCommands from './network'; import tokenCommands from './token'; import hbarCommands from './hbar'; import setupCommands from './setup'; import stateCommands from './state'; import telemetryCommands from './telemetry'; import scriptCommands from './script'; import topicCommands from './topic'; import waitCommands from './wait'; const commands = { accountCommands, backupCommands, networkCommands, tokenCommands, hbarCommands, setupCommands, stateCommands, telemetryCommands, scriptCommands, topicCommands, waitCommands, }; export default commands;