{"id":87934,"date":"2026-08-30T19:01:34","date_gmt":"2026-08-30T19:01:34","guid":{"rendered":"https:\/\/mudrex.com\/learn\/?p=87934"},"modified":"2026-08-30T19:14:09","modified_gmt":"2026-08-30T19:14:09","slug":"ethereum-smart-contracts-dapps","status":"publish","type":"post","link":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/","title":{"rendered":"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>If you have used <a href=\"https:\/\/mudrex.com\/learn\/what-is-geth-in-blockchain-geth-explained\/\">Ethereum<\/a> to swap tokens, buy an NFT or deposit crypto into a decentralised finance (DeFi) protocol, you have probably interacted with a smart contract. You may not have seen the contract itself\u2014you likely connected a wallet, selected an action and confirmed a transaction\u2014but smart-contract code handled the <a href=\"https:\/\/mudrex.com\/learn\/on-chain-analysis-in-crypto\/\">on-chain<\/a> part of the process.<\/p>\n\n\n\n<p>Smart contracts are one of the main reasons Ethereum can do more than transfer ETH. They allow developers to build applications that follow blockchain-based rules rather than relying entirely on a centralised company or server. These applications are commonly called decentralised applications, or dApps.<\/p>\n\n\n\n<p>This guide explains how Ethereum smart contracts and dApps work, where gas and the Ethereum Virtual Machine (EVM) fit in, what these applications can do, and the risks to understand before signing a transaction.<\/p>\n\n\n\n<p>Visit the <a href=\"https:\/\/mudrex.com\/coins\/ethereum\">Ethereum detail page<\/a> for the live chart, market data and technical analysis.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Takeaways<\/h2>\n\n\n\n<ul>\n<li>An Ethereum smart contract is on-chain code with functions and state at a specific address.<\/li>\n\n\n\n<li>A dApp is the broader application users interact with; it can combine a frontend, wallet connection, smart contracts and external services.<\/li>\n\n\n\n<li>Read-only contract calls do not need an on-chain transaction, while state-changing actions require a transaction and gas.<\/li>\n\n\n\n<li>DeFi, NFTs, DAOs, token systems and oracle-powered applications are major smart-contract use cases.<\/li>\n\n\n\n<li>Code vulnerabilities, risky permissions, compromised dependencies and phishing can put users&#8217; funds at risk.<\/li>\n\n\n\n<li>An audit is useful evidence, but it does not guarantee that a smart contract is safe.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">What Is an Ethereum Smart Contract?<\/h2>\n\n\n\n<p>An <a href=\"https:\/\/ethereum.org\/developers\/docs\/smart-contracts\/\" target=\"_blank\" rel=\"nofollow noopener\">Ethereum smart contract<\/a> is a program deployed to a specific address on the Ethereum blockchain. Its code contains functions and data that determine how it behaves when users or other contracts interact with it.<\/p>\n\n\n\n<p>Developers commonly write Ethereum smart contracts in <a href=\"https:\/\/ethereum.org\/developers\/docs\/smart-contracts\/languages\/\" target=\"_blank\" rel=\"nofollow noopener\">Solidity<\/a>. The code is compiled into bytecode that the <a href=\"https:\/\/ethereum.org\/developers\/docs\/evm\/\" target=\"_blank\" rel=\"nofollow noopener\">Ethereum Virtual Machine (EVM)<\/a> can execute.<\/p>\n\n\n\n<p>Once deployed, a contract can receive transactions and run its programmed logic. A decentralised exchange, for example, can use contracts to apply swap rules, move tokens and update balances. A lending protocol can use them to track deposits, collateral, borrowing and repayments.<\/p>\n\n\n\n<p>The key point is that the on-chain logic runs according to code. There is no employee manually approving each transaction.<\/p>\n\n\n\n<p>Also read: <a href=\"https:\/\/mudrex.com\/learn\/what-is-ethereum\/\">What Is Ethereum?<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">A Simple Solidity Example<\/h3>\n\n\n\n<p>You do not need to learn Solidity to understand smart contracts, but this small example shows what the code can look like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function setNumber(uint256 _number) public {\n    number = _number;\n}<\/code><\/pre>\n\n\n\n<p>This function changes a value stored by the contract. In simple terms, the process is:<\/p>\n\n\n\n<p><strong>Solidity code \u2192 deployed smart contract \u2192 user interaction \u2192 EVM execution \u2192 recorded state change<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"1f1445\" data-has-transparency=\"false\" style=\"--dominant-color: #1f1445;\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow-1024x576.png\" alt=\"Flow from Solidity code to a deployed contract, wallet interaction, EVM execution and recorded state change\n\" class=\"not-transparent wp-image-88252\" title=\"\" srcset=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow-1024x576.png 1024w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow-300x169.png 300w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow-768x432.png 768w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow-1536x864.png 1536w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow-150x84.png 150w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/03-solidity-to-evm-flow.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Solidity code becomes a deployed contract that the EVM executes when a user interacts with it.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">How Do Ethereum Smart Contracts Work?<\/h2>\n\n\n\n<p>From a user&#8217;s perspective, a state-changing interaction usually follows these steps:<\/p>\n\n\n\n<ol start=\"1\">\n<li>Connect a compatible wallet to a dApp.<\/li>\n\n\n\n<li>Choose an action, such as swapping tokens or depositing collateral.<\/li>\n\n\n\n<li>The dApp prepares a transaction or permission request.<\/li>\n\n\n\n<li>Review the details shown by the wallet.<\/li>\n\n\n\n<li>Sign and broadcast the transaction if the details are correct.<\/li>\n\n\n\n<li>Ethereum nodes execute the relevant contract code in the EVM.<\/li>\n\n\n\n<li>Once the transaction is included and validated, Ethereum records the resulting state change.<\/li>\n<\/ol>\n\n\n\n<p><strong>Execution flow:<\/strong> Wallet \u2192 dApp \u2192 Smart contract \u2192 EVM \u2192 Ethereum network \u2192 Confirmed transaction<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"130f33\" data-has-transparency=\"false\" style=\"--dominant-color: #130f33;\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow-1024x576.png\" alt=\"Diagram showing a wallet connecting to a dApp, smart contract, EVM, Ethereum network and confirmed transaction\" class=\"not-transparent wp-image-88248\" title=\"\" srcset=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow-1024x576.png 1024w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow-300x169.png 300w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow-768x432.png 768w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow-1536x864.png 1536w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow-150x84.png 150w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/02-smart-contract-execution-flow.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">A wallet signs the transaction, the smart contract executes, and Ethereum records the result.<\/figcaption><\/figure>\n\n\n\n<p>Also Read: <a href=\"https:\/\/mudrex.com\/learn\/ethereum-wallets-explained\/\">What is Ethereum Wallet<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How Gas Works on Ethereum<\/h3>\n\n\n\n<p>Gas measures the computational work required to execute an operation on Ethereum. Any on-chain transaction that changes Ethereum&#8217;s state requires gas. A simple ETH transfer between ordinary accounts commonly uses 21,000 gas, while a token swap can use substantially more because it may involve several contract operations.<\/p>\n\n\n\n<p>Gas units are not fixed currency prices. The amount paid depends on how much gas the transaction uses, the applicable fee per unit of gas and the price of ETH. Ethereum&#8217;s fee mechanism includes a protocol-set base fee, which is burned, and a priority fee that can go to the block proposer.<\/p>\n\n\n\n<p>Not every contract interaction costs gas. Reading public contract data without changing Ethereum&#8217;s state can be performed as a local call and does not require an on-chain transaction. Actions such as swapping, transferring tokens, minting or changing stored data require a transaction and gas.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"191639\" data-has-transparency=\"false\" style=\"--dominant-color: #191639;\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison-1024x576.png\" alt=\"Comparison of 21,000 gas for an ETH transfer with typically higher gas requirements for a token swap.\" class=\"not-transparent wp-image-88253\" title=\"\" srcset=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison-1024x576.png 1024w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison-300x169.png 300w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison-768x432.png 768w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison-1536x864.png 1536w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison-150x84.png 150w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/07-ethereum-gas-comparison.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Comparison of 21,000 gas for an ETH transfer with typically higher gas requirements for a token swap<br>A standard ETH transfer commonly uses 21,000 gas, while token swaps generally require more computation.<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Smart-Contract Events and Token Approvals<\/h3>\n\n\n\n<p>Contracts can emit events when transactions execute. Wallets, explorers and dApp interfaces use these logs to display activity such as transfers, swaps and approvals. Events help describe what happened, although the contract&#8217;s stored state remains the authoritative source for its current data.<\/p>\n\n\n\n<p>Token approvals are another common interaction. Under ERC-20-style allowance systems, a user can authorise a spender to move up to an approved amount of a token. This is why a swap may require an approval transaction before the swap itself. Always check the token, spender address and allowance before approving access.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is an Ethereum dApp?<\/h2>\n\n\n\n<p>A dApp, or decentralised application, is an application that uses blockchain-based functionality, usually through one or more smart contracts.<\/p>\n\n\n\n<p>From the user&#8217;s side, a dApp can look like an ordinary website. You connect a wallet, choose an action and confirm it. The difference is that important logic or state changes can be handled on-chain instead of only inside a company&#8217;s private database.<\/p>\n\n\n\n<p>For example, <a href=\"https:\/\/uniswap.org\/\" target=\"_blank\" rel=\"nofollow noopener\">Uniswap<\/a> lets users interact with contracts to swap tokens, while <a href=\"https:\/\/aave.com\/\" target=\"_blank\" rel=\"nofollow noopener\">Aave<\/a> uses smart contracts for DeFi lending and borrowing. The dApp provides the user-facing experience, while its smart contracts provide the on-chain logic.<\/p>\n\n\n\n<p>A dApp is not necessarily decentralised in every component. Its frontend may be hosted conventionally, and it may depend on wallet providers, indexers, oracles or other off-chain services. The term \u201cdApp\u201d therefore describes its use of decentralised infrastructure, not a guarantee that every component is decentralised.<\/p>\n\n\n\n<p>Also Read: <a href=\"https:\/\/mudrex.com\/learn\/ethereum-price-prediction\/\">ETH Liquidation Map<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Smart Contract vs dApp<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Feature<\/th><th>Smart contract<\/th><th>dApp<\/th><\/tr><tr><td>What it is<\/td><td>Code and state deployed on-chain<\/td><td>A user-facing application and its supporting components<\/td><\/tr><tr><td>Main role<\/td><td>Executes programmed blockchain logic<\/td><td>Helps users interact with blockchain functionality<\/td><\/tr><tr><td>Typical components<\/td><td>Functions, storage and events<\/td><td>Frontend, wallet connection, contracts and external services<\/td><\/tr><tr><td>Can it exist alone?<\/td><td>Yes<\/td><td>Usually depends on contracts or other blockchain services<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>A simple way to remember the difference is: <strong>the smart contract handles the on-chain logic; the dApp gives users a way to interact with it.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ethereum Smart-Contract and dApp Use Cases<\/h2>\n\n\n\n<p>Smart contracts can hold tokens, enforce rules and update their state when users interact with them. Combine several contracts with a frontend and wallet connection, and developers can build complete financial or digital applications on Ethereum.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"171041\" data-has-transparency=\"false\" style=\"--dominant-color: #171041;\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases-1024x576.png\" alt=\"Four Ethereum smart-contract use cases covering DeFi, NFTs, DAOs and blockchain oracles\" class=\"not-transparent wp-image-88249\" title=\"\" srcset=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases-1024x576.png 1024w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases-300x169.png 300w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases-768x432.png 768w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases-1536x864.png 1536w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases-150x84.png 150w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/04-smart-contract-use-cases.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Ethereum smart contracts support DeFi, digital ownership, community governance and external data feeds.<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Decentralised Finance (DeFi)<\/h3>\n\n\n\n<p>DeFi is one of Ethereum&#8217;s largest smart-contract use cases. Decentralised exchanges can facilitate token swaps directly from users&#8217; wallets. Lending protocols can manage deposits, collateral, borrowing and repayments according to on-chain rules.<\/p>\n\n\n\n<p>These systems reduce the need for a traditional intermediary to process every action, but users still depend on the protocol&#8217;s code, economic design and supporting infrastructure.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">NFTs and Digital Assets<\/h3>\n\n\n\n<p>NFT smart contracts can define ownership, transfers and other rules for unique digital assets. <a href=\"https:\/\/ethereum.org\/developers\/docs\/standards\/tokens\/erc-721\/\" target=\"_blank\" rel=\"nofollow noopener\">ERC-721<\/a> is widely used for non-fungible tokens, while <a href=\"https:\/\/ethereum.org\/developers\/docs\/standards\/tokens\/erc-1155\" target=\"_blank\" rel=\"nofollow noopener\">ERC-1155<\/a> can represent multiple asset types within one contract.<\/p>\n\n\n\n<p>NFT marketplaces such as <a href=\"https:\/\/opensea.io\/\" target=\"_blank\" rel=\"nofollow noopener\">OpenSea<\/a> use smart contracts to support activities such as listing, buying and transferring NFTs. The associated image or media may be stored outside Ethereum, even when ownership and transaction history are represented on-chain.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">DAOs and Community Governance<\/h3>\n\n\n\n<p>A decentralised autonomous organisation (DAO) can use smart contracts to manage proposals, voting and treasury actions. Depending on the design, eligible members may vote on a proposal and a contract may execute the approved result.<\/p>\n\n\n\n<p>This can reduce manual processing, but governance still depends on factors such as voting rules, token distribution, permissions and the security of treasury contracts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Oracles and External Data<\/h3>\n\n\n\n<p>Smart contracts cannot independently fetch arbitrary information from the outside world. Oracle systems bring data such as asset prices on-chain so contracts can use it.<\/p>\n\n\n\n<p><a href=\"https:\/\/chain.link\/\" target=\"_blank\" rel=\"nofollow noopener\">Chainlink<\/a> is one oracle infrastructure provider used in the Ethereum ecosystem. A lending protocol, for example, may rely on an oracle price to determine whether a borrower&#8217;s collateral is sufficient.<\/p>\n\n\n\n<p>This creates an additional dependency. If the input data is wrong, delayed or manipulated, a protocol can make an incorrect decision even when its code works as written.<\/p>\n\n\n\n<p><a href=\"https:\/\/mudrex.com\/learn\/how-to-stake-ethereum\/\">Learn How to Stake Ethereum<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ethereum Standards You Should Know<\/h2>\n\n\n\n<p>Ethereum standards define common ways for tokens, wallets and applications to work together.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Standard<\/th><th>Common use<\/th><\/tr><tr><td><a href=\"https:\/\/ethereum.org\/developers\/docs\/standards\/tokens\/erc-20\/\" target=\"_blank\" rel=\"nofollow noopener\">ERC-20<\/a><\/td><td>Fungible tokens, where units of the same token are interchangeable<\/td><\/tr><tr><td><a href=\"https:\/\/ethereum.org\/developers\/docs\/standards\/tokens\/erc-721\/\" target=\"_blank\" rel=\"nofollow noopener\">ERC-721<\/a><\/td><td>Non-fungible tokens, where individual tokens are unique<\/td><\/tr><tr><td><a href=\"https:\/\/ethereum.org\/developers\/docs\/standards\/tokens\/erc-1155\" target=\"_blank\" rel=\"nofollow noopener\">ERC-1155<\/a><\/td><td>Multiple token types, including fungible and non-fungible assets<\/td><\/tr><tr><td><a href=\"https:\/\/ethereum.org\/developers\/tools\/erc-4337-documentation\/\" target=\"_blank\" rel=\"nofollow noopener\">ERC-4337<\/a><\/td><td>Account abstraction and smart-contract-based wallet functionality<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"221b3a\" data-has-transparency=\"false\" style=\"--dominant-color: #221b3a;\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards-1024x576.png\" alt=\"Comparison of ERC-20, ERC-721, ERC-1155 and ERC-4337 with their common applications\n\" class=\"not-transparent wp-image-88251\" title=\"\" srcset=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards-1024x576.png 1024w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards-300x169.png 300w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards-768x432.png 768w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards-1536x864.png 1536w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards-150x84.png 150w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/05-ethereum-standards.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Ethereum standards support fungible tokens, NFTs, multiple token types and smart-contract wallets.<\/figcaption><\/figure>\n\n\n\n<p>ERC-20, ERC-721 and ERC-1155 define token interfaces. ERC-4337 is different: it focuses on account abstraction rather than defining a token format.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Are Ethereum Smart Contracts Useful?<\/h2>\n\n\n\n<p>One of Ethereum&#8217;s major strengths is composability. Smart contracts can act as public building blocks that interact with other contracts. Developers can reuse token standards, liquidity pools, lending systems, oracles and other on-chain components instead of rebuilding everything from scratch.<\/p>\n\n\n\n<p>For example, one application could support an ERC-20 token, obtain external data through an oracle and interact with an existing lending protocol. This ability to build on shared infrastructure has helped create an interconnected dApp ecosystem.<\/p>\n\n\n\n<p>Composability also creates dependency risk. If one component is exploited, misconfigured or supplied with bad data, other applications that rely on it may be affected.<\/p>\n\n\n\n<p>Also read: <a href=\"https:\/\/mudrex.com\/learn\/ethereum-price-prediction\/\">Ethereum Price Prediction<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Main Ethereum Smart-Contract Risks<\/h2>\n\n\n\n<p>Smart contracts make Ethereum programmable, but automation does not make them automatically safe. The blockchain executes the transaction a user authorises, so understanding what is being signed matters.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Code Vulnerabilities<\/h3>\n\n\n\n<p>Bugs or design flaws can cause unintended behaviour and, in some cases, the loss of funds. Reentrancy is one well-known vulnerability class: a contract can be called again before it has finished updating its state.<\/p>\n\n\n\n<p>Imagine a vulnerable withdrawal function that sends funds before reducing the user&#8217;s stored balance. A malicious contract may call the withdrawal function again before the balance is updated, potentially repeating the withdrawal.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"1b1132\" data-has-transparency=\"false\" style=\"--dominant-color: #1b1132;\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained-1024x576.png\" alt=\"Diagram comparing a vulnerable reentrancy flow with a safer check-update-send sequence\n\" class=\"not-transparent wp-image-88250\" title=\"\" srcset=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained-1024x576.png 1024w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained-300x169.png 300w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained-768x432.png 768w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained-1536x864.png 1536w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained-150x84.png 150w, https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/06-reentrancy-explained.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Reentrancy can occur when a contract sends funds before updating its state; a safer sequence updates the state first.<\/figcaption><\/figure>\n\n\n\n<p>The <a href=\"https:\/\/blog.ethereum.org\/2016\/06\/17\/critical-update-re-dao-vulnerability\" target=\"_blank\" rel=\"nofollow noopener\">2016 DAO exploit<\/a> is a historic example associated with reentrancy. The incident affected a large amount of ether and contributed to the chain split that resulted in Ethereum and Ethereum Classic.<\/p>\n\n\n\n<p>Projects often audit and test their contracts before deployment. Audits can identify potential problems, but they cannot prove that a contract is completely secure.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Upgrade and Admin Risk<\/h3>\n\n\n\n<p>Some contracts are designed to be immutable, while others use upgrade mechanisms or privileged roles. Upgradeability can help developers fix problems, but it also creates trust assumptions. Users should understand who can change the logic, pause the system or modify important parameters.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Token-Approval Risk<\/h3>\n\n\n\n<p>An approval can allow a contract or address to spend up to a specified amount of a token. Excessive or unnecessary allowances increase exposure if the spender is malicious or compromised.<\/p>\n\n\n\n<p>Before approving access, check:<\/p>\n\n\n\n<ul>\n<li>Which token is being approved?<\/li>\n\n\n\n<li>Which contract or address will receive permission?<\/li>\n\n\n\n<li>What is the maximum amount it can spend?<\/li>\n<\/ul>\n\n\n\n<p>Review existing allowances periodically and revoke permissions that are no longer needed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Oracle and Dependency Risk<\/h3>\n\n\n\n<p>A contract may behave exactly as coded and still produce a harmful outcome because an oracle, another contract or an off-chain service failed. Evaluate the important dependencies behind a protocol, not only its main contract.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Phishing and Fake dApps<\/h3>\n\n\n\n<p>A malicious website can imitate a legitimate dApp and trick users into connecting a wallet or signing a harmful transaction. Use verified links, check the website address and be cautious with links from social media, messaging apps, emails or unexpected messages.<\/p>\n\n\n\n<p>Never enter a seed phrase into a dApp to \u201cconnect,\u201d \u201cverify\u201d or \u201crecover\u201d a wallet. A legitimate dApp does not need the seed phrase.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Irreversible Transactions<\/h3>\n\n\n\n<p>Confirmed blockchain transactions generally cannot be cancelled by a central authority. If a user signs a malicious transaction and funds are transferred, recovery may be difficult or impossible.<br><br>Also Read: <a href=\"https:\/\/mudrex.com\/learn\/ethereum-liquidation-map\/\">ETH Liquidation Map<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use Ethereum Smart Contracts More Safely<\/h2>\n\n\n\n<p>You do not need to be a Solidity developer to adopt safer habits:<\/p>\n\n\n\n<ul>\n<li>Use verified project links instead of unexpected links from messages or social posts.<\/li>\n\n\n\n<li>Confirm the website, network and contract address where possible.<\/li>\n\n\n\n<li>Read wallet transaction details before signing, including the asset, amount and recipient.<\/li>\n\n\n\n<li>Review the spender and allowance in token-approval requests.<\/li>\n\n\n\n<li>Revoke permissions that are no longer needed.<\/li>\n\n\n\n<li>Pay attention to gas estimates and unexpected transaction behaviour.<\/li>\n\n\n\n<li>Treat audits as supporting evidence, not a guarantee.<\/li>\n\n\n\n<li>Be cautious with contracts that have little history or public information.<\/li>\n\n\n\n<li>Consider using a hardware wallet for larger or long-term holdings.<\/li>\n\n\n\n<li>Separate a day-to-day dApp wallet from wallets holding significant balances.<\/li>\n\n\n\n<li>Never share or enter a seed phrase to connect to a dApp.<\/li>\n<\/ul>\n\n\n\n<p>If a transaction or permission request does not make sense, stop and investigate it before signing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Ethereum smart contracts are the programmable layer behind much of the Ethereum ecosystem. They make token swaps, lending, NFTs, community governance and oracle-powered applications possible. dApps give users a convenient interface for accessing this functionality, while smart contracts handle the on-chain logic.<\/p>\n\n\n\n<p>However, smart contracts are not automatically safe. Code bugs, risky permissions, upgrade controls, compromised dependencies and fake interfaces can all create risk. The safest approach is to understand what a transaction will do, verify where it is going and avoid approving permissions you do not understand.<\/p>\n\n\n\n<p>To keep learning, explore <a href=\"https:\/\/mudrex.com\/learn\/\">Mudrex Learn<\/a> and follow the <a href=\"https:\/\/www.youtube.com\/@Mudrex\" target=\"_blank\" rel=\"nofollow noopener\">Mudrex YouTube channel<\/a> for practical crypto education. Always assess product, custody, market and protocol risks before committing funds.<\/p>\n\n\n\n<div class=\"wp-block-essential-blocks-button\"><div class=\"eb-parent-wrapper eb-parent-eb-button-58gap \"><div class=\"eb-button-wrapper eb-button-alignment eb-button-58gap\"><div class=\"eb-button\"><a class=\"eb-button-anchor\" href=\"https:\/\/mudrex.go.link\/seo-blogs\" rel=\"noopener nofollow\" target=\"_blank\">Trade ETH Now<\/a><\/div><\/div><\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1787165956015\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>What is an Ethereum smart contract?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A Ethereum smart contract is a program deployed at an Ethereum address. It contains functions and state that execute according to its code when users or other contracts interact with it.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787165963688\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>What is an Ethereum dApp?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A dApp is an application that uses blockchain functionality, often through smart contracts. It may also use a conventional frontend, wallet connection and off-chain services.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787165964587\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Is a dApp the same as a smart contract?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. The smart contract is the on-chain code. A dApp is the broader application used to access one or more contracts and related services.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787166002045\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Who executes Ethereum smart contracts?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Ethereum nodes execute smart-contract bytecode in the EVM. Validators participate in consensus and help determine the canonical blockchain state.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787165965777\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Does every smart-contract interaction require gas?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. Read-only calls that do not change Ethereum state can be queried without an on-chain transaction. State-changing writes require a transaction and gas.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787165966893\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Can Ethereum smart contracts be changed?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>It depends on the design. Some contracts are immutable, while upgradeable systems can change logic through defined mechanisms. Users should check who controls upgrades and permissions.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787165967892\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Are Ethereum smart contracts automatically safe?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. Contracts can contain bugs or flawed economic logic and may depend on oracles, admins or other contracts. Security audits can reduce uncertainty but cannot guarantee safety.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1787165969119\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>What is a token approval?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A token approval authorises a contract or address to spend up to an allowed amount of a token. Review the spender and allowance before approving it.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1788115948825\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What is Reentracy attack?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Reentrancy occurs when a contract is called again before it has completed an earlier operation and updated its state. In a vulnerable design, this may allow an action such as a withdrawal to repeat unexpectedly.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\"><\/h3>\n","protected":false},"excerpt":{"rendered":"<p>Introduction If you have used Ethereum to swap tokens, buy an NFT or deposit crypto into a decentralised finance (DeFi) protocol, you have probably interacted with a smart contract. You may not have seen the contract itself\u2014you likely connected a wallet, selected an action and confirmed a transaction\u2014but smart-contract code handled the on-chain part of [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":88247,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1079],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks - Mudrex Learn<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks - Mudrex Learn\" \/>\n<meta property=\"og:description\" content=\"Introduction If you have used Ethereum to swap tokens, buy an NFT or deposit crypto into a decentralised finance (DeFi) protocol, you have probably interacted with a smart contract. You may not have seen the contract itself\u2014you likely connected a wallet, selected an action and confirmed a transaction\u2014but smart-contract code handled the on-chain part of [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/\" \/>\n<meta property=\"og:site_name\" content=\"Mudrex Learn\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-30T19:01:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-30T19:14:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Team Mudrex\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team Mudrex\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/\",\"url\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/\",\"name\":\"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks - Mudrex Learn\",\"isPartOf\":{\"@id\":\"https:\/\/mudrex.com\/learn\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp\",\"datePublished\":\"2026-08-30T19:01:34+00:00\",\"dateModified\":\"2026-08-30T19:14:09+00:00\",\"author\":{\"@id\":\"https:\/\/mudrex.com\/learn\/#\/schema\/person\/4bda31bed76d73b53999ff9fa01b7dde\"},\"breadcrumb\":{\"@id\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#primaryimage\",\"url\":\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp\",\"contentUrl\":\"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp\",\"width\":1200,\"height\":675,\"caption\":\"Ethereum smart contracts connect wallets, dApps and on-chain execution.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mudrex.com\/learn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mudrex.com\/learn\/#website\",\"url\":\"https:\/\/mudrex.com\/learn\/\",\"name\":\"Mudrex Learn\",\"description\":\"Crypto Education Simplified.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mudrex.com\/learn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/mudrex.com\/learn\/#\/schema\/person\/4bda31bed76d73b53999ff9fa01b7dde\",\"name\":\"Team Mudrex\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mudrex.com\/learn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/23fbaabe167fafa454bbb1a14d44b087?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/23fbaabe167fafa454bbb1a14d44b087?s=96&d=mm&r=g\",\"caption\":\"Team Mudrex\"},\"url\":\"https:\/\/mudrex.com\/learn\/author\/team-mudrex\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks - Mudrex Learn","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:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/","og_locale":"en_US","og_type":"article","og_title":"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks - Mudrex Learn","og_description":"Introduction If you have used Ethereum to swap tokens, buy an NFT or deposit crypto into a decentralised finance (DeFi) protocol, you have probably interacted with a smart contract. You may not have seen the contract itself\u2014you likely connected a wallet, selected an action and confirmed a transaction\u2014but smart-contract code handled the on-chain part of [&hellip;]","og_url":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/","og_site_name":"Mudrex Learn","article_published_time":"2026-08-30T19:01:34+00:00","article_modified_time":"2026-08-30T19:14:09+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp","type":"image\/webp"}],"author":"Team Mudrex","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Team Mudrex","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/","url":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/","name":"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks - Mudrex Learn","isPartOf":{"@id":"https:\/\/mudrex.com\/learn\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#primaryimage"},"image":{"@id":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#primaryimage"},"thumbnailUrl":"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp","datePublished":"2026-08-30T19:01:34+00:00","dateModified":"2026-08-30T19:14:09+00:00","author":{"@id":"https:\/\/mudrex.com\/learn\/#\/schema\/person\/4bda31bed76d73b53999ff9fa01b7dde"},"breadcrumb":{"@id":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#primaryimage","url":"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp","contentUrl":"https:\/\/mudrex.com\/learn\/wp-content\/uploads\/2026\/08\/ethereum-smart-contracts-dapps-featured-1.webp","width":1200,"height":675,"caption":"Ethereum smart contracts connect wallets, dApps and on-chain execution."},{"@type":"BreadcrumbList","@id":"https:\/\/mudrex.com\/learn\/ethereum-smart-contracts-dapps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mudrex.com\/learn\/"},{"@type":"ListItem","position":2,"name":"Ethereum Smart Contracts and dApps: How They Work, Use Cases and Risks"}]},{"@type":"WebSite","@id":"https:\/\/mudrex.com\/learn\/#website","url":"https:\/\/mudrex.com\/learn\/","name":"Mudrex Learn","description":"Crypto Education Simplified.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mudrex.com\/learn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mudrex.com\/learn\/#\/schema\/person\/4bda31bed76d73b53999ff9fa01b7dde","name":"Team Mudrex","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mudrex.com\/learn\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/23fbaabe167fafa454bbb1a14d44b087?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23fbaabe167fafa454bbb1a14d44b087?s=96&d=mm&r=g","caption":"Team Mudrex"},"url":"https:\/\/mudrex.com\/learn\/author\/team-mudrex\/"}]}},"_links":{"self":[{"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/posts\/87934"}],"collection":[{"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/comments?post=87934"}],"version-history":[{"count":3,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/posts\/87934\/revisions"}],"predecessor-version":[{"id":88255,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/posts\/87934\/revisions\/88255"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/media\/88247"}],"wp:attachment":[{"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/media?parent=87934"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/categories?post=87934"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mudrex.com\/learn\/wp-json\/wp\/v2\/tags?post=87934"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}