{"id":34,"date":"2023-01-31T10:57:47","date_gmt":"2023-01-31T07:57:47","guid":{"rendered":"https:\/\/devvoted.io\/blog\/?p=34"},"modified":"2023-03-13T17:51:21","modified_gmt":"2023-03-13T14:51:21","slug":"what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them","status":"publish","type":"post","link":"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/","title":{"rendered":"Best software tools for building dApps"},"content":{"rendered":"\n<p class=\"has-large-font-size\">We have all heard that dApps exist. We also know that they are programs that work in a decentralized way. However, it&#8217;s not a good idea to start learning them from scratch. There are quite a few services designed for novice web3 developers. Next we will get acquainted with them. At a minimum, we will need sample code in Solidity, user manuals and templates of the most common applications. More often than not, the specialized Solidity programming language is used to write dApps. However, these programs can also be written in other programming languages.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using templates for DeFi applications<\/h2>\n\n\n\n<p class=\"has-large-font-size\">The best place to start your introduction to the world of Web3 is with the <a href=\"https:\/\/www.cookbook.dev\/\">Cookbook<\/a>, where Solidity templates, smart contracts and examples of web3 resources implemented with them are widely available.<\/p>\n\n\n\n<div class=\"wp-block-group has-large-font-size\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-large-font-size\">Available categories to search:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Tokens.<\/li>\n\n\n\n<li>NFTs.<\/li>\n\n\n\n<li>Sales.<\/li>\n\n\n\n<li>DAOs.<\/li>\n\n\n\n<li>Finance.<\/li>\n\n\n\n<li>Utilities.<\/li>\n<\/ul>\n\n\n\n<p>In each of the categories, you can further narrow the search area by setting the necessary tags. For example, to add support for USDT cryptocurrency to your application, you can download the proven program code for such integration from <a href=\"https:\/\/www.cookbook.dev\/contracts\/tether-usdt\">here<\/a>. And to write a gift box with ERC20, ERC721 and ERC1155 tokens, you can just take the code from <a href=\"https:\/\/www.cookbook.dev\/contracts\/thirdweb-pack\">here<\/a> and change it a little.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What programming language to use<\/h2>\n\n\n\n<p>More experienced developers can use Solidity <a href=\"https:\/\/github.com\/dragonfly-xyz\/useful-solidity-patterns\">templates<\/a>. And those who see their future with the Ethereum network will find a full programming <a href=\"https:\/\/github.com\/ConsenSys\/ethereum-developer-tools-list\">guide<\/a> for this blockchain here. The <a href=\"https:\/\/www.web3byexample.com\/\">Web3 guide<\/a> will help novice developers. Many of the skills listed here, such as checking wallet balance functions, creating a transaction, and creating and running a smart contract will be similar for the Ethereum network as well as other blockchains.<\/p>\n\n\n\n<p>It&#8217;s no secret that many people program in Python. And these specialists don&#8217;t want to learn another programming language, Solidity, just to create smart contracts. The way out is to use the experimental programming language <a href=\"https:\/\/vyper.readthedocs.io\/en\/latest\/\" target=\"_blank\" rel=\"noreferrer noopener\">Vyper<\/a>. It is similar to Python in everything, but has its own specifics related to creating DeFi applications. The most experienced developers, who care about the high anonymity of DeFi applications and other advanced features, use the Rust programming language. Little-known blockchains use little-known programming languages, such as <a href=\"https:\/\/www.cairo-lang.org\/\">Cairo<\/a> and <a href=\"https:\/\/fuellabs.github.io\/sway\/v0.33.0\/book\/\">Sway<\/a>.<\/p>\n\n\n\n<p>However, more and more programmers are mastering tools and blockchains that allow them to write DeFi applications using common and familiar programming languages, such as Python and JavaScript.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">DeFi frameworks<\/h2>\n\n\n\n<p>In addition to programming languages, we will need frameworks. This is a set of software tools for developers with which to organize the structure of a project and work with it conveniently. At the same time, you can immediately test and compile your projects into executable code. <a href=\"https:\/\/devvoted.io\/defi-development-company\/\" target=\"_blank\" rel=\"noreferrer noopener\">DeFi developers<\/a> should pay attention to frameworks such as Hardhat, Truffle, and Brownie. They include tools that automatically check for logical errors in smart contracts. This is an extremely important tool for both the novice and experienced developer. After all, a missed error in a smart contract can lead to the loss of a huge amount of money.<\/p>\n\n\n\n<p><a href=\"https:\/\/hardhat.org\/\">Hardhat<\/a> is an Ethereum development environment for professionals. It is a great way to automate all the routine operations related to writing smart contracts and creating DeFi based on them. At the same time, the framework has an important advantage &#8211; written programs can be run locally, without the need to connect to the blockchain. This significantly speeds up the development process.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.trufflesuite.com\/\">Truffle<\/a> has already become a &#8220;must-have&#8221; tool for DeFi developers. It allows you to write smart contracts in the familiar JavaScript programming language.<\/p>\n\n\n\n<p><a href=\"https:\/\/eth-brownie.readthedocs.io\/en\/stable\/toctree.html\">Brownie<\/a> is an analog of the Truffle framework, and it is similarly used for developing smart contracts in Solidity, testing them, and deploying them. However, its main difference is that it doesn&#8217;t use the JavaScript programming language, but rather the Python programming language. In addition, Brownie includes software libraries for smart contracts, various versions of compilers, and tools for finding bugs in smart contracts. Solidity and Vyper programming languages are supported.<\/p>\n\n\n\n<p>You can also take advantage of the increasingly popular frameworks such as <a href=\"https:\/\/github.com\/embarklabs\/embark\">Embark<\/a>, <a href=\"https:\/\/buidler.dev\/\">Buidler<\/a>, and<a href=\"http:\/\/dapp.tools\/\"> dapp.tools<\/a>).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SDK for working with DeFi<\/h2>\n\n\n\n<p>Programmers write code inside an SDK (Software Development Kit). The SDK is a powerful platform where the code is easy to work with and, if necessary, the code can be compiled to a workable program. DeFi developers can try working with these SDKs:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/ethfiddle.com\/\">EthFiddle<\/a>. The simplest smart contract in the Solidity programming language can be written and compiled directly in the browser here.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.alchemy.com\/dapps\/scaffold-eth\">Scaffold-ETH<\/a>. Frontend, which allows you to work conveniently with smart contracts.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.alchemy.com\/dapps\/gelato\">Gelato<\/a>. Backend tool for working with smart contracts. In addition to the Ethereum network, it allows interacting with BNB, Avalance, Cronos, Arbirtium, Optimism blockchains.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.alchemy.com\/dapps\/etherspot\">Etherspot<\/a>. Everything you need to interact with various blockchain wallets.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.yieldster.io\/sdk\">Yieldster SDK<\/a>. Perfect for those who want to write DeFi in Python.<\/li>\n\n\n\n<li><a href=\"https:\/\/github.com\/waves-enterprise\/js-contract-sdk\">JavaScript SDK<\/a>. Suitable for developers who want to write DeFi applications in the JavaScript programming language.<\/li>\n<\/ul>\n\n\n\n<p>There are also quite a few software libraries that expand the functionality and degree of protection of smart contracts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">More tools for working with DeFi<\/h2>\n\n\n\n<p>Experienced developers use numerous additional tools to create DeFi applications. Some of them include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IFPS service, designed to store data that is used by the blockchain.<\/li>\n\n\n\n<li>Ethereum Name Service (ENS) or another domain name service that allows a DeFi application to use a decentralized domain name.<\/li>\n\n\n\n<li><a href=\"https:\/\/thegraph.com\/explorer\/\">TheGraph<\/a> and Chainlink services that allow blockchain-based applications to communicate with programs that do not use blockchain. DApps need a way to read and transform data from smart contracts. <a href=\"https:\/\/thegraph.com\/explorer\/\">TheGraph<\/a> offers a hosted GraphQL indexing service for your smart contracts.<\/li>\n\n\n\n<li>A Dune analytics service that conveniently displays the data your blockchain uses to run your app.<\/li>\n<\/ul>\n\n\n\n<p>But users should also be able to interact with <a href=\"https:\/\/devvoted.io\/smart-contract-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">smart contracts<\/a>. To write Frontends for dApp, pay attention to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/github.com\/PaulRBerg\/create-eth-app\/\">Create-eth-app<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/github.com\/austintgriffith\/scaffold-eth\">Scaffold-eth<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.openzeppelin.com\/starter-kits\/tutorial\">OpenZeppelin<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.openzeppelin.com\/starter-kits\/tutorial\">Starter Kit<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/github.com\/truffle-box\/drizzle-box\">Truffle&#8217;s Drizzle box<\/a><\/li>\n<\/ul>\n\n\n\n<p>Using such services will be enough to create complex applications like DEX, Swap, yield farming, borrowing protocols.<\/p>\n\n\n\n<p>What basics you should know before creating dApps<\/p>\n\n\n\n<p>When creating dApps you should know the basics on which the technology of the decentralized registry relies. The first and foremost is the transaction validation algorithm. The most commonly used algorithms are Proof of work (which Bitcoin uses) and Proof of state (which the cryptocurrency Ethereum recently switched to). In addition to these basic algorithms, there are also quite a few other consensus algorithms. However, they are not as widespread as Proof of work and Proof of state algorithms.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why we need consensus algorithms<\/h2>\n\n\n\n<p>With the existence of a consensus algorithm, all participants in the network can be assured that all transactions are seen and handled equally by all participants. The confirmation of this rests on a decentralized registry called blockchain. If we are sure that the blockchain is running smoothly and without glitches, it&#8217;s time to move on to the other variables that our DeFi app will use.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cryptocurrency wallets<\/h2>\n\n\n\n<p>Since our future app is related to decentralized finance, it will use the numbers of the cryptocurrency wallets between which the transactions will take place. The in-demand app will have integration with MetaMask, as it is the most common browser-based cryptocurrency wallet.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Test networks<\/h2>\n\n\n\n<p>Because working in decentralized networks is associated with the risk of losing money, developers initially run their applications in a test network. To do this, they simply specify the settings of the test cryptocurrency network before creating the application. The tokens or coins in such a network have no value and can be safely experimented with.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Smart Contracts<\/h2>\n\n\n\n<p>Next, we are already theoretically prepared enough to understand the system of &#8220;smart contracts&#8221;. Using a blockchain, a smart contract makes transactions between cryptocurrency wallets according to criteria that are set in the software code. Blockchain ensures that the transaction is executed and tokens, coins, NFTs or other digital assets are transferred between network participants. In turn, DeFi applications are further built from smart contracts as building blocks.<\/p>\n\n\n\n<p>To reduce the risk of errors, the contracts are first tested and compiled individually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Virtual machine<\/h2>\n\n\n\n<p>The more complex the software code of a decentralized application, the more relevant it is for the application to use a virtual machine. Ethereum Virtual Machine (EVM) is best known, but other blockchains also have their own virtual machines. They all operate in a similar way. The DeFi application uses an EVM or other virtual machine. It uses parameters such as &#8220;gas&#8221; and &#8220;gas price&#8221; to calculate the computing power required to execute DeFi smart contracts. We will talk about them further below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The price of gas<\/h2>\n\n\n\n<p>To keep the virtual machine from being overwhelmed by empty transactions and spam, parameters such as &#8220;gas&#8221; and &#8220;gas price&#8221; are used. &#8220;Gas&#8221; is a fee that is charged to the smart contract. Depending on how busy the network is, this commission (&#8220;gas price&#8221;) can go up or down. If the network is loaded, the &#8220;price of gas&#8221; goes up; if the load on the network goes down, the &#8220;price of gas&#8221; goes down.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion: What will it take to create DeFi?<\/h2>\n\n\n\n<p>This article lists a lot of basic and advanced software tools for creating DeFi applications. To summarize, to develop DeFi, you first need to learn the basics of decentralized technology.You need to know what the consensus algorithm is, what the decentralized registry is, the smart contract, the virtual machine, the &#8220;gas&#8221; and the &#8220;gas price&#8221;.<\/p>\n\n\n\n<p>You learned that DeFi is a program assembled from smart contracts like building blocks. So we will first need the skill of writing and compiling smart contracts. At first, only the Solidity language was used to write smart contracts. However, more and more developers are now offering the ability to write smart contracts in other programming languages. Therefore, the DeFi developer needs to constantly evolve, learn new things, and experiment. So, in this article we explored what tools exist to create dApps. In the next article we will create our first decentralized app.<\/p>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>We have all heard that dApps exist. We also know that they are programs that work in a decentralized way. However, it&#8217;s not a good idea to start learning them from scratch. There are quite a few services designed for novice web3 developers. Next we will get acquainted with them. At a minimum, we will&hellip; <a class=\"more-link\" href=\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/\">Continue reading <span class=\"screen-reader-text\">Best software tools for building dApps<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":39,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,10,2],"tags":[],"class_list":["post-34","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blockchain-development","category-blockchain-solutions","category-web3-0","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Discover dApp Development Made Easy | Devvoted Blog<\/title>\n<meta name=\"description\" content=\"dApps Are The Next Step In The Digital Space. Learn How To Code dApps With A Devvoted Blog Article.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Discover dApp Development Made Easy | Devvoted Blog\" \/>\n<meta property=\"og:description\" content=\"dApps Are The Next Step In The Digital Space. Learn How To Code dApps With A Devvoted Blog Article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/\" \/>\n<meta property=\"og:site_name\" content=\"DEVVOTED BLOG\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-31T07:57:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-13T14:51:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devvoted.io\/blog\/wp-content\/uploads\/2023\/01\/blog-article-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1263\" \/>\n\t<meta property=\"og:image:height\" content=\"647\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Marketing Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marketing Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/\",\"url\":\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/\",\"name\":\"Discover dApp Development Made Easy | Devvoted Blog\",\"isPartOf\":{\"@id\":\"https:\/\/devvoted.io\/blog\/#website\"},\"datePublished\":\"2023-01-31T07:57:47+00:00\",\"dateModified\":\"2023-03-13T14:51:21+00:00\",\"author\":{\"@id\":\"https:\/\/devvoted.io\/blog\/#\/schema\/person\/25c9bc0090a66ee9ef911b3796c3d6f2\"},\"description\":\"dApps Are The Next Step In The Digital Space. Learn How To Code dApps With A Devvoted Blog Article.\",\"breadcrumb\":{\"@id\":\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/devvoted.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Best software tools for building dApps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/devvoted.io\/blog\/#website\",\"url\":\"https:\/\/devvoted.io\/blog\/\",\"name\":\"DEVVOTED BLOG\",\"description\":\"blockchain developers become authors\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/devvoted.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/devvoted.io\/blog\/#\/schema\/person\/25c9bc0090a66ee9ef911b3796c3d6f2\",\"name\":\"Marketing Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/devvoted.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6094788093a7ecdfb657b097bef335b393dccf335a6f6b2e09d646b6cf9fe81e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6094788093a7ecdfb657b097bef335b393dccf335a6f6b2e09d646b6cf9fe81e?s=96&d=mm&r=g\",\"caption\":\"Marketing Team\"},\"sameAs\":[\"http:\/\/devvoted.io\"],\"url\":\"https:\/\/devvoted.io\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Discover dApp Development Made Easy | Devvoted Blog","description":"dApps Are The Next Step In The Digital Space. Learn How To Code dApps With A Devvoted Blog Article.","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:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/","og_locale":"en_US","og_type":"article","og_title":"Discover dApp Development Made Easy | Devvoted Blog","og_description":"dApps Are The Next Step In The Digital Space. Learn How To Code dApps With A Devvoted Blog Article.","og_url":"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/","og_site_name":"DEVVOTED BLOG","article_published_time":"2023-01-31T07:57:47+00:00","article_modified_time":"2023-03-13T14:51:21+00:00","og_image":[{"width":1263,"height":647,"url":"https:\/\/devvoted.io\/blog\/wp-content\/uploads\/2023\/01\/blog-article-1.png","type":"image\/png"}],"author":"Marketing Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Marketing Team","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/","url":"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/","name":"Discover dApp Development Made Easy | Devvoted Blog","isPartOf":{"@id":"https:\/\/devvoted.io\/blog\/#website"},"datePublished":"2023-01-31T07:57:47+00:00","dateModified":"2023-03-13T14:51:21+00:00","author":{"@id":"https:\/\/devvoted.io\/blog\/#\/schema\/person\/25c9bc0090a66ee9ef911b3796c3d6f2"},"description":"dApps Are The Next Step In The Digital Space. Learn How To Code dApps With A Devvoted Blog Article.","breadcrumb":{"@id":"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/devvoted.io\/blog\/what-blockchains-offer-tools-to-create-dapps-and-how-to-use-them\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devvoted.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Best software tools for building dApps"}]},{"@type":"WebSite","@id":"https:\/\/devvoted.io\/blog\/#website","url":"https:\/\/devvoted.io\/blog\/","name":"DEVVOTED BLOG","description":"blockchain developers become authors","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devvoted.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/devvoted.io\/blog\/#\/schema\/person\/25c9bc0090a66ee9ef911b3796c3d6f2","name":"Marketing Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/devvoted.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6094788093a7ecdfb657b097bef335b393dccf335a6f6b2e09d646b6cf9fe81e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6094788093a7ecdfb657b097bef335b393dccf335a6f6b2e09d646b6cf9fe81e?s=96&d=mm&r=g","caption":"Marketing Team"},"sameAs":["http:\/\/devvoted.io"],"url":"https:\/\/devvoted.io\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/posts\/34","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/comments?post=34"}],"version-history":[{"count":7,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/posts\/34\/revisions"}],"predecessor-version":[{"id":67,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/posts\/34\/revisions\/67"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/media\/39"}],"wp:attachment":[{"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/media?parent=34"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/categories?post=34"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devvoted.io\/blog\/wp-json\/wp\/v2\/tags?post=34"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}