From 838a9ccb3bf13cbcfb7e6c91646736b07f8ca05c Mon Sep 17 00:00:00 2001 From: Alirezash90 <158351338+Alirezash90@users.noreply.github.com> Date: Sat, 4 Jul 2026 15:58:00 +0330 Subject: [PATCH] Update and rename README.md to Alireza Repo --- README.md => Alireza Repo | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) rename README.md => Alireza Repo (94%) diff --git a/README.md b/Alireza Repo similarity index 94% rename from README.md rename to Alireza Repo index d3d19bbbb..c44e06163 100644 --- a/README.md +++ b/Alireza Repo @@ -164,3 +164,23 @@ The core team will review opened PRs. The SLA is 2 weeks, generally on a first-c ## Storybook for UI components See `storybook/README.md` for details on local Storybook and component docs. +// Example: Sending a simple transaction on Base + +import { createWalletClient, http } from 'viem' +import { base } from 'viem/chains' + +const client = createWalletClient({ + chain: base, + transport: http() +}) + +async function sendTx() { + const hash = await client.sendTransaction({ + to: '0x0000000000000000000000000000000000000000', + value: 10000000000000000n // 0.01 ETH + }) + + console.log('Transaction hash:', hash) +} + +sendTx()