From 2fd4d0e7c1672eec5ac55d6f1d892b795ef63f82 Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Tue, 14 Jul 2026 13:50:02 +1000 Subject: [PATCH] fix(site): refine mobile module showcase --- site/src/components/Landing.tsx | 2 +- site/src/snippets/abi.mdx | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/site/src/components/Landing.tsx b/site/src/components/Landing.tsx index 0678b32c..542040f0 100644 --- a/site/src/components/Landing.tsx +++ b/site/src/components/Landing.tsx @@ -414,7 +414,7 @@ export function Landing({

diff --git a/site/src/snippets/abi.mdx b/site/src/snippets/abi.mdx index 48aa945c..0a0a5081 100644 --- a/site/src/snippets/abi.mdx +++ b/site/src/snippets/abi.mdx @@ -11,22 +11,10 @@ const abi = Abi.from([ abi // ^? - - - - - - - - - - const data = AbiFunction.encodeData(abi, 'transfer', ['0x7099…', 1000n]) // @log: '0xa9059cbb000000…00000000000000003e8' const balance = AbiFunction.decodeResult(abi, 'balanceOf', '0x…0064') // ^? - - // @log: 100n ```