import { parseEther } from "viem"; import { SEPOLIA_CHAIN_ID, setupNearEthAdapter } from "../setup"; const run = async (): Promise => { const neareth = await setupNearEthAdapter(); const sepoliaWETH = "0xfff9976782d46cc05630d1f6ebab18b2324d6b14"; const ethAmount = parseEther("0.01"); const deposit = "0xd0e30db0"; await neareth.signAndSendTransaction({ to: sepoliaWETH, value: ethAmount, data: deposit, chainId: SEPOLIA_CHAIN_ID, }); }; run();