{"id":1299,"date":"2025-04-25T12:51:57","date_gmt":"2025-04-25T12:51:57","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=1299"},"modified":"2025-04-25T12:51:58","modified_gmt":"2025-04-25T12:51:58","slug":"how-to-check-ethereum-wallet-balance-a-complete-guide","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/","title":{"rendered":"How to Check Ethereum Wallet Balance &#8211; A Complete Guide"},"content":{"rendered":"\n<p>If you&#8217;re working with Ethereum-whether you&#8217;re building a DeFi protocol, launching an NFT marketplace, or just experimenting with smart contracts-there\u2019s one fundamental operation you\u2019ll use constantly: <strong>check Ethereum wallet balance.<\/strong><\/p>\n\n\n\n<p>Knowing how to retrieve the ETH balance of any address is essential not just for users, but for the backend logic of your application. In this guide, we\u2019ll show you how to do it using the <code>eth_getBalance<\/code> method via <strong>NOWNodes<\/strong>, a reliable blockchain infrastructure provider.<\/p>\n\n\n\n<p>No setup, no syncing, no waiting\u2014just plug into Ethereum and get started.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"why-use-the-ethgetbalance-method\">Why Use the <code>eth_getBalance<\/code> Method?<\/h2>\n\n\n<p>The <code>eth_getBalance<\/code> JSON-RPC method is a core building block of interacting with Ethereum nodes. It allows you to request the <strong>current balance of any wallet<\/strong> on the network. Since Ethereum is a public blockchain, you can check any address\u2014yours, a smart contract, a DeFi treasury, or even a competitor&#8217;s protocol.<\/p>\n\n\n\n<p>Here\u2019s why this method matters:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>User Dashboards<\/strong>: Show ETH balances directly in your application interface<\/li>\n\n\n\n<li><strong>Smart Contract Validation<\/strong>: Ensure a wallet has enough ETH before initiating a transaction<\/li>\n\n\n\n<li><strong>Transaction Fees<\/strong>: Check if the user has sufficient funds to cover gas<\/li>\n\n\n\n<li><strong>Analytics and Monitoring<\/strong>: Track wallet activity and balance changes over time<\/li>\n\n\n\n<li><strong>Automation<\/strong>: Power bots, scripts, or services that respond to on-chain balances<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"why-use-nownodes\">Why Use NOWNodes?<\/h2>\n\n\n<p>Running your own Ethereum node gives you control, but it&#8217;s resource-intensive and time-consuming. Instead, <strong>NOWNodes<\/strong> provides real-time access to full nodes across multiple chains via HTTP APIs.<\/p>\n\n\n\n<p>With NOWNodes, you can:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Skip the syncing process<\/li>\n\n\n\n<li>Avoid managing hardware or uptime<\/li>\n\n\n\n<li>Focus purely on building your app or tool<\/li>\n\n\n\n<li>Scale quickly without infrastructure headaches<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h5 class=\"wp-block-heading\" id=\"step-1-get-access-to-the-ethereum-api\">Step 1: Get Access to the Ethereum API<\/h5>\n\n\n<p>To start using NOWNodes:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to <a class=\"\" href=\"https:\/\/nownodes.io\">https:\/\/nownodes.io<\/a><\/li>\n\n\n\n<li>Sign up for an account<\/li>\n\n\n\n<li>Choose a free or paid subscription, depending on your needs<\/li>\n\n\n\n<li>Copy your personal <strong>API key<\/strong> from the dashboard<\/li>\n<\/ol>\n\n\n\n<div class=\"wp-block-simple-note-warning\"><strong>Keep your API key secret<\/strong>. Never publish it in frontend code or public repositories. If compromised, regenerate it immediately.<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h5 class=\"wp-block-heading\" id=\"step-2-use-ethgetbalance-to-check-the-wallet-balance\">Step 2: Use <code>eth_getBalance<\/code> to Check the Wallet Balance<\/h5>\n\n\n<p>The request is made via a standard JSON-RPC call. Here&#8217;s the exact structure you need.<\/p>\n\n\n<h6 class=\"wp-block-heading\" id=\"endpoint\">Endpoint:<\/h6>\n\n\n<pre class=\"wp-block-preformatted\"><code>POST https:\/\/eth.nownodes.io<br><\/code><\/pre>\n\n\n<h6 class=\"wp-block-heading\" id=\"raw-json-request-body\">Raw JSON request body:<\/h6>\n\n\n<pre class=\"wp-block-preformatted\">json\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c<code>{\"jsonrpc\":\"2.0\",\"method\":\"eth_getBalance\",\"params\":[\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\", \"latest\"],\"id\":1}\n<\/code><\/pre>\n\n\n<h6 class=\"wp-block-heading\" id=\"explanation\">Explanation:<\/h6>\n\n\n<ul class=\"wp-block-list\">\n<li><code>method<\/code>: <code>\"eth_getBalance\"<\/code> tells the node you&#8217;re requesting an address balance<\/li>\n\n\n\n<li><code>params[0]<\/code>: The Ethereum address you want to check<\/li>\n\n\n\n<li><code>params[1]<\/code>: <code>\"latest\"<\/code> tells the node to use the latest block data<\/li>\n\n\n\n<li><code>id<\/code>: Any number you choose (used to match the response with your request)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h5 class=\"wp-block-heading\" id=\"step-3-understand-the-response\">Step 3: Understand the Response<\/h5>\n\n\n<p>You\u2019ll receive a JSON response like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>{<br>    \"jsonrpc\": \"2.0\",<br>    \"id\": 1,<br>    \"result\": \"0x0\"<br>}<br><\/code><\/pre>\n\n\n\n<p>The <code>result<\/code> is the balance, returned in <strong>wei<\/strong>, which is the smallest unit of Ether.<\/p>\n\n\n\n<p>To convert wei to ETH, divide by 10^18.<\/p>\n\n\n\n<p>For example:<br><code>0x8ac7230489e80000<\/code> in hexadecimal = <code>10000000000000000000<\/code> wei = <code>10 ETH<\/code><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"when-and-why-you-might-use-this\">When and Why You Might Use This<\/h2>\n\n\n<p>Let\u2019s break down a few real-world scenarios:<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"1-building-a-wallet-app\">1. <strong>Building a Wallet App<\/strong><\/h4>\n\n\n<p>You want users to see their current ETH balance on login. This method provides a real-time balance that you can fetch and display on the dashboard.<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"2-defi-platform-or-swap-ui\">2. <strong>DeFi Platform or Swap UI<\/strong><\/h4>\n\n\n<p>Before allowing a user to initiate a swap or transaction, you check their ETH balance to ensure they have enough funds (and gas) to proceed.<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"3-gas-fee-estimators\">3. <strong>Gas Fee Estimators<\/strong><\/h4>\n\n\n<p>Your service estimates how much ETH is needed to complete a transaction. Checking the current balance ensures they won\u2019t run out of gas mid-execution.<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"4-whale-watchers-or-onchain-analytics\">4. <strong>Whale Watchers or On-Chain Analytics<\/strong><\/h4>\n\n\n<p>You\u2019re tracking wallets holding large ETH amounts or monitoring inflows\/outflows from specific addresses. This method lets you programmatically scan and log balances over time.<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"5-smart-automation-and-bots\">5. <strong>Smart Automation and Bots<\/strong><\/h4>\n\n\n<p>Balance triggers can be used for sending alerts, triggering trades, or monitoring treasury activity\u2014your bot checks the wallet every few seconds or minutes using this simple method.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"security-reminders\">Security Reminders<\/h2>\n\n\n<ul class=\"wp-block-list\">\n<li>Never expose your API key in client-side code<\/li>\n\n\n\n<li>Use environment variables or secrets managers to protect credentials<\/li>\n\n\n\n<li>If your key is exposed, revoke and regenerate it immediately via your NOWNodes account dashboard<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"final-thoughts\">Final Thoughts<\/h2>\n\n\n<p>The <code>eth_getBalance<\/code> method is one of the simplest yet most powerful tools for interacting with Ethereum. With NOWNodes, you don\u2019t need to run your own node or worry about infrastructure\u2014you can simply plug into the network and start building.<\/p>\n\n\n\n<p>This method forms the foundation of wallets, dashboards, monitoring tools, and so much more.<\/p>\n\n\n\n<p>Want to take it further? <a href=\"https:\/\/nownodes.gitbook.io\/documentation\/eth-ethereum\">Explore Ethereum\u2019s other JSON-RPC methods, or extend your app to support additional chains using the same API model.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re working with Ethereum-whether you&#8217;re building a DeFi protocol, launching an NFT marketplace, or just experimenting with smart contracts-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance. Knowing how to retrieve the ETH balance of any address is essential not just for users, but for the backend logic of your application. In [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1300,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","_lmt_disableupdate":"","_lmt_disable":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1299","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Check Ethereum Wallet Balance - A Complete Guide<\/title>\n<meta name=\"description\" content=\"If you&#039;re working with Ethereum-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check Ethereum Wallet Balance - A Complete Guide\" \/>\n<meta property=\"og:description\" content=\"If you&#039;re working with Ethereum-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-25T12:51:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-25T12:51:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/04\/nodes_3-2-scaled.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"\u0410nastasia\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@nownodes\" \/>\n<meta name=\"twitter:site\" content=\"@nownodes\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u0410nastasia\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\"},\"author\":{\"name\":\"\u0410nastasia\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\"},\"headline\":\"How to Check Ethereum Wallet Balance &#8211; A Complete Guide\",\"datePublished\":\"2025-04-25T12:51:57+00:00\",\"dateModified\":\"2025-04-25T12:51:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\"},\"wordCount\":719,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\",\"url\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\",\"name\":\"How to Check Ethereum Wallet Balance - A Complete Guide\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2025-04-25T12:51:57+00:00\",\"dateModified\":\"2025-04-25T12:51:58+00:00\",\"description\":\"If you're working with Ethereum-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance.\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/nownodes.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\/\/nownodes.io\/blog\/category\/uncategorized\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Check Ethereum Wallet Balance &#8211; A Complete Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/nownodes.io\/blog\/#website\",\"url\":\"https:\/\/nownodes.io\/blog\/\",\"name\":\"NOWNodes Blog\",\"description\":\"Your first-to-go source of development guides, web3 analytics and most recent news about NOWNodes\",\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/nownodes.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\",\"name\":\"NOWNodes Blog\",\"url\":\"https:\/\/nownodes.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png\",\"contentUrl\":\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png\",\"width\":1164,\"height\":1164,\"caption\":\"NOWNodes Blog\"},\"image\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/twitter.com\/nownodes\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\",\"name\":\"\u0410nastasia\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g\",\"caption\":\"\u0410nastasia\"},\"url\":\"https:\/\/nownodes.io\/blog\/author\/nasty-nownodes\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check Ethereum Wallet Balance - A Complete Guide","description":"If you're working with Ethereum-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance.","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:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Check Ethereum Wallet Balance - A Complete Guide","og_description":"If you're working with Ethereum-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance.","og_url":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/","og_site_name":"NOWNodes Blog","article_published_time":"2025-04-25T12:51:57+00:00","article_modified_time":"2025-04-25T12:51:58+00:00","og_image":[{"width":2560,"height":1280,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/04\/nodes_3-2-scaled.png","type":"image\/png"}],"author":"\u0410nastasia","twitter_card":"summary_large_image","twitter_creator":"@nownodes","twitter_site":"@nownodes","twitter_misc":{"Written by":"\u0410nastasia","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/"},"author":{"name":"\u0410nastasia","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8"},"headline":"How to Check Ethereum Wallet Balance &#8211; A Complete Guide","datePublished":"2025-04-25T12:51:57+00:00","dateModified":"2025-04-25T12:51:58+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/"},"wordCount":719,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/","url":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/","name":"How to Check Ethereum Wallet Balance - A Complete Guide","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2025-04-25T12:51:57+00:00","dateModified":"2025-04-25T12:51:58+00:00","description":"If you're working with Ethereum-there\u2019s one fundamental operation you\u2019ll use constantly: check Ethereum wallet balance.","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog\/how-to-check-ethereum-wallet-balance-a-complete-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/nownodes.io\/blog"},{"@type":"ListItem","position":2,"name":"Uncategorized","item":"https:\/\/nownodes.io\/blog\/category\/uncategorized"},{"@type":"ListItem","position":3,"name":"How to Check Ethereum Wallet Balance &#8211; A Complete Guide"}]},{"@type":"WebSite","@id":"https:\/\/nownodes.io\/blog\/#website","url":"https:\/\/nownodes.io\/blog\/","name":"NOWNodes Blog","description":"Your first-to-go source of development guides, web3 analytics and most recent news about NOWNodes","publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nownodes.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/nownodes.io\/blog\/#organization","name":"NOWNodes Blog","url":"https:\/\/nownodes.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png","contentUrl":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png","width":1164,"height":1164,"caption":"NOWNodes Blog"},"image":{"@id":"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/twitter.com\/nownodes"]},{"@type":"Person","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8","name":"\u0410nastasia","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g","caption":"\u0410nastasia"},"url":"https:\/\/nownodes.io\/blog\/author\/nasty-nownodes"}]}},"modified_by":"\u0410nastasia","_links":{"self":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1299","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/comments?post=1299"}],"version-history":[{"count":2,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1299\/revisions"}],"predecessor-version":[{"id":1302,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1299\/revisions\/1302"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/1300"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=1299"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=1299"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=1299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}