{"id":16143,"date":"2020-12-07T20:10:00","date_gmt":"2020-12-07T20:10:00","guid":{"rendered":"https:\/\/hederav2stg.wpenginepowered.com\/blog\/get-started-with-the-hedera-token-service-part-2\/"},"modified":"2025-12-10T04:54:52","modified_gmt":"2025-12-10T04:54:52","slug":"get-started-with-the-hedera-token-service-part-2","status":"publish","type":"post","link":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/","title":{"rendered":"Get started with the Hedera Token Service &#8211; Part 2"},"content":{"rendered":"<div class=\"body-text BodyCopy mb-40 style-1\">\n<p><strong>This blog post has been updated to include the latest capabilities of the Hedera Token Service. <\/strong><\/p>\n<p><strong><strong>See the updated version: <a href=\"https:\/\/www.hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2-kyc-update-and-scheduled-transactions\">Get Started with the Hedera Token Service &#8211; Part 2: KYC, Update, and Scheduled Transactions<\/a><\/strong><\/strong><\/p>\n<p>In part 2 of getting started with HTS we\u2019re going to discuss some of the various administration functionalities. Similar to <a href=\"https:\/\/hedera.com\/blog\/code-is-law-but-what-if-the-law-needs-to-change\">controlled mutability<\/a> with Hedera\u2019s supporting services, HTS leaves decisions about these API parameters to the developers and provides ultimate flexibility to however someone would like to create their tokens. <\/p>\n<h4 class=\"color-ultraviolet\">Minting and burning tokens<\/h4>\n<p>While creating and transferring tokens at incredibly low cost and high speeds is great for a majority of use cases, like micropayments, certain applications and protocols may need more robust features. With HTS, you can easily set up the creation (minting) and deletion (burning) of new tokens (assuming that the token was created with a \u201csupply key\u201d). For example, when issuing a stablecoin, you may want to mint new tokens every time there is a new deposit, and subsequently, burn tokens anytime that someone converts their tokens back into fiat. <\/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\">Minting<\/div>\n<div class=\"code-window-body\">Minting<\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\"><p>\/\/Mint another 1,000 tokens and freeze the unsigned transaction for manual signing<br \/><\/p>\n<p>const transaction = await new TokenMintTransaction()\n<\/p>\n<p> .setTokenId(tokenId)\n<\/p>\n<p> .setAmount(1000)\n<\/p>\n<p> .freezeWith(client);\n<\/p>\n<p><br \/><\/p>\n<p>\/\/Sign with the supply private key of the token \n<\/p>\n<p>const signTx = await transaction.sign(supplyKey);\n<\/p>\n<p><br \/><\/p>\n<p>\/\/Submit the transaction to a Hedera network \n<\/p>\n<p>const txResponse = await signTx.execute(client);\n<\/p>\n<p><br \/><\/p>\n<p>\/\/Request the receipt of the transaction\n<\/p>\n<p>const receipt = await txResponse.getReceipt(client);\n<\/p>\n<p> \n<\/p>\n<p>\/\/Get the transaction consensus status\n<\/p>\n<p>const transactionStatus = receipt.status;\n<\/p>\n<p>console.log(\"The transaction consensus status \" +transactionStatus.toString());<\/p><\/code><\/pre>\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\">Burning<\/div>\n<div class=\"code-window-body\">Burning<\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\"><p>\/\/Burn 1,000 tokens and freeze the unsigned transaction for manual signing<br \/><\/p>\n<p>const transaction = await new TokenBurnTransaction()\n<\/p>\n<p> .setTokenId(tokenId)\n<\/p>\n<p> .setAmount(1000)\n<\/p>\n<p> .freezeWith(client);\n<\/p>\n<p><br \/><\/p>\n<p>\/\/Sign with the supply private key of the token \n<\/p>\n<p>const signTx = await transaction.sign(supplyKey);\n<\/p>\n<p><br \/><\/p>\n<p>\/\/Submit the transaction to a Hedera network \n<\/p>\n<p>const txResponse = await signTx.execute(client);\n<\/p>\n<p><br \/><\/p>\n<p>\/\/Request the receipt of the transaction\n<\/p>\n<p>const receipt = await txResponse.getReceipt(client);\n<\/p>\n<p> \n<\/p>\n<p>\/\/Get the transaction consensus status\n<\/p>\n<p>const transactionStatus = receipt.status;\n<\/p>\n<p>console.log(\"The transaction consensus status \" +transactionStatus.toString());\n<\/p><\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\">Deleting tokens <\/h4>\n<p>Sometimes tokens can be used in seasonal games, or other contexts with a predefined lifespan. In these circumstances, it\u2019s helpful to be able to delete the token from the network entirely, and therefore remove it from everyone\u2019s accounts. Similar to other admin functionality and Hedera\u2019s controlled mutability, if there are no administrative keys set during the token\u2019s creation, deletion is not possible. <\/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\">Deleting<\/div>\n<div class=\"code-window-body\">deleting<\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\"><p>\/\/Create the transaction and freeze the unsigned transaction for manual signing<\/p>\n<p>const transaction = await new TokenDeleteTransaction()<\/p>\n<p> .setTokenId(tokenId)<\/p>\n<p> .freezeWith(client);<\/p>\n<p>\/\/Sign with the admin private key of the token <\/p>\n<p>const signTx = await transaction.sign(adminKey);<\/p>\n<p>\/\/Submit the transaction to a Hedera network <\/p>\n<p>const txResponse = await signTx.execute(client);<\/p>\n<p>\/\/Request the receipt of the transaction<\/p>\n<p>const receipt = await txResponse.getReceipt(client);<\/p>\n<p> <\/p>\n<p>\/\/Get the transaction consensus status<\/p>\n<p>const transactionStatus = receipt.status;<\/p>\n<p>console.log(\"The transaction consensus status \" +transactionStatus.toString());<\/p><\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\">Updating tokens<\/h4>\n<p>If you create your tokens with an admin key, you\u2019re also able to \u201cupdate\u201d that token, meaning change the metadata and characteristics of the token itself. For example, you can change the token name, symbol, or keys that are associated with its controlled mutability. You can create a token that initially has a 1 of 1 key for minting and burning, and over time, change this to a threshold or multisignature key. You can rotate the keys associated with compliance and administration, or even remove them entirely offering a more decentralized approach over time.\n<\/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\">Update<\/div>\n<div class=\"code-window-body\">Update<\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\"><p>\/\/Create the transaction and freeze for manual signing<\/p>\n<p>const transaction = await new TokenUpdateTransaction()<\/p>\n<p> .setTokenId(tokenId)<\/p>\n<p> .setTokenName(\"Your New Token Name\")<\/p>\n<p> .freezeWith(client);<\/p>\n<p><br \/><\/p>\n<p>\/\/Sign the transaction with the admin key<\/p>\n<p>const signTx = await transaction.sign(adminKey);<\/p>\n<p><br \/><\/p>\n<p>\/\/Submit the signed transaction to a Hedera network<\/p>\n<p>const txResponse = await signTx.execute(client);<\/p>\n<p><br \/><\/p>\n<p>\/\/Request the receipt of the transaction<\/p>\n<p>const receipt = await txResponse.getReceipt(client);<\/p>\n<p><br \/><\/p>\n<p>\/\/Get the transaction consensus status<\/p>\n<p>const transactionStatus = receipt.status.toString();<\/p>\n<p>console.log(\"The transaction consensus status is \" +transactionStatus);<\/p><\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p>These are just a few examples of when and why it\u2019s helpful to have Hedera\u2019s level of controlled mutability. Being able to mint, burn, delete, and update tokens when needed &#8211; in a transparent and cryptographically provable way &#8211; opens up entirely new opportunities in the tokenization industry. In <a href=\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-3\">Part 3<\/a> of this blog series we\u2019ll look at different types of compliance functionality offered natively and out of the box, further opening the ease of integrations with HTS.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The Hedera Token Service (HTS) is used via a robust set of APIs for the configuration, minting, and management of tokens on Hedera, without needing to set up and deploy a smart contract. In Part 2 of this series, let&#8217;s look at the different types of administration functionalities that are available within the Hedera API (HAPI):<\/p>\n","protected":false},"author":10,"featured_media":17743,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[1],"tags":[45],"ppma_author":[43],"class_list":["post-16143","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-technical"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Get started with the Hedera Token Service - Part 2 | 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\/get-started-with-the-hedera-token-service-part-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get started with the Hedera Token Service - Part 2 | Hedera\" \/>\n<meta property=\"og:description\" content=\"The Hedera Token Service (HTS) is used via a robust set of APIs for the configuration, minting, and management of tokens on Hedera, without needing to set up and deploy a smart contract. In Part 2 of this series, let&#039;s look at the different types of administration functionalities that are available within the Hedera API (HAPI):\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Hedera\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-07T20:10:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-10T04:54:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\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\/get-started-with-the-hedera-token-service-part-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/\"},\"author\":{\"name\":\"Hedera Team\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4\"},\"headline\":\"Get started with the Hedera Token Service &#8211; Part 2\",\"datePublished\":\"2020-12-07T20:10:00+00:00\",\"dateModified\":\"2025-12-10T04:54:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/\"},\"wordCount\":438,\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png\",\"keywords\":[\"technical\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/\",\"url\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/\",\"name\":\"Get started with the Hedera Token Service - Part 2 | Hedera\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png\",\"datePublished\":\"2020-12-07T20:10:00+00:00\",\"dateModified\":\"2025-12-10T04:54:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png\",\"width\":1024,\"height\":576},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hedera.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get started with the Hedera Token Service &#8211; Part 2\"}]},{\"@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":"Get started with the Hedera Token Service - Part 2 | 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\/get-started-with-the-hedera-token-service-part-2\/","og_locale":"en_US","og_type":"article","og_title":"Get started with the Hedera Token Service - Part 2 | Hedera","og_description":"The Hedera Token Service (HTS) is used via a robust set of APIs for the configuration, minting, and management of tokens on Hedera, without needing to set up and deploy a smart contract. In Part 2 of this series, let's look at the different types of administration functionalities that are available within the Hedera API (HAPI):","og_url":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/","og_site_name":"Hedera","article_published_time":"2020-12-07T20:10:00+00:00","article_modified_time":"2025-12-10T04:54:52+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.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\/get-started-with-the-hedera-token-service-part-2\/#article","isPartOf":{"@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/"},"author":{"name":"Hedera Team","@id":"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4"},"headline":"Get started with the Hedera Token Service &#8211; Part 2","datePublished":"2020-12-07T20:10:00+00:00","dateModified":"2025-12-10T04:54:52+00:00","mainEntityOfPage":{"@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/"},"wordCount":438,"publisher":{"@id":"https:\/\/hedera.com\/#organization"},"image":{"@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png","keywords":["technical"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/","url":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/","name":"Get started with the Hedera Token Service - Part 2 | Hedera","isPartOf":{"@id":"https:\/\/hedera.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage"},"image":{"@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png","datePublished":"2020-12-07T20:10:00+00:00","dateModified":"2025-12-10T04:54:52+00:00","breadcrumb":{"@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#primaryimage","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001.png","width":1024,"height":576},{"@type":"BreadcrumbList","@id":"https:\/\/hedera.com\/blog\/get-started-with-the-hedera-token-service-part-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hedera.com\/"},{"@type":"ListItem","position":2,"name":"Get started with the Hedera Token Service &#8211; Part 2"}]},{"@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\/HTS-Part-2.001-600x400.png","featured_image_src_square":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/HTS-Part-2.001-600x576.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\/16143","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=16143"}],"version-history":[{"count":0,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/16143\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media\/17743"}],"wp:attachment":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media?parent=16143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/categories?post=16143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/tags?post=16143"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/ppma_author?post=16143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}