{"id":11739,"date":"2024-02-07T17:13:32","date_gmt":"2024-02-07T17:13:32","guid":{"rendered":"https:\/\/cheesecakelabs.com\/blog\/"},"modified":"2024-02-21T19:20:09","modified_gmt":"2024-02-21T19:20:09","slug":"how-much-do-soroban-fees-cost","status":"publish","type":"post","link":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/","title":{"rendered":"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar"},"content":{"rendered":"\n<p><a href=\"http:\/\/stellar.org\/soroban\" target=\"_blank\" rel=\"noreferrer noopener\">Soroban<\/a>, <a href=\"https:\/\/cheesecakelabs.com\/blog\/stellar-network\/\" target=\"_blank\" rel=\"noreferrer noopener\">Stellar<\/a>&#8216;s smart contract platform launched on Mainnet, brings increased flexibility to the network.<\/p>\n\n\n\n<p>One of the great advantages of the Stellar <a href=\"https:\/\/cheesecakelabs.com\/services\/blockchain\/\" target=\"_blank\" rel=\"noreferrer noopener\">blockchain<\/a> network is that classic transactions are the price of their fees compared to other networks.<\/p>\n\n\n\n<p><strong>Now, the question is, will <a href=\"https:\/\/cheesecakelabs.com\/blog\/stellar-soroban\/\" target=\"_blank\" rel=\"noreferrer noopener\">Soroban<\/a> transactions follow suit?<\/strong><\/p>\n\n\n\n<p>Today we&#8217;re going to explore this question analyzing different contracts and understand what to look out for when calculating the costs of contract call transactions.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Read more: <a href=\"https:\/\/cheesecakelabs.com\/blog\/stellar-soroban\/\" target=\"_blank\" rel=\"noreferrer noopener\">A Guide to Soroban in Defining DeFi on the Stellar Network<\/a><\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Soroban fees are calculated<\/strong><\/h2>\n\n\n\n<p>Understanding Soroban fees involves breaking them down into two essential components: the inclusion fee and the resource fee.<\/p>\n\n\n\n<p>The inclusion fee represents the maximum bid a submitter is willing to pay for their transaction to be prioritized in the ledger. When the ledger has space, only the base fee of 100 stroops is charged.<\/p>\n\n\n\n<p>This price depends a lot on network congestion and the user&#8217;s willingness to wait for ledger inclusion.<\/p>\n\n\n\n<p>The resource fee, on the other hand, hinges on the network resources consumed by the invoked transaction. <strong>Simply put, the more complex the transaction, the higher the fee to get it included in the ledger.<\/strong><\/p>\n\n\n\n<p>Let&#8217;s take a closer look at which resources impact the price in this part of the fee calculation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Soroban resources<\/strong><\/h2>\n\n\n\n<p>Soroban&#8217;s transaction resource fees are determined by six key factors:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>CPU<\/strong> <strong>Instructions:<\/strong> The number of CPU instructions executed by the transaction.<\/li>\n\n\n\n<li><strong>Ledger Entry Accesses:<\/strong> Reading or writing any single ledger entry.<\/li>\n\n\n\n<li><strong>Ledger I\/O:<\/strong> The amount of bytes read from or written to the ledger during the transaction.<\/li>\n\n\n\n<li><strong>Transaction Size:<\/strong> The size of the transaction submitted to the network.<\/li>\n\n\n\n<li><strong>Events &amp; Return Value Size:<\/strong> The size of both the events produced by the contract and the return value of the top-level contract function.<\/li>\n\n\n\n<li><strong>Ledger Space Rent:<\/strong> Payment associated with the ledger entry Time-to-Live (TTL) extensions and rent payments for increasing ledger entry size.<\/li>\n<\/ol>\n\n\n\n<p>While some resources, like RAM, don&#8217;t incur a cost fee, it&#8217;s important to note that all resources must be within the network&#8217;s maximum limit to be included.<\/p>\n\n\n\n<p>You can find more details on these limits in the <a href=\"https:\/\/soroban.stellar.org\/docs\/soroban-internals\/fees-and-metering\" target=\"_blank\" rel=\"noreferrer noopener\">official documentation<\/a>.<\/p>\n\n\n\n<p>To successfully execute a transaction, a fee proportional to the estimated cost of resources must be included in the envelope. If the resource usage exceeds the fee sent, the transaction will fail.<\/p>\n\n\n\n<p>To help with the resource usage estimation, it&#8217;s possible to use the <em>soroban-rpc<\/em> <code>simulateTransaction<\/code> method.<\/p>\n\n\n\n<p>This method simulates the execution of the transaction in the ledger, providing information on the expected resource usage. Some values, like CPU instructions, come with a margin of error, with a 20% increase, and a minimum value of 3 million.<\/p>\n\n\n\n<p>If the resource fee sent exceeds the actual resource usage, refunds are only applicable for <strong>Events &amp; Return Value Size<\/strong> and <strong>Ledger Space Rent<\/strong> resources. Other resources will be allocated and charged as per the user&#8217;s request, even if they remain unused in the transaction.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Average transaction costs<\/strong><\/h2>\n\n\n\n<p>To gain a better understanding of the day-to-day costs associated with these fees, we conducted a profiling analysis on various protocols developed by the community.<\/p>\n\n\n\n<p>While many of these contracts are still in the development phase and require refinement, they offer valuable insights into average costs.<\/p>\n\n\n\n<p>The tested transactions include token transfers, swaps, deposits, withdrawals into liquidity pools, oracle operations, and more.<\/p>\n\n\n\n<p>To gather these metrics, we utilized the profiling functionality within the <a href=\"https:\/\/cheesecakelabs.com\/stellar-plus\/\">stellar-plus<\/a> library. You can find part of the source code <a href=\"https:\/\/github.com\/CheesecakeLabs\/soroban-dapps\/blob\/main\/dapps-profiling\/readme.md\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>The table below shows the average, maximum, and minimum values obtained from each resource.<\/p>\n\n\n\n<p><strong>Results from 220 transactions:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\"><strong>Resources<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Average<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Maximum<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Minimum<\/strong><\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Minimum Resource Fees<\/td><td class=\"has-text-align-center\" data-align=\"center\">215,142<\/td><td class=\"has-text-align-center\" data-align=\"center\">823,350<\/td><td class=\"has-text-align-center\" data-align=\"center\">45,272<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">CPU Instructions<\/td><td class=\"has-text-align-center\" data-align=\"center\">16,672,419<\/td><td class=\"has-text-align-center\" data-align=\"center\">66,832,105<\/td><td class=\"has-text-align-center\" data-align=\"center\">3,797,619<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Ledger Read Bytes<\/td><td class=\"has-text-align-center\" data-align=\"center\">30,550<\/td><td class=\"has-text-align-center\" data-align=\"center\">75,312<\/td><td class=\"has-text-align-center\" data-align=\"center\">696<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Ledger Write Bytes<\/td><td class=\"has-text-align-center\" data-align=\"center\">414<\/td><td class=\"has-text-align-center\" data-align=\"center\">3,116<\/td><td class=\"has-text-align-center\" data-align=\"center\">0<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Ledger Entry Reads<\/td><td class=\"has-text-align-center\" data-align=\"center\">3<\/td><td class=\"has-text-align-center\" data-align=\"center\">10<\/td><td class=\"has-text-align-center\" data-align=\"center\">1<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Ledger Entry Writes<\/td><td class=\"has-text-align-center\" data-align=\"center\">2<\/td><td class=\"has-text-align-center\" data-align=\"center\">11<\/td><td class=\"has-text-align-center\" data-align=\"center\">0<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Events &amp; return value size<\/td><td class=\"has-text-align-center\" data-align=\"center\">151<\/td><td class=\"has-text-align-center\" data-align=\"center\">1,360<\/td><td class=\"has-text-align-center\" data-align=\"center\">4<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Transaction size<\/td><td class=\"has-text-align-center\" data-align=\"center\">332<\/td><td class=\"has-text-align-center\" data-align=\"center\">1,732<\/td><td class=\"has-text-align-center\" data-align=\"center\">116<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Looking at the results, the average minimum resource fee comes in at around 215,000 stroops, which equals 0.0215 XLM.<\/p>\n\n\n\n<p>It&#8217;s worth mentioning that this figure might be slightly influenced by including read transactions, which do not write to or modify the ledger.<\/p>\n\n\n\n<p>While these read transactions can be executed in the ledger, it&#8217;s also possible to use simulations for reads without incurring a fee. Consequently, read transactions are less likely to be encountered frequently.<\/p>\n\n\n\n<p>For a more precise evaluation, let&#8217;s narrow down our examination to the 119 transactions that involve ledger modifications. For this case, we&#8217;ll focus on visualizing the fees.<\/p>\n\n\n\n<p><strong>Results from 119 transactions with ledger modifications:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\"><strong>Resources<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Average<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Maximum<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Minimum<\/strong><\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Minimum Resource Fees<\/td><td class=\"has-text-align-center\" data-align=\"center\">261,052<\/td><td class=\"has-text-align-center\" data-align=\"center\">823,350<\/td><td class=\"has-text-align-center\" data-align=\"center\">48,670<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Focusing on transactions involving ledger modifications provides a dataset that aligns more closely with real-world scenarios.<\/p>\n\n\n\n<p>The changes aren&#8217;t drastic, with the average minimum resource fee at 261,052 stroops, equivalent to 0.0261 XLM.<\/p>\n\n\n\n<p>In the context of the current exchange rate, where XLM is valued at 0.11 USD, this fee translates to only 0.0029 USD. Moreover, the highest fee recorded from these transactions is just 0.0092 USD.<\/p>\n\n\n\n<p>You can check all the results obtained per transaction in <a href=\"https:\/\/docs.google.com\/spreadsheets\/d\/1s1p_AxmQmBxfGW1s1rCnYjHaJk43gP3UxnZGMztrR-g\/edit?usp=sharing\" target=\"_blank\" rel=\"noreferrer noopener\">this spreadsheet<\/a>.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>You may also like: <a href=\"https:\/\/cheesecakelabs.com\/blog\/how-to-use-stellar-soroban-to-write-a-bond-smart-contract\/\" target=\"_blank\" rel=\"noreferrer noopener\">How To Use Stellar\u2019s Soroban To Write a Bond Smart Contract<\/a><\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>In real-world scenarios, it&#8217;s natural to have more complex transactions that use more resources, as there will be more data and more security measures. It&#8217;s also important to note that this resource fee will be added to the inclusion fee, which may significantly increase based on network congestion.<\/p>\n\n\n\n<p>Overall, Soroban fees are quite reasonable, usually just a few cents. This makes Soroban a cost-effective choice compared to other networks. As Mainnet is about to launch and Soroban usage is expected to grow, we look forward to gaining an even more accurate perspective.<\/p>\n\n\n\n<p>We hope this article has given you a practical understanding of Soroban fees. If you have questions or seek assistance in developing your project with Soroban, please <a href=\"https:\/\/cheesecakelabs.com\/contact\/\">feel free to reach out to us!<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Soroban, Stellar&#8216;s smart contract platform launched on Mainnet, brings increased flexibility to the network. One of the great advantages of the Stellar blockchain network is that classic transactions are the price of their fees compared to other networks. Now, the question is, will Soroban transactions follow suit? Today we&#8217;re going to explore this question analyzing [&hellip;]<\/p>\n","protected":false},"author":81,"featured_media":11740,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[432,1165],"tags":[1233,1231,1203],"class_list":["post-11739","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-engineering","category-blockchain","tag-blockchain-development","tag-soroban","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 Much Do Soroban Fees Cost? Running Smart Contracts in Stellar<\/title>\n<meta name=\"description\" content=\"Understand what the Soroban transaction fee involves, and how much it costs to run smart contracts in the Stellar blockchain 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\/how-much-do-soroban-fees-cost\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar\" \/>\n<meta property=\"og:description\" content=\"Understand what the Soroban transaction fee involves, and how much it costs to run smart contracts in the Stellar blockchain network.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/\" \/>\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=\"2024-02-07T17:13:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-21T19:20:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png\" \/>\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\/png\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/\"},\"author\":{\"name\":\"Alessandra Carneiro\"},\"headline\":\"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar\",\"datePublished\":\"2024-02-07T17:13:32+00:00\",\"dateModified\":\"2024-02-21T19:20:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/\"},\"wordCount\":974,\"image\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png\",\"keywords\":[\"blockchain development\",\"soroban\",\"stellar network\"],\"articleSection\":[\"Engineering\",\"Blockchain\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/\",\"url\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/\",\"name\":\"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar\",\"isPartOf\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png\",\"datePublished\":\"2024-02-07T17:13:32+00:00\",\"dateModified\":\"2024-02-21T19:20:09+00:00\",\"author\":{\"@type\":\"person\",\"name\":\"Alessandra Carneiro\"},\"description\":\"Understand what the Soroban transaction fee involves, and how much it costs to run smart contracts in the Stellar blockchain network.\",\"breadcrumb\":{\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage\",\"url\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png\",\"contentUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png\",\"width\":1920,\"height\":860,\"caption\":\"how much do stellar soroban fees cost\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cheesecakelabs.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar\"}]},{\"@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..\",\"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\":\"Person\",\"name\":\"Alessandra Carneiro\",\"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\/2023\/04\/alessandra-carneiro.png\",\"contentUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2023\/04\/alessandra-carneiro.png\",\"caption\":\"Alessandra Carneiro\"},\"url\":\"https:\/\/cheesecakelabs.com\/blog\/autor\/alessandra-carneiro\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar","description":"Understand what the Soroban transaction fee involves, and how much it costs to run smart contracts in the Stellar blockchain 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\/how-much-do-soroban-fees-cost\/","og_locale":"en_US","og_type":"article","og_title":"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar","og_description":"Understand what the Soroban transaction fee involves, and how much it costs to run smart contracts in the Stellar blockchain network.","og_url":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/","og_site_name":"Cheesecake Labs","article_publisher":"https:\/\/www.facebook.com\/cheesecakelabs","article_published_time":"2024-02-07T17:13:32+00:00","article_modified_time":"2024-02-21T19:20:09+00:00","og_image":[{"width":1920,"height":860,"url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png","type":"image\/png"}],"author":"Cheesecake Labs","twitter_card":"summary_large_image","twitter_creator":"@cheesecakelabs","twitter_site":"@cheesecakelabs","twitter_misc":{"Written by":null,"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#article","isPartOf":{"@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/"},"author":{"name":"Alessandra Carneiro"},"headline":"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar","datePublished":"2024-02-07T17:13:32+00:00","dateModified":"2024-02-21T19:20:09+00:00","mainEntityOfPage":{"@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/"},"wordCount":974,"image":{"@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage"},"thumbnailUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png","keywords":["blockchain development","soroban","stellar network"],"articleSection":["Engineering","Blockchain"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/","url":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/","name":"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar","isPartOf":{"@id":"https:\/\/cheesecakelabs.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage"},"image":{"@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage"},"thumbnailUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png","datePublished":"2024-02-07T17:13:32+00:00","dateModified":"2024-02-21T19:20:09+00:00","author":{"@type":"person","name":"Alessandra Carneiro"},"description":"Understand what the Soroban transaction fee involves, and how much it costs to run smart contracts in the Stellar blockchain network.","breadcrumb":{"@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#primaryimage","url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png","contentUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2024\/02\/stellar-soroban-fees-cost.png","width":1920,"height":860,"caption":"how much do stellar soroban fees cost"},{"@type":"BreadcrumbList","@id":"https:\/\/cheesecakelabs.com\/blog\/how-much-do-soroban-fees-cost\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cheesecakelabs.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How Much Do Soroban Fees Cost? Running Smart Contracts in Stellar"}]},{"@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..","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":"Person","name":"Alessandra Carneiro","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\/2023\/04\/alessandra-carneiro.png","contentUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2023\/04\/alessandra-carneiro.png","caption":"Alessandra Carneiro"},"url":"https:\/\/cheesecakelabs.com\/blog\/autor\/alessandra-carneiro\/"}]}},"_links":{"self":[{"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts\/11739","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=11739"}],"version-history":[{"count":2,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts\/11739\/revisions"}],"predecessor-version":[{"id":11790,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/posts\/11739\/revisions\/11790"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/media\/11740"}],"wp:attachment":[{"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/media?parent=11739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/categories?post=11739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheesecakelabs.com\/blog\/wp-json\/wp\/v2\/tags?post=11739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}