{"id":61,"date":"2026-01-19T15:30:00","date_gmt":"2026-01-19T10:00:00","guid":{"rendered":"https:\/\/craqly.com\/?p=57"},"modified":"2026-07-22T12:19:46","modified_gmt":"2026-07-22T12:19:46","slug":"blockchain-developer-interview-questions","status":"publish","type":"post","link":"https:\/\/craqly.com\/blog\/blockchain-developer-interview-questions\/","title":{"rendered":"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi &#038; Consensus Questions"},"content":{"rendered":"<p>Blockchain developer roles are strange to interview for. The field is young enough that no two companies run the same process, and many hiring managers are themselves figuring out what &#8220;senior blockchain engineer&#8221; means. I&#8217;ve talked to engineers who cleared interviews at Chainlink, Consensys, and a couple of DeFi protocols, and the pattern I see: depth on smart contract security and gas optimization matters far more than breadth on Web3 trivia.<\/p>\n<p>This guide covers what actually gets asked, roughly organized by the three layers interviewers probe: protocol fundamentals, smart contract engineering, and practical dApp development.<\/p>\n<h2>Blockchain fundamentals: the questions candidates underestimate<\/h2>\n<p>Most candidates expect fundamentals to be easy warm-up questions. They&#8217;re not. At Consensys and similar firms, the fundamentals round is where a lot of mid-level candidates get filtered out, because the questions are deceptively specific.<\/p>\n<p>Questions you should be able to answer cold:<\/p>\n<ul>\n<li>Explain the difference between proof of work and proof of stake at the validator incentive level, not just the &#8220;energy usage&#8221; level.<\/li>\n<li>What&#8217;s the difference between the UTXO model (Bitcoin) and the account model (Ethereum), and why does it matter for transaction composability?<\/li>\n<li>How does Ethereum&#8217;s EIP-1559 fee mechanism change miner\/validator incentives compared to the old first-price auction?<\/li>\n<li>What is a Merkle Patricia Trie, and why does Ethereum use one for state storage?<\/li>\n<li>Explain finality: what&#8217;s the difference between probabilistic finality (Bitcoin) and economic finality (Ethereum PoS)?<\/li>\n<\/ul>\n<p>The Merkle Patricia Trie question trips up a lot of people. You don&#8217;t need to implement one from memory, but you should understand that it lets Ethereum efficiently prove state membership and compact storage across nodes. If you can&#8217;t explain why that matters for light clients, go read the <a href=\"https:\/\/ethereum.org\/en\/developers\/docs\/data-structures-and-encoding\/patricia-merkle-trie\/\" target=\"_blank\" rel=\"noopener noreferrer\">Ethereum documentation on the topic<\/a> before your next interview.<\/p>\n<h2>Solidity and smart contract questions<\/h2>\n<p>This is the core of most blockchain developer interviews at protocol companies. The questions here range from &#8220;explain how the EVM stack works&#8221; to live coding exercises on Remix or Hardhat. The specific topics that come up most often:<\/p>\n<p><strong>Gas optimization.<\/strong> Interviewers at DeFi protocols will ask you to look at a Solidity snippet and identify where gas is being wasted. Common patterns include unnecessary storage reads inside loops, using <code>uint256<\/code> vs. packed struct fields, and event emission costs. If you haven&#8217;t spent time on the <a href=\"https:\/\/docs.soliditylang.org\/en\/latest\/internals\/optimizer.html\" target=\"_blank\" rel=\"noopener noreferrer\">Solidity optimizer documentation<\/a>, do that.<\/p>\n<p><strong>Reentrancy vulnerabilities.<\/strong> The DAO hack in 2016 involved reentrancy. Nine years later, interviewers still open with reentrancy questions because it reveals whether you think in terms of the Checks-Effects-Interactions pattern or whether you write code that reads logically but fails in adversarial conditions. Be ready to write a vulnerable contract and then fix it.<\/p>\n<p><strong>Access control patterns.<\/strong> OpenZeppelin&#8217;s <code>Ownable<\/code> and <code>AccessControl<\/code> modules come up constantly. Know when to use role-based access vs. simple ownership, and understand why multisig wallets matter for production contract administration.<\/p>\n<p><strong>Upgradeable contracts.<\/strong> Proxy patterns (transparent proxy, UUPS) are common in DeFi, and they&#8217;re also genuinely confusing. Many candidates claim to know upgradeable contracts but can&#8217;t explain storage collision risks between proxy and implementation contracts.<\/p>\n<h2>Web3 and dApp integration<\/h2>\n<p>For front-end-leaning blockchain roles, expect questions on wallet integration (ethers.js vs. web3.js vs. viem in 2026), handling transaction state in the UI (pending, confirmed, failed), and dealing with RPC rate limits from Infura or Alchemy.<\/p>\n<p>Layer 2 questions are increasingly common. Know the difference between optimistic rollups (Optimism, Arbitrum) and ZK rollups (zkSync, StarkNet) at a conceptual level. You don&#8217;t need to have deployed on all of them, but you should understand the fraud proof vs. validity proof distinction and why it affects finality time.<\/p>\n<p>MEV (maximal extractable value) questions show up more at DeFi protocol interviews than at enterprise blockchain shops. If the role involves protocol economics, expect a question like: &#8220;How would you protect a protocol&#8217;s users from sandwich attacks?&#8221;<\/p>\n<h2>Security questions that separate strong candidates<\/h2>\n<p>Beyond reentrancy, interviewers at security-focused companies ask about:<\/p>\n<ul>\n<li>Oracle manipulation attacks and how protocols like Chainlink&#8217;s price feeds or Uniswap TWAP oracles mitigate them<\/li>\n<li>Integer overflow before Solidity 0.8 (automatic revert after 0.8, SafeMath before)<\/li>\n<li>Front-running and commit-reveal schemes as a mitigation<\/li>\n<li>Flash loan attack mechanics, not the &#8220;how to use a flash loan&#8221; angle but &#8220;how an attacker uses one to manipulate a protocol&#8217;s state in a single transaction&#8221;<\/li>\n<\/ul>\n<p>I don&#8217;t have solid data on what percentage of blockchain developer interviews include a live security audit exercise, but from the conversations I&#8217;ve had, it&#8217;s common enough that you should practice reading unfamiliar Solidity code and narrating potential vulnerabilities out loud.<\/p>\n<h2>What interviewers say they actually want<\/h2>\n<p>According to LinkedIn&#8217;s <a href=\"https:\/\/economicgraph.linkedin.com\/research\" target=\"_blank\" rel=\"noopener noreferrer\">Economic Graph research<\/a>, blockchain-related job postings have fluctuated significantly with market cycles, but the skills that persist across cycles (security, protocol architecture, cross-chain interoperability) are the ones that matter for long-term career positioning.<\/p>\n<p>The engineers who do well in these interviews share one quality: they treat blockchain as a constrained execution environment with specific adversarial properties, not as a buzzword stack. If your answers reference economic incentives, gas costs, and failure modes rather than just &#8220;decentralization is good,&#8221; you&#8217;ll stand out from candidates who learned Web3 as a career pivot without digging into the underlying mechanics.<\/p>\n<p>One more thing worth knowing: most blockchain developer interviews will ask you to review code that has bugs in it. Not write perfect code from scratch, review someone else&#8217;s flawed code. Practice that more than you practice whiteboard problems.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.<\/p>\n","protected":false},"author":25,"featured_media":415,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"fifu_image_url":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","fifu_image_alt":"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi & Consensus Questions","footnotes":""},"categories":[3],"tags":[269,275,272,274,276,24,25,270,271,273],"class_list":["post-61","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-interview-questions","tag-blockchain-developer-interview-2026","tag-consensus-mechanisms","tag-defi-protocol-design","tag-ethereum-architecture","tag-gas-optimization","tag-interview","tag-interview-questions","tag-smart-contract-interview-questions","tag-solidity-security-interview","tag-web3-engineer-interview"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Blockchain Developer Interview Questions to Expect | Craqly<\/title>\n<meta name=\"description\" content=\"Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/craqly.com\/blog\/?p=61\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Blockchain Developer Interview Questions to Expect | Craqly\" \/>\n<meta property=\"og:description\" content=\"Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/craqly.com\/blog\/?p=61\" \/>\n<meta property=\"og:site_name\" content=\"Craqly Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-19T10:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-22T12:19:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop\" \/>\n<meta name=\"author\" content=\"Shekhar Babu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shekhar Babu\" \/>\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:\\\/\\\/craqly.com\\\/blog\\\/?p=61#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61\"},\"author\":{\"name\":\"Shekhar Babu\",\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/#\\\/schema\\\/person\\\/2d367ffecd1340d5b34c9fff026bf761\"},\"headline\":\"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi &#038; Consensus Questions\",\"datePublished\":\"2026-01-19T10:00:00+00:00\",\"dateModified\":\"2026-07-22T12:19:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61\"},\"wordCount\":914,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop\",\"keywords\":[\"blockchain developer interview 2026\",\"consensus mechanisms\",\"defi protocol design\",\"ethereum architecture\",\"gas optimization\",\"interview\",\"interview questions\",\"smart contract interview questions\",\"solidity security interview\",\"web3 engineer interview\"],\"articleSection\":[\"Interview Questions\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61\",\"url\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61\",\"name\":\"Blockchain Developer Interview Questions to Expect | Craqly\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop\",\"datePublished\":\"2026-01-19T10:00:00+00:00\",\"dateModified\":\"2026-07-22T12:19:46+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/#\\\/schema\\\/person\\\/2d367ffecd1340d5b34c9fff026bf761\"},\"description\":\"Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#primaryimage\",\"url\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop\",\"contentUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop\",\"caption\":\"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi & Consensus Questions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?p=61#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/craqly.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi &#038; Consensus Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/craqly.com\\\/blog\\\/\",\"name\":\"Craqly Blog\",\"description\":\"AI interview prep, career advice, company guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/craqly.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craqly.com\\\/blog\\\/#\\\/schema\\\/person\\\/2d367ffecd1340d5b34c9fff026bf761\",\"name\":\"Shekhar Babu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65adfea7b83f8159b447d8e0245a7e47b930966daebf4377dea2f2e88cfb9a05?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65adfea7b83f8159b447d8e0245a7e47b930966daebf4377dea2f2e88cfb9a05?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65adfea7b83f8159b447d8e0245a7e47b930966daebf4377dea2f2e88cfb9a05?s=96&d=mm&r=g\",\"caption\":\"Shekhar Babu\"},\"description\":\"Shekhar Babu is an engineer on the Craqly team building the AI interview assistant. He writes about technical interview rounds and how candidates prepare for them.\",\"sameAs\":[\"https:\\\/\\\/in.linkedin.com\\\/in\\\/shekhar-t-09259314b\"],\"url\":\"https:\\\/\\\/craqly.com\\\/blog\\\/author\\\/shekhar-babu\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Blockchain Developer Interview Questions to Expect | Craqly","description":"Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.","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:\/\/craqly.com\/blog\/?p=61","og_locale":"en_US","og_type":"article","og_title":"Blockchain Developer Interview Questions to Expect | Craqly","og_description":"Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.","og_url":"https:\/\/craqly.com\/blog\/?p=61","og_site_name":"Craqly Blog","article_published_time":"2026-01-19T10:00:00+00:00","article_modified_time":"2026-07-22T12:19:46+00:00","og_image":[{"url":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","type":"","width":"","height":""}],"author":"Shekhar Babu","twitter_card":"summary_large_image","twitter_image":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","twitter_misc":{"Written by":"Shekhar Babu","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/craqly.com\/blog\/?p=61#article","isPartOf":{"@id":"https:\/\/craqly.com\/blog\/?p=61"},"author":{"name":"Shekhar Babu","@id":"https:\/\/craqly.com\/blog\/#\/schema\/person\/2d367ffecd1340d5b34c9fff026bf761"},"headline":"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi &#038; Consensus Questions","datePublished":"2026-01-19T10:00:00+00:00","dateModified":"2026-07-22T12:19:46+00:00","mainEntityOfPage":{"@id":"https:\/\/craqly.com\/blog\/?p=61"},"wordCount":914,"commentCount":0,"image":{"@id":"https:\/\/craqly.com\/blog\/?p=61#primaryimage"},"thumbnailUrl":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","keywords":["blockchain developer interview 2026","consensus mechanisms","defi protocol design","ethereum architecture","gas optimization","interview","interview questions","smart contract interview questions","solidity security interview","web3 engineer interview"],"articleSection":["Interview Questions"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/craqly.com\/blog\/?p=61#respond"]}]},{"@type":"WebPage","@id":"https:\/\/craqly.com\/blog\/?p=61","url":"https:\/\/craqly.com\/blog\/?p=61","name":"Blockchain Developer Interview Questions to Expect | Craqly","isPartOf":{"@id":"https:\/\/craqly.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/craqly.com\/blog\/?p=61#primaryimage"},"image":{"@id":"https:\/\/craqly.com\/blog\/?p=61#primaryimage"},"thumbnailUrl":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","datePublished":"2026-01-19T10:00:00+00:00","dateModified":"2026-07-22T12:19:46+00:00","author":{"@id":"https:\/\/craqly.com\/blog\/#\/schema\/person\/2d367ffecd1340d5b34c9fff026bf761"},"description":"Prepare for blockchain developer interviews with real questions on Solidity, gas optimization, DeFi, and security. Includes what interviewers actually care about.","breadcrumb":{"@id":"https:\/\/craqly.com\/blog\/?p=61#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/craqly.com\/blog\/?p=61"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/craqly.com\/blog\/?p=61#primaryimage","url":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","contentUrl":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=1200&h=600&fit=crop","caption":"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi & Consensus Questions"},{"@type":"BreadcrumbList","@id":"https:\/\/craqly.com\/blog\/?p=61#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/craqly.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Web3 Smart Contract Interview 2026: 30+ Solidity, DeFi &#038; Consensus Questions"}]},{"@type":"WebSite","@id":"https:\/\/craqly.com\/blog\/#website","url":"https:\/\/craqly.com\/blog\/","name":"Craqly Blog","description":"AI interview prep, career advice, company guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/craqly.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/craqly.com\/blog\/#\/schema\/person\/2d367ffecd1340d5b34c9fff026bf761","name":"Shekhar Babu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/65adfea7b83f8159b447d8e0245a7e47b930966daebf4377dea2f2e88cfb9a05?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/65adfea7b83f8159b447d8e0245a7e47b930966daebf4377dea2f2e88cfb9a05?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/65adfea7b83f8159b447d8e0245a7e47b930966daebf4377dea2f2e88cfb9a05?s=96&d=mm&r=g","caption":"Shekhar Babu"},"description":"Shekhar Babu is an engineer on the Craqly team building the AI interview assistant. He writes about technical interview rounds and how candidates prepare for them.","sameAs":["https:\/\/in.linkedin.com\/in\/shekhar-t-09259314b"],"url":"https:\/\/craqly.com\/blog\/author\/shekhar-babu\/"}]}},"_links":{"self":[{"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/posts\/61","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/comments?post=61"}],"version-history":[{"count":2,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/posts\/61\/revisions"}],"predecessor-version":[{"id":1104,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/posts\/61\/revisions\/1104"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/media\/415"}],"wp:attachment":[{"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/media?parent=61"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/categories?post=61"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/craqly.com\/blog\/wp-json\/wp\/v2\/tags?post=61"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}