{"id":470,"date":"2025-10-27T08:02:57","date_gmt":"2025-10-27T08:02:57","guid":{"rendered":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/"},"modified":"2025-10-27T08:02:57","modified_gmt":"2025-10-27T08:02:57","slug":"why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about","status":"publish","type":"post","link":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/","title":{"rendered":"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About"},"content":{"rendered":"<p>Whoa! This has been bugging me for months. The more I dig into how people actually move value across chains, the more obvious the friction becomes. Transactions that should feel instant instead cost an arm and a leg, and worse \u2014 sometimes your carefully planned trade gets eaten by some sneaky robot. Initially I thought high gas was just a price problem, but then I realized it&#8217;s a UX, economic, and security problem all at once.<\/p>\n<p>Really? Yep. Layered on top of complexity is a weird game theory puzzle where miners or validators \u2014 or whoever orders transactions \u2014 can skim value. That&#8217;s MEV, max extractable value, and it affects everyone from small traders to liquidity providers. On one hand it&#8217;s a technical inevitability; on the other, it&#8217;s a solvable engineering and product design challenge. Hmm&#8230; somethin&#8217; about treating transactions like simple messages glosses over how they&#8217;re actually sequenced and monetized.<\/p>\n<p>Here&#8217;s the thing. Wallet design sits at the intersection of three messy problems: gas optimization, multi-chain routing, and MEV protection. They aren&#8217;t independent. Change one and the others react like a living system. My instinct said &#8220;solve one, ship it&#8221;\u2014but that rarely works. So let&#8217;s walk through what matters, what works, and what you can do right now without needing to be a full-time blockchain nerd.<\/p>\n<p>Short primer first. Gas optimization is about lowering the effective cost of a transaction. Multi-chain wallet support is about making that experience cohesive across networks. MEV protection is about ensuring the transaction executes as intended without being re-ordered or sandwiched. All three influence each other in subtle ways.<\/p>\n<p>Fast practical tip: don&#8217;t assume the cheapest chain equals lowest cost. Fees aren\u2019t just the base gas price; they include slippage, bridge costs, and potential MEV losses. On many DEX trades, MEV costs can exceed gas itself. So a &#8220;cheap&#8221; L1 can still be expensive after you factor everything in.<\/p>\n<p>Gas mechanics matter. Post EIP-1559 changed things, but it didn&#8217;t eliminate volatility. Base fee burns stabilize some things, though priority fees are still a market. If you&#8217;re using a wallet that auto-suggests gas without context, you&#8217;re getting half the story. A smart wallet should offer both quick modes and a transparency mode that shows the expected execution window and MEV risk. I&#8217;m biased, but that transparency is a differentiator.<\/p>\n<p>Batching and meta-transactions move the needle. Aggregating user operations or using relayers can amortize gas over many users. That sounds simple. In practice it&#8217;s not\u2014because batching delays execution windows and can increase MEV exposure unless you route through a private bundler. Actually, wait\u2014let me rephrase that: batching helps costs but can hurt front-run risk if you publish everything publicly.<\/p>\n<p>Private relays and bundlers (yes, Flashbots-style approaches) are a big deal. They let you submit transactions directly to block producers or validators instead of mempools where bots lurk. On the plus side you often avoid sandwich attacks and front-running. On the negative side you rely on a smaller set of actors\u2014so there&#8217;s a centralization trade-off. On the fence? Same. On one hand you reduce MEV; though actually you concentrate trust.<\/p>\n<p>Multi-chain wallets make this trickier. Different chains have different RPC landscapes, mempool behaviors, and bundling options. Some L2s have optimistic sequencing. Some have sequencers that are more or less private. A wallet that offers a consistent interface needs to abstract these differences without lying about them. That means showing users the trade-offs instead of hiding them under &#8220;max speed&#8221; buttons.<\/p>\n<p>Check this out\u2014<\/p>\n<img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&#038;h=400&#038;fit=crop&#038;crop=center\" alt=\"Illustration: transactions flowing through public mempool, private relayer, and direct bundle\" \/>\n<p>\u2014and by the way, a practical move for users is to pick a wallet that gives optional private submission and gas transparency. If you want something to try, take a look at <a href=\"https:\/\/rabbys.at\/\">rabby wallet<\/a> and see how it layers UX over multi-chain operations. I&#8217;m not advertising\u2014just saying: when a wallet makes the plumbing visible, you can make smarter choices.<\/p>\n<h2>How to think about gas optimization without getting lost in specs<\/h2>\n<p>First, choose the right chain and timing. Short transactions during low-demand windows cost less. Sounds obvious. But traders rarely schedule trades by time-of-day\u2014except they should sometimes. Price movements matter more than raw gas numbers.<\/p>\n<p>Second, use batching where it aligns with your risk model. For protocol builders, bundlers and paymasters (relayers that sponsor gas) are nice. For end users, meta-transactions let the dApp sponsor gas or let gas be paid in tokens. However, pay attention\u2014if your relayer is compromised, they could censor or reorder your ops.<\/p>\n<p>Third, prefer post-compile optimizations when possible. Reducing opcodes in smart contracts, optimizing calldata, and using EVM-native libraries can lower gas consumption per tx. These are developer-level moves, yes, but they reduce systemic cost for everyone.<\/p>\n<p>Fourth, adopt L2s and rollups smartly. Not every asset is worth bridging. Sometimes on-chain liquidity for a rare token exists only on L1, and routing through an L2 adds slippage and bridge risk. Bridge less, route smartly.<\/p>\n<p>Fifth, configure gas manually when you know what you&#8217;re doing. Wallets that let you set max fee and priority fee explicitly are empowering. But please, folks, don&#8217;t leave priority fee at &#8220;auto&#8221; if you care about execution ordering in competitive trades.<\/p>\n<h2>MEV protection \u2014 the practical slices<\/h2>\n<p>MEV is more than sandwich attacks. There&#8217;s backrunning, liquidation frontrunning, and even time-band arbitrage. Short version: think like an adversary for a minute. Who benefits if your tx is visible? Then assume they&#8217;ll try to extract that value.<\/p>\n<p>Private transaction submission is the simplest user-level defense. Submit via a private relay or a bundler. It cuts off the bots in the public mempool. But again: you trade openness for reduced attacker surface. There&#8217;s no free lunch.<\/p>\n<p>Use transaction bundling when your action depends on a specific ordering. If you need to do A then B atomically, bundle them so the pair executes in the same block. Wallets that expose bundling to users (or dApps that offer it) are underrated.<\/p>\n<p>Limit slippage and add tombstones. Use tight slippage tolerances on DEXs but be realistic\u2014if your order can&#8217;t hit the tolerance, it will fail. Some traders set a small &#8220;insurance&#8221; fee to the miner to prioritize correctly, instead of leaving margin for MEV exploitation.<\/p>\n<p>Account abstraction and smart contract wallets offer interesting defenses. They let you specify execution policies (rate limits, allowed relayers, etc.) and can gate operations. But they increase complexity and the attack surface if misconfigured.<\/p>\n<h2>Wallet design trade-offs \u2014 what&#8217;s good UX look like?<\/h2>\n<p>Good UX doesn&#8217;t hide the hard choices. It frames them. A wallet should show: estimated gas, MEV risk (low\/medium\/high with a quick explainer), and alternative submission paths. Throw in an expert mode and a clear default for casual users.<\/p>\n<p>For multi-chain support, maintain consistent affordances: the same gas slider, the same &#8220;submit privately&#8221; toggle, consistent error handling. Weirdly, users are more forgiving of fees if they understand them. So display the full cost: gas + expected MEV impact + bridge fees.<\/p>\n<p>Also, offer rollbacks where possible. Not every chain can do it, but some wallets can auto-simulate and cancel if execution looks adversarial. Simulations are cheap relative to a failed or exploited trade, and should be part of the default flow.<\/p>\n<p>One practical caveat: too many options creates paralysis. The trick is progressive disclosure\u2014defaults for most, depth for power users. Make transparency the default, but keep the path from zero to expert short and discoverable.<\/p>\n<div class=\"faq\">\n<h2>Common questions<\/h2>\n<div class=\"faq-item\">\n<h3>How can I minimize gas costs right now?<\/h3>\n<p>Time your trades, use L2s where liquidity supports it, batch when possible, and pick wallets that surface gas settings. Also, watch for network congestion and avoid busy blocks for non-urgent trades.<\/p>\n<\/div>\n<div class=\"faq-item\">\n<h3>Is private transaction submission safe?<\/h3>\n<p>It&#8217;s safer against public mempool bots, yes, but it centralizes trust to the relay or bundler. Balance the risk by choosing reputable services and diversifying submission paths for high-value transactions.<\/p>\n<\/div>\n<div class=\"faq-item\">\n<h3>Do multi-chain wallets handle MEV for me?<\/h3>\n<p>Some provide protections or integration with private relays; others don&#8217;t. Always check the wallet&#8217;s documentation and whether it exposes private submission, bundling, or simulation tooling. And, I&#8217;m not 100% sure about every wallet\u2014so test small first.<\/p>\n<\/div>\n<\/div>\n<p><!--wp-post-meta--><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Whoa! This has been bugging me for months. The more I dig into how people actually move value across chains, the more obvious the friction becomes. Transactions that should feel instant instead cost an arm and a leg, and worse \u2014 sometimes your carefully planned trade gets eaten by some sneaky robot. Initially I thought&#8230;  <a href=\"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/\" class=\"more-link\" title=\"Read Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About\">Read more &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-470","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About - Lisa R Howard PLLC<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About - Lisa R Howard PLLC\" \/>\n<meta property=\"og:description\" content=\"Whoa! This has been bugging me for months. The more I dig into how people actually move value across chains, the more obvious the friction becomes. Transactions that should feel instant instead cost an arm and a leg, and worse \u2014 sometimes your carefully planned trade gets eaten by some sneaky robot. Initially I thought... Read more &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/\" \/>\n<meta property=\"og:site_name\" content=\"Lisa R Howard PLLC\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-27T08:02:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center\" \/>\n<meta name=\"author\" content=\"lisahoward\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"lisahoward\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/\"},\"author\":{\"name\":\"lisahoward\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/#\\\/schema\\\/person\\\/1bfc009bf88fa8655facab6fb588ca5f\"},\"headline\":\"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About\",\"datePublished\":\"2025-10-27T08:02:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/\"},\"wordCount\":1352,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/\",\"url\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/\",\"name\":\"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About - Lisa R Howard PLLC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center\",\"datePublished\":\"2025-10-27T08:02:57+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/#\\\/schema\\\/person\\\/1bfc009bf88fa8655facab6fb588ca5f\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#primaryimage\",\"url\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center\",\"contentUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/#website\",\"url\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/\",\"name\":\"Lisa R Howard PLLC\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/#\\\/schema\\\/person\\\/1bfc009bf88fa8655facab6fb588ca5f\",\"name\":\"lisahoward\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e34e890d2092595bd906cc95dd257fc98d4b68cb4544a524465b697062db9a66?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e34e890d2092595bd906cc95dd257fc98d4b68cb4544a524465b697062db9a66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e34e890d2092595bd906cc95dd257fc98d4b68cb4544a524465b697062db9a66?s=96&d=mm&r=g\",\"caption\":\"lisahoward\"},\"sameAs\":[\"http:\\\/\\\/localhost\\\/lisahoward\"],\"url\":\"https:\\\/\\\/fire.h50.us\\\/~lisahoward\\\/author\\\/lisahoward\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About - Lisa R Howard PLLC","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About - Lisa R Howard PLLC","og_description":"Whoa! This has been bugging me for months. The more I dig into how people actually move value across chains, the more obvious the friction becomes. Transactions that should feel instant instead cost an arm and a leg, and worse \u2014 sometimes your carefully planned trade gets eaten by some sneaky robot. Initially I thought... Read more &raquo;","og_url":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/","og_site_name":"Lisa R Howard PLLC","article_published_time":"2025-10-27T08:02:57+00:00","og_image":[{"url":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center","type":"","width":"","height":""}],"author":"lisahoward","twitter_card":"summary_large_image","twitter_misc":{"Written by":"lisahoward","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#article","isPartOf":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/"},"author":{"name":"lisahoward","@id":"https:\/\/fire.h50.us\/~lisahoward\/#\/schema\/person\/1bfc009bf88fa8655facab6fb588ca5f"},"headline":"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About","datePublished":"2025-10-27T08:02:57+00:00","mainEntityOfPage":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/"},"wordCount":1352,"commentCount":0,"image":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#primaryimage"},"thumbnailUrl":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/","url":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/","name":"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About - Lisa R Howard PLLC","isPartOf":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#primaryimage"},"image":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#primaryimage"},"thumbnailUrl":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center","datePublished":"2025-10-27T08:02:57+00:00","author":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/#\/schema\/person\/1bfc009bf88fa8655facab6fb588ca5f"},"breadcrumb":{"@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#primaryimage","url":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center","contentUrl":"https:\/\/images.unsplash.com\/photo-1639762681485-074b7f938ba0?w=400&h=400&fit=crop&crop=center"},{"@type":"BreadcrumbList","@id":"https:\/\/fire.h50.us\/~lisahoward\/why-gas-mev-and-multi-chain-wallets-are-the-ux-bottleneck-no-one-talks-about\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fire.h50.us\/~lisahoward\/"},{"@type":"ListItem","position":2,"name":"Why Gas, MEV, and Multi-Chain Wallets Are the UX Bottleneck No One Talks About"}]},{"@type":"WebSite","@id":"https:\/\/fire.h50.us\/~lisahoward\/#website","url":"https:\/\/fire.h50.us\/~lisahoward\/","name":"Lisa R Howard PLLC","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fire.h50.us\/~lisahoward\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/fire.h50.us\/~lisahoward\/#\/schema\/person\/1bfc009bf88fa8655facab6fb588ca5f","name":"lisahoward","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e34e890d2092595bd906cc95dd257fc98d4b68cb4544a524465b697062db9a66?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e34e890d2092595bd906cc95dd257fc98d4b68cb4544a524465b697062db9a66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e34e890d2092595bd906cc95dd257fc98d4b68cb4544a524465b697062db9a66?s=96&d=mm&r=g","caption":"lisahoward"},"sameAs":["http:\/\/localhost\/lisahoward"],"url":"https:\/\/fire.h50.us\/~lisahoward\/author\/lisahoward\/"}]}},"_links":{"self":[{"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/posts\/470","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/comments?post=470"}],"version-history":[{"count":0,"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/posts\/470\/revisions"}],"wp:attachment":[{"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/media?parent=470"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/categories?post=470"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fire.h50.us\/~lisahoward\/wp-json\/wp\/v2\/tags?post=470"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}