{"id":10994,"date":"2022-11-30T19:45:24","date_gmt":"2022-11-30T19:45:24","guid":{"rendered":"https:\/\/cheesecakelabs.com\/blog\/"},"modified":"2026-06-24T00:24:46","modified_gmt":"2026-06-24T00:24:46","slug":"mint-burn-assets-stellar-network","status":"publish","type":"post","link":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/","title":{"rendered":"The Different Ways of Minting And Burning Assets in The Stellar Network"},"content":{"rendered":"\n<p>Designed for asset issuers, the <a href=\"https:\/\/cheesecakelabs.com\/blog\/stellar-network\/\" target=\"_blank\" rel=\"noreferrer noopener\">Stellar Network<\/a> features an easy process of creating and managing an asset. By default, it provides a set of ready-to-use features that serve as building blocks, allowing for the entire lifecycle of an asset to be managed directly through native operations, also known as &#8216;Stellar Classic&#8217;.&nbsp;<\/p>\n\n\n\n<p>Core to this process is the management of the circulating supply of an asset by minting and burning. This can be achieved in different ways by combining these native operations and enabling various use cases to be implemented.&nbsp;<\/p>\n\n\n\n<p>With the new <a href=\"https:\/\/soroban.stellar.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Soroban platform<\/a>, the network capabilities will be leveraged even further through smart contracts and an extra layer of programmability. For the purpose of this article, we&#8217;ll focus on the different ways to manage an asset&#8217;s circulating supply using only native operation on Stellar Classic.<\/p>\n\n\n\n<p>In February 2024, Stellar shipped Protocol 20, which activated Soroban \u2014 the network&#8217;s smart contract platform. Soroban does not replace the Classic operations. It adds a programmable layer on top of them, enabling regulated issuers, DeFi protocols, and stablecoin infrastructure to embed compliance logic, multi-sig controls, and composability hooks directly into the mint\/burn process. In 2026, <strong>asset issuers on Stellar have two distinct toolsets.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Stellar Asset Model: Trustlines and the Issuing Account<\/h2>\n\n\n\n<p>Before getting into minting and burning mechanics, it is worth establishing how the Stellar asset model works, because everything downstream depends on it. When you create an asset on Stellar, two things define it: an asset code (e.g. <code><strong>USDX<\/strong><\/code>) and the address of the Issuing account. The combination of these two identifiers is the asset&#8217;s unique fingerprint. Two accounts cannot issue assets with the same code, <strong>each issuer&#8217;s token is distinct.<\/strong><\/p>\n\n\n\n<p>Any account that wants to hold or transact in the asset must first create a <strong>trustline<\/strong>, an explicit declaration that they trust the Issuing account as the authority behind the asset. This trustline creates a slot in the account&#8217;s ledger entry for that asset and sets a balance limit. Without a trustline, an account cannot receive the asset.<\/p>\n\n\n\n<p>The Issuing account itself cannot create a trustline to its own asset. This is the design constraint that makes the supply model work: the Issuing account is the source and the sink. Units sent from it are created. Units sent to it are destroyed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Best practice: the Distribution account<\/h3>\n\n\n\n<p>Most asset issuers operate with a second account between the Issuer and end users \u2014 the Distribution account. The Issuer mints to the Distribution account, which then handles all downstream user-facing operations.<\/p>\n\n\n\n<p><strong>This separation has two benefits: <\/strong>the Issuing account&#8217;s private key can be kept in cold storage (since it only needs to sign minting transactions), and operational errors in the distribution layer cannot directly compromise the issuance mechanism.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Read more: <\/strong><a href=\"https:\/\/cheesecakelabs.com\/blog\/tokenomics\/\" type=\"post\" id=\"7962\" target=\"_blank\" rel=\"noreferrer noopener\">Tokenomics: Find Out How to Issue a Digital Token to Solve Your Business Needs<\/a><\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Five ways to mint and burn on Stellar Classic<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Payment Operations<\/h3>\n\n\n\n<p>The simplest and most widely used approach. To mint, the Issuing account sends a payment to any account with a trustline. To burn, any account sends a payment back to the Issuing account.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"HTTP\" data-shcb-language-slug=\"http\"><span><code class=\"hljs language-http\"><span class=\"hljs-attribute\">Source<\/span>: Issuing Account \u2192 Destination: Distribution Account\n<span class=\"hljs-attribute\">Amount<\/span>: 1,000,000 USDX\n<span class=\"hljs-attribute\">Operation<\/span>: Payment\n<span class=\"hljs-attribute\">Effect<\/span>: 1,000,000 USDX added to circulating supply<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTTP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">http<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"HTTP\" data-shcb-language-slug=\"http\"><span><code class=\"hljs language-http\"><span class=\"hljs-attribute\">Source<\/span>: Any Account \u2192 Destination: Issuing Account\n<span class=\"hljs-attribute\">Amount<\/span>: 500,000 USDX\n<span class=\"hljs-attribute\">Operation<\/span>: Payment\n<span class=\"hljs-attribute\">Effect<\/span>: 500,000 USDX removed from circulating supply<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTTP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">http<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>This is the right starting point for most issuers. It is auditable, straightforward to implement in any Stellar SDK, and well-documented in the <a href=\"https:\/\/developers.stellar.org\/docs\/issuing-assets\/how-to-issue-an-asset\" target=\"_blank\" rel=\"noreferrer noopener\">official Stellar developer guides.<\/a> The overwhelming majority of Stellar assets use payment operations as the primary mechanism for supply management.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Claimable Balances<\/h3>\n\n\n\n<p>Claimable Balances break the payment process into two distinct steps, introducing preconditions before the transfer is finalized.<\/p>\n\n\n\n<p>The sender (in minting scenarios, the Issuing account) allocates reserves by creating a claimable balance and specifying the conditions under which it can be claimed. The reserves are held in escrow on the ledger \u2014 they exist but are not yet in the recipient&#8217;s balance. Once the conditions are met, the recipient performs a <code><strong>Claim Claimable Balance<\/strong><\/code> operation to receive the funds.<\/p>\n\n\n\n<p>Conditions can be time-based (<code>CLAIM_PREDICATE_BEFORE_ABSOLUTE_TIME<\/code>, <code>CLAIM_PREDICATE_AFTER_ABSOLUTE_TIME<\/code>), compound (<code>CLAIM_PREDICATE_AND<\/code>, <code>CLAIM_PREDICATE_OR<\/code>), or unconditional (<code>CLAIM_PREDICATE_UNCONDITIONAL<\/code>).<\/p>\n\n\n\n<p><strong>Use cases where Claimable Balances add value over simple payments:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Token vesting:<\/strong> Allocate supply to team members or investors with time-based unlock conditions. The tokens exist on-chain and are auditable, but cannot be claimed before the vesting date.<\/li>\n\n\n\n<li><strong>Regulated airdrops:<\/strong> Mint tokens to a claimable balance with an expiry. Recipients who do not claim before the expiry date lose their allocation, and the issuer can reclaim the reserves.<\/li>\n\n\n\n<li><strong>Conditional distributions:<\/strong> Any scenario where you need to confirm eligibility before the recipient can access funds, without requiring off-chain coordination to time the payment.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. SDEX Orders<\/h3>\n\n\n\n<p>Stellar&#8217;s built-in decentralized exchange (SDEX) allows any two assets on the ledger to be traded against each other. By placing buy and sell orders on the SDEX using the Issuing account, minting and burning can be tied directly to market activity.<\/p>\n\n\n\n<p>When the Issuing account places a sell order for its own asset (selling asset X for asset Y), and that order is filled by another account, the amount of asset X sent from the Issuing account is minted into circulation. When the Issuing account places a buy order for its own asset (buying asset X with asset Y), and that order is filled, the asset X received by the Issuing account is burned.<\/p>\n\n\n\n<p>This approach is less common than payment operations, but it enables use cases where supply expansion or contraction is tied to market demand rather than issuer discretion. A commodity-backed token, for example, might use SDEX orders to allow the market to naturally govern circulating supply against a reserve asset.<\/p>\n\n\n\n<p>All asset authorization flags configured by the issuer apply to SDEX orders as well, assets with authorization required for transfers will still enforce those requirements when trades are executed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Liquidity Pools (AMMs)<\/h3>\n\n\n\n<p>Stellar&#8217;s automated market maker functionality allows any two assets to be pooled for trading, with liquidity providers depositing both assets in exchange for pool shares.<\/p>\n\n\n\n<p>For issuers, liquidity pool operations can serve as another mechanism for supply management: when the Issuing account deposits its own asset into a liquidity pool alongside a reserve asset, those units are minted into circulation and placed in the pool. When the Issuing account withdraws its share of the pool, the returned units of its own asset are burned.<\/p>\n\n\n\n<p>This is relevant for issuers building DeFi-adjacent products, <a href=\"https:\/\/cheesecakelabs.com\/blog\/what-are-stablecoins\/\" type=\"post\" id=\"13105\" target=\"_blank\" rel=\"noreferrer noopener\">stablecoins<\/a> that need trading depth on Stellar&#8217;s native exchange, or tokenized assets that want to offer on-chain liquidity without routing through a centralized order book.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Clawbacks<\/h3>\n\n\n\n<p>Clawbacks are a special operation that must be enabled at asset creation time via an authorization flag (<code>AUTHORIZATION_CLAWBACK_ENABLED<\/code>). Once enabled, the Issuing account can retrieve and burn asset units from any account or pending claimable balance \u2014 without the account holder&#8217;s consent.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript\">Issuer enables: AUTHORIZATION_CLAWBACK_ENABLED at asset creation\n<span class=\"hljs-attr\">Operation<\/span>: Clawback\n<span class=\"hljs-attr\">Source<\/span>: Issuing Account\n<span class=\"hljs-attr\">From<\/span>: Any account holding the asset\n<span class=\"hljs-attr\">Amount<\/span>: Specified amount\n<span class=\"hljs-attr\">Effect<\/span>: Amount burned <span class=\"hljs-keyword\">from<\/span> the target account, removed <span class=\"hljs-keyword\">from<\/span> supply<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Clawbacks are a compliance instrument. The use cases are explicitly regulatory:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Sanctions enforcement:<\/strong> If a holder is identified as a sanctioned entity, the issuer can claw back the funds.<\/li>\n\n\n\n<li><strong>Error correction:<\/strong> If tokens were sent to a wrong address due to an operational error, the issuer can recover and reissue them.<\/li>\n\n\n\n<li><strong>Regulatory order compliance:<\/strong> In jurisdictions where regulators can order asset freezes or seizures, clawbacks provide the technical mechanism to comply.<\/li>\n<\/ul>\n\n\n\n<p>The trade-off is real: enabling clawbacks on an asset changes its trust model. Users who value full self-custody should be aware that clawback-enabled assets can be retrieved by the issuer. For regulated stablecoins and <strong>security tokens<\/strong>, this capability is often required. For decentralized or community assets, it would undermine the trust model entirely.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Read more: <\/strong><a href=\"https:\/\/cheesecakelabs.com\/portfolio\/stellar-aid-assist\" target=\"_blank\" rel=\"noreferrer noopener\">How we created a payment system to aid refugees, in partnership with SDF and Aid Organizations<\/a><\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Which approach should you use?<\/h2>\n\n\n\n<p><strong>Start with Classic Payment operations<\/strong> if you are issuing a straightforward asset, your compliance requirements are managed off-chain, and you want the fastest path to a production deployment. The vast majority of Stellar assets are issued this way, and the infrastructure is mature.<\/p>\n\n\n\n<p><strong>Add Claimable Balances<\/strong> when your distribution model requires preconditions: vesting, eligibility checks, time-locked airdrops.<\/p>\n\n\n\n<p><strong>Enable Clawbacks<\/strong> if you are issuing a regulated asset in a jurisdiction that requires enforcement capabilities. Make this decision at issuance time, and<strong> it cannot be added after the fact.<\/strong><\/p>\n\n\n\n<p><strong>Use Soroban smart contracts<\/strong> when you need programmable issuance logic: multi-sig minting, oracle-verified reserves, on-chain compliance hooks, or composability with DeFi protocols. The $100M Soroban adoption fund has supported over 160 projects, including documentation, SDKs, and community support are well-developed.<\/p>\n\n\n\n<p><strong>Use SACs<\/strong> if you have an existing Classic asset that you want to make composable with Soroban contracts without reissuing it.<\/p>\n\n\n\n<p>At Cheesecake Labs, <strong>we are a Stellar Development Foundation partner<\/strong> with production deployments in stablecoin infrastructure, anchor platforms, and tokenized asset systems, including work with <a href=\"https:\/\/cheesecakelabs.com\/portfolio\/moneygram-wallet\" target=\"_blank\" rel=\"noreferrer noopener\">MoneyGram International<\/a> on Stellar-based cross-border payment infrastructure. <a href=\"https:\/\/cheesecakelabs.com\/contact\/\" target=\"_blank\" rel=\"noreferrer noopener\">Talk to our blockchain team<\/a> about building on Stellar.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Designed for asset issuers, the Stellar Network features an easy process of creating and managing an asset. By default, it provides a set of ready-to-use features that serve as building blocks, allowing for the entire lifecycle of an asset to be managed directly through native operations, also known as &#8216;Stellar Classic&#8217;.&nbsp; Core to this process [&hellip;]<\/p>\n","protected":false},"author":81,"featured_media":10995,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1165],"tags":[1203],"class_list":["post-10994","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blockchain","tag-stellar-network"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Mint and Burn Assets In The Stellar Network<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll explore the different ways to manage an asset&#039;s circulating supply in the Stellar Network.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Mint and Burn Assets In The Stellar Network\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll explore the different ways to manage an asset&#039;s circulating supply in the Stellar Network.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\" \/>\n<meta property=\"og:site_name\" content=\"Cheesecake Labs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cheesecakelabs\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-30T19:45:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-24T00:24:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"860\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Cheesecake Labs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@cheesecakelabs\" \/>\n<meta name=\"twitter:site\" content=\"@cheesecakelabs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\"},\"author\":{\"name\":\"Fabricius Zatti\"},\"headline\":\"The Different Ways of Minting And Burning Assets in The Stellar Network\",\"datePublished\":\"2022-11-30T19:45:24+00:00\",\"dateModified\":\"2026-06-24T00:24:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\"},\"wordCount\":1435,\"publisher\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg\",\"keywords\":[\"stellar network\"],\"articleSection\":[\"Blockchain\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\",\"url\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\",\"name\":\"How To Mint and Burn Assets In The Stellar Network\",\"isPartOf\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg\",\"datePublished\":\"2022-11-30T19:45:24+00:00\",\"dateModified\":\"2026-06-24T00:24:46+00:00\",\"description\":\"In this article, we'll explore the different ways to manage an asset's circulating supply in the Stellar Network.\",\"breadcrumb\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage\",\"url\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg\",\"contentUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg\",\"width\":1920,\"height\":860,\"caption\":\"a man's hand typing and working\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cheesecakelabs.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Different Ways of Minting And Burning Assets in The Stellar Network\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#website\",\"url\":\"https:\/\/cheesecakelabs.com\/blog\/\",\"name\":\"Cheesecake Labs\",\"description\":\"Nearshore outsourcing company for Web and Mobile design and engineering services, and staff augmentation for startups and enterprises..\",\"publisher\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cheesecakelabs.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#organization\",\"name\":\"Cheesecake Labs\",\"alternateName\":\"Cheesecake Labs Inc\",\"url\":\"https:\/\/cheesecakelabs.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/cheesecakelabs.com\/#logo\",\"url\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/cheesecake-labs-1.png\",\"contentUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/cheesecake-labs-1.png\",\"caption\":\"Cheesecake Labs\",\"inLanguage\":\"en\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/cheesecakelabs.com\/#primary-image\",\"url\":\"https:\/\/ckl-website-v4-strapi-prod.s3.us-east-2.amazonaws.com\/ai_software_development_company_83fb512983.webp\",\"contentUrl\":\"https:\/\/ckl-website-v4-strapi-prod.s3.us-east-2.amazonaws.com\/ai_software_development_company_83fb512983.webp\",\"width\":1920,\"height\":1080,\"caption\":\"Cheesecake Labs \u2014 AI, Data & Blockchain software development services\",\"inLanguage\":\"en\"},\"sameAs\":[\"https:\/\/www.facebook.com\/cheesecakelabs\",\"https:\/\/x.com\/cheesecakelabs\",\"https:\/\/www.instagram.com\/cheesecakelabs\/\",\"https:\/\/www.linkedin.com\/company\/cheesecake-labs\/\",\"https:\/\/www.youtube.com\/channel\/UCdGEQ5AHJcmIlaOaI5fGGVA\",\"https:\/\/clutch.co\/profile\/cheesecake-labs\",\"https:\/\/www.behance.net\/cheesecakelabs\",\"https:\/\/dribbble.com\/cheesecakelabs\",\"https:\/\/www.designrush.com\/agency\/profile\/cheesecake-labs\",\"https:\/\/www.g2.com\/products\/cheesecake-labs\/reviews\"],\"description\":\"Cheesecake Labs is a software development studio that designs and builds custom digital products \u2014 web, mobile, and platforms \u2014 combining product design and high-performance engineering.\",\"foundingDate\":\"2013\"},{\"@type\":\"Person\",\"name\":\"Fabricius Zatti\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/fabricius-zatti.png\",\"contentUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/fabricius-zatti.png\",\"caption\":\"Fabricius Zatti\"},\"url\":\"https:\/\/cheesecakelabs.com\/blog\/autor\/fabricius-zatti\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Mint and Burn Assets In The Stellar Network","description":"In this article, we'll explore the different ways to manage an asset's circulating supply in the Stellar Network.","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:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/","og_locale":"en_US","og_type":"article","og_title":"How To Mint and Burn Assets In The Stellar Network","og_description":"In this article, we'll explore the different ways to manage an asset's circulating supply in the Stellar Network.","og_url":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/","og_site_name":"Cheesecake Labs","article_publisher":"https:\/\/www.facebook.com\/cheesecakelabs","article_published_time":"2022-11-30T19:45:24+00:00","article_modified_time":"2026-06-24T00:24:46+00:00","og_image":[{"width":1920,"height":860,"url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg","type":"image\/jpeg"}],"author":"Cheesecake Labs","twitter_card":"summary_large_image","twitter_creator":"@cheesecakelabs","twitter_site":"@cheesecakelabs","twitter_misc":{"Written by":null,"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#article","isPartOf":{"@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/"},"author":{"name":"Fabricius Zatti"},"headline":"The Different Ways of Minting And Burning Assets in The Stellar Network","datePublished":"2022-11-30T19:45:24+00:00","dateModified":"2026-06-24T00:24:46+00:00","mainEntityOfPage":{"@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/"},"wordCount":1435,"publisher":{"@id":"https:\/\/cheesecakelabs.com\/blog\/#organization"},"image":{"@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage"},"thumbnailUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg","keywords":["stellar network"],"articleSection":["Blockchain"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/","url":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/","name":"How To Mint and Burn Assets In The Stellar Network","isPartOf":{"@id":"https:\/\/cheesecakelabs.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage"},"image":{"@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage"},"thumbnailUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg","datePublished":"2022-11-30T19:45:24+00:00","dateModified":"2026-06-24T00:24:46+00:00","description":"In this article, we'll explore the different ways to manage an asset's circulating supply in the Stellar Network.","breadcrumb":{"@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#primaryimage","url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg","contentUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/11\/minting-buring-assets-stellar-network.jpg","width":1920,"height":860,"caption":"a man's hand typing and working"},{"@type":"BreadcrumbList","@id":"https:\/\/cheesecakelabs.com\/blog\/mint-burn-assets-stellar-network\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cheesecakelabs.com\/blog\/"},{"@type":"ListItem","position":2,"name":"The Different Ways of Minting And Burning Assets in The Stellar Network"}]},{"@type":"WebSite","@id":"https:\/\/cheesecakelabs.com\/blog\/#website","url":"https:\/\/cheesecakelabs.com\/blog\/","name":"Cheesecake Labs","description":"Nearshore outsourcing company for Web and Mobile design and engineering services, and staff augmentation for startups and enterprises..","publisher":{"@id":"https:\/\/cheesecakelabs.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cheesecakelabs.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cheesecakelabs.com\/blog\/#organization","name":"Cheesecake Labs","alternateName":"Cheesecake Labs Inc","url":"https:\/\/cheesecakelabs.com\/","logo":{"@type":"ImageObject","@id":"https:\/\/cheesecakelabs.com\/#logo","url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/cheesecake-labs-1.png","contentUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/cheesecake-labs-1.png","caption":"Cheesecake Labs","inLanguage":"en"},"image":{"@type":"ImageObject","@id":"https:\/\/cheesecakelabs.com\/#primary-image","url":"https:\/\/ckl-website-v4-strapi-prod.s3.us-east-2.amazonaws.com\/ai_software_development_company_83fb512983.webp","contentUrl":"https:\/\/ckl-website-v4-strapi-prod.s3.us-east-2.amazonaws.com\/ai_software_development_company_83fb512983.webp","width":1920,"height":1080,"caption":"Cheesecake Labs \u2014 AI, Data & Blockchain software development services","inLanguage":"en"},"sameAs":["https:\/\/www.facebook.com\/cheesecakelabs","https:\/\/x.com\/cheesecakelabs","https:\/\/www.instagram.com\/cheesecakelabs\/","https:\/\/www.linkedin.com\/company\/cheesecake-labs\/","https:\/\/www.youtube.com\/channel\/UCdGEQ5AHJcmIlaOaI5fGGVA","https:\/\/clutch.co\/profile\/cheesecake-labs","https:\/\/www.behance.net\/cheesecakelabs","https:\/\/dribbble.com\/cheesecakelabs","https:\/\/www.designrush.com\/agency\/profile\/cheesecake-labs","https:\/\/www.g2.com\/products\/cheesecake-labs\/reviews"],"description":"Cheesecake Labs is a software development studio that designs and builds custom digital products \u2014 web, mobile, and platforms \u2014 combining product design and high-performance engineering.","foundingDate":"2013"},{"@type":"Person","name":"Fabricius Zatti","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheesecakelabs.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/fabricius-zatti.png","contentUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2022\/06\/fabricius-zatti.png","caption":"Fabricius Zatti"},"url":"https:\/\/cheesecakelabs.com\/blog\/autor\/fabricius-zatti\/"}]}},"_links":{"self":[{"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts\/10994","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/users\/81"}],"replies":[{"embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/comments?post=10994"}],"version-history":[{"count":3,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts\/10994\/revisions"}],"predecessor-version":[{"id":13986,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts\/10994\/revisions\/13986"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/media\/10995"}],"wp:attachment":[{"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/media?parent=10994"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/categories?post=10994"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/tags?post=10994"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}