{"id":15573,"date":"2025-06-25T15:12:00","date_gmt":"2025-06-25T15:12:00","guid":{"rendered":"https:\/\/hederav2stg.wpenginepowered.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/"},"modified":"2025-12-08T18:06:16","modified_gmt":"2025-12-08T18:06:16","slug":"an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera","status":"publish","type":"post","link":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/","title":{"rendered":"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera"},"content":{"rendered":"<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">The <a href=\"https:\/\/github.com\/hashgraph\/hedera-cli\">Hedera Command Line Interface (CLI)<\/a> is a powerful tool designed specifically for developers building and scaling applications on the Hedera network. Whether you need to set up test environments, automate repetitive tasks, or manage your end-to-end Hedera development more efficiently, the Hedera CLI helps you streamline processes and reduce manual effort.<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Who Should Try the Hedera CLI?<\/strong><\/h4>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Automation Seekers<\/strong>: Developers can automate tasks like account creation, token management, and transaction handling to reduce manual effort when building on Hedera.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Hedera Projects<\/strong>: Teams can automate end-to-end testing and continuous integration pipelines across the Hedera testnet, mainnet, previewnet, or localnet environments to bring their products and services to market faster.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Explorers &amp; Newcomers<\/strong>: Great for new users on Hedera who want to experiment with the technology quickly without immediately diving into detailed code development.<\/p>\n<\/li>\n<\/ul>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Why Use Hedera CLI?<\/strong><\/h4>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Simplify Environment Management<\/strong>: Set up and manage test environments quickly and without complex configurations.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Easy Integration into Pipelines: <\/strong>Quickly add automation to your existing CI\/CD pipelines or script repetitive tasks independently.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Test More Scenarios in Less Time: <\/strong>Run a wide array of test cases with built-in support for Hedera Token Service (HTS), Hedera Consensus Service (HCS), and Hedera Smart Contract Service (HSCS).<\/p>\n<\/li>\n<\/ul>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Key Features of Hedera CLI<\/strong><\/h4>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>1. Accounts and Token Management<\/strong><\/h4>\n<p dir=\"ltr\">The Hedera CLI simplifies the management of essential Hedera functions such as creating accounts, tokens, associating tokens, and performing token transfers.<\/p>\n<p dir=\"ltr\">Below is a sample command to create an ECDSA\u00a0account with a balance of 1 Hbar (or\u00a0100000000 Tinybars)\u00a0and set a name for the account so you can easily reference it internally in the CLI state or\u00a0in other commands:<\/p>\n<\/div>\n<div class=\"hedera-code-window\" style=\"background-image:url('https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg');padding:24px;border-radius:8px;margin:24px 0;\">\n<p>  <!-- Hidden image so WP All Import downloads this background image into Media Library --><br \/>\n  <img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg\" alt=\"code window background\" style=\"display:none;\" \/><\/p>\n<div class=\"code-window-header\">\n<div class=\"code-window-title\"><\/div>\n<div class=\"code-window-body\"><\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\">hcli account create --name alice -b 100000000\n<\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">Create and <a href=\"https:\/\/github.com\/hashgraph\/hedera-cli?tab=readme-ov-file#token-commands\">manage tokens<\/a> (note how we reference Alice and Bob).<\/p>\n<\/div>\n<div class=\"hedera-code-window\" style=\"background-image:url('https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg');padding:24px;border-radius:8px;margin:24px 0;\">\n<p>  <!-- Hidden image so WP All Import downloads this background image into Media Library --><br \/>\n  <img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg\" alt=\"code window background\" style=\"display:none;\" \/><\/p>\n<div class=\"code-window-header\">\n<div class=\"code-window-title\"><\/div>\n<div class=\"code-window-body\"><\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\">\/\/ Token create\nhcli token create --name mytoken --symbol mtk --decimals 2 --initial-supply 1000 --supply-type infinite --admin-key alice --treasury-id 0.0.5401341 --treasury-key bob\n\n\/\/ Token associate\nhcli token associate -a,--account-id <accountId> -t,--token-id <tokenId>\n\n\/\/ Token transfer\nhcli token transfer -t,--token-id <tokenId> --to <to> --from <from> -b,--balance <balance>\n<\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>2. Automate Hedera Consensus Service (HCS) Operations<\/strong><\/h4>\n<p>The Hedera CLI provides comprehensive functionality for the <a href=\"https:\/\/github.com\/hashgraph\/hedera-cli?tab=readme-ov-file#topic-commands\">Hedera Consensus Service<\/a>. You can create topics, submit messages, and find messages right from the command line:<\/p>\n<\/div>\n<div class=\"hedera-code-window\" style=\"background-image:url('https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg');padding:24px;border-radius:8px;margin:24px 0;\">\n<p>  <!-- Hidden image so WP All Import downloads this background image into Media Library --><br \/>\n  <img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg\" alt=\"code window background\" style=\"display:none;\" \/><\/p>\n<div class=\"code-window-header\">\n<div class=\"code-window-title\"><\/div>\n<div class=\"code-window-body\"><\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\">hcli topic create [-s,--submit-key <submitKey>] [-a,--admin-key <adminKey>] [--memo <memo>]\n\nhcli topic message submit -t,--topic-id <topicId> -m,--message <message>\n\nhcli topic message find -t,--topic-id <topicId> -s,--sequence-number <sequenceNumber>\n<\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>3. Smart Contracts via Hardhat Integration<\/strong><\/h4>\n<p>The CLI integrates with <a href=\"https:\/\/docs.hedera.com\/hedera\/tutorials\/smart-contracts\/how-to-mint-and-burn-an-erc-721-token-using-hardhat-and-ethers-part-1\">Hardhat<\/a>, enabling robust smart contract deployment and interaction directly from your command line. Whether deploying a smart contract or interacting with it, the Hedera CLI makes these actions scriptable. The CLI uses the npx command to execute Hardhat scripts.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Feature Highlight: Script Blocks<\/strong><\/h4>\n<p dir=\"ltr\"><strong>Script Blocks<\/strong> allow you to build automated sequences by chaining multiple commands, significantly simplifying environment setup or complex operations. <\/p>\n<p dir=\"ltr\">Additionally, you can store outputs like token or topic IDs, private keys, and other essential details as variables <strong>(format: <em>output:varName<\/em>)<\/strong>, which you can reference in subsequent commands. This enables a high degree of automation for simple tasks and complex flows.<\/p>\n<p dir=\"ltr\">Here&#8217;s a practical example illustrating a complete automation scenario:<\/p>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Three accounts are created<\/strong>, storing their name, account ID, and private key.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>A new token is created<\/strong>, setting account 1 as the admin key and account 2 as the treasury account, referencing variables with the <em>{<\/em><em>{variable}}<\/em>\u00a0notation.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Account 3 is associated with the newly created token.<\/strong><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>One unit of the token is transferred<\/strong> from the treasury account (account 2) to account 3.<\/p>\n<\/li>\n<\/ul>\n<p><strong>After a 3-second pause<\/strong>, the balance of account 3 is checked, verifying if the token ID is correctly stored in the CLI tool&#8217;s state.<\/p>\n<\/div>\n<div class=\"hedera-code-window\" style=\"background-image:url('https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg');padding:24px;border-radius:8px;margin:24px 0;\">\n<p>  <!-- Hidden image so WP All Import downloads this background image into Media Library --><br \/>\n  <img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg\" alt=\"code window background\" style=\"display:none;\" \/><\/p>\n<div class=\"code-window-header\">\n<div class=\"code-window-title\"><\/div>\n<div class=\"code-window-body\"><\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\">{\n  \"name\": \"transfer\",\n  \"commands\": [\n   \"network use testnet\",\n    \"account create --name alice --args privateKey:privKeyAcc1 --args name:nameAcc1 --args accountId:idAcc1\",\n    \"account create --name bob --args privateKey:privKeyAcc2 --args name:nameAcc2 --args accountId:idAcc2\",\n    \"account create --name greg --args privateKey:privKeyAcc3 --args name:nameAcc3 --args accountId:idAcc3\",\n    \"token create -n mytoken -s MTK -d 2 -i 1000 --supply-type infinite --admin-key {{privKeyAcc1}} --treasury-id {{idAcc2}} --treasury-key {{privKeyAcc2}} --args tokenId:tokenId\",\n    \"token associate --account-id {{idAcc3}} --token-id {{tokenId}}\",\n    \"token transfer -t {{tokenId}} -b 1 --from {{nameAcc2}} --to {{nameAcc3}}\",\n    \"wait 3\",\n    \"account balance --account-id-or-name {{nameAcc3}} --token-id {{tokenId}}\",\n    \"state view --token-id {{tokenId}}\"\n  ],\n  \"args\": {}\n}\n<\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">This other example below shows how you can mix hardhat commands and other CLI commands to:<\/p>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Creates<\/strong> a new account and stores the accountId as <em>aliceAccId<\/em>.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Compile <\/strong>all contracts.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Deploy <\/strong>a simple storage contract that accepts account IDs.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Call the smart contract <\/strong>to store the account ID created in command 1, stored in the variable <em>aliceAccId.<\/em><\/p>\n<\/li>\n<\/ul>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Give Feedback<\/strong><\/h4>\n<p dir=\"ltr\">Developers are welcome to explore these Hedera CLI features, test their limits, and provide <a href=\"https:\/\/github.com\/hashgraph\/hedera-cli\/issues\" target=\"_blank\">feedback<\/a> to improve stability and completeness. Your input is essential as we move towards the official release of the Hedera CLI.<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Get Started Now<\/strong><\/h4>\n<p>Check out the <a href=\"https:\/\/github.com\/hashgraph\/hedera-cli?tab=readme-ov-file#prerequisites\" target=\"_blank\">GitHub repository<\/a> and start experimenting with the Hedera CLI today. Share your input and help us build a tool that enhances your development experience on Hedera.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The Hedera CLI is a command-line tool built for developers working with the Hedera network. It streamlines tasks such as creating accounts, managing tokens, deploying smart contracts, and interacting with the Hedera Consensus Service. The tool supports script automation, letting you store outputs like account IDs or private keys as reusable variables, simplifying complex operations and speeding up your development process.<\/p>\n","protected":false},"author":10,"featured_media":16658,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[1],"tags":[],"ppma_author":[43],"class_list":["post-15573","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera | Hedera<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera | Hedera\" \/>\n<meta property=\"og:description\" content=\"The Hedera CLI is a command-line tool built for developers working with the Hedera network. It streamlines tasks such as creating accounts, managing tokens, deploying smart contracts, and interacting with the Hedera Consensus Service. The tool supports script automation, letting you store outputs like account IDs or private keys as reusable variables, simplifying complex operations and speeding up your development process.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\" \/>\n<meta property=\"og:site_name\" content=\"Hedera\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-25T15:12:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-08T18:06:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hedera Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\"},\"author\":{\"name\":\"Hedera Team\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4\"},\"headline\":\"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera\",\"datePublished\":\"2025-06-25T15:12:00+00:00\",\"dateModified\":\"2025-12-08T18:06:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\"},\"wordCount\":652,\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\",\"url\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\",\"name\":\"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera | Hedera\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png\",\"datePublished\":\"2025-06-25T15:12:00+00:00\",\"dateModified\":\"2025-12-08T18:06:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hedera.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hedera.com\/#website\",\"url\":\"https:\/\/hedera.com\/\",\"name\":\"Hedera\",\"description\":\"Hello future\",\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hedera.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hedera.com\/#organization\",\"name\":\"Hedera\",\"url\":\"https:\/\/hedera.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"width\":500,\"height\":375,\"caption\":\"Hedera\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera | Hedera","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/","og_locale":"en_US","og_type":"article","og_title":"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera | Hedera","og_description":"The Hedera CLI is a command-line tool built for developers working with the Hedera network. It streamlines tasks such as creating accounts, managing tokens, deploying smart contracts, and interacting with the Hedera Consensus Service. The tool supports script automation, letting you store outputs like account IDs or private keys as reusable variables, simplifying complex operations and speeding up your development process.","og_url":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/","og_site_name":"Hedera","article_published_time":"2025-06-25T15:12:00+00:00","article_modified_time":"2025-12-08T18:06:16+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png","type":"image\/png"}],"author":"Hedera Team","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#article","isPartOf":{"@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/"},"author":{"name":"Hedera Team","@id":"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4"},"headline":"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera","datePublished":"2025-06-25T15:12:00+00:00","dateModified":"2025-12-08T18:06:16+00:00","mainEntityOfPage":{"@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/"},"wordCount":652,"publisher":{"@id":"https:\/\/hedera.com\/#organization"},"image":{"@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/","url":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/","name":"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera | Hedera","isPartOf":{"@id":"https:\/\/hedera.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage"},"image":{"@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png","datePublished":"2025-06-25T15:12:00+00:00","dateModified":"2025-12-08T18:06:16+00:00","breadcrumb":{"@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#primaryimage","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5.png","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/hedera.com\/blog\/an-early-look-at-the-hedera-cli-simplify-automate-and-accelerate-development-on-hedera\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hedera.com\/"},{"@type":"ListItem","position":2,"name":"An Early Look at the Hedera CLI: Simplify, Automate, and Accelerate Development on Hedera"}]},{"@type":"WebSite","@id":"https:\/\/hedera.com\/#website","url":"https:\/\/hedera.com\/","name":"Hedera","description":"Hello future","publisher":{"@id":"https:\/\/hedera.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hedera.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hedera.com\/#organization","name":"Hedera","url":"https:\/\/hedera.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","width":500,"height":375,"caption":"Hedera"},"image":{"@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/"}}]}},"featured_image_src":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5-600x400.png","featured_image_src_square":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HH60142_HederaCLI-V3.5-600x600.png","author_info":{"display_name":"Hedera Team","author_link":"https:\/\/hedera.com\/blog\/author\/hedera-team\/"},"authors":[{"term_id":43,"user_id":10,"is_guest":0,"slug":"hedera-team","display_name":"Hedera Team","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/7ed01931dc9498365746508c4ca49ed0507ef65e04e0b82ffe88c50ef9242b1d?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":""}],"_links":{"self":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15573","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/comments?post=15573"}],"version-history":[{"count":0,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15573\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media\/16658"}],"wp:attachment":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media?parent=15573"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/categories?post=15573"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/tags?post=15573"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/ppma_author?post=15573"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}