import dotenv from "dotenv"; import { SEPOLIA_CHAIN_ID, setupNearEthAdapter } from "./setup"; dotenv.config(); const run = async (): Promise => { const evm = await setupNearEthAdapter(); await evm.signAndSendTransaction({ // Sending to self. to: evm.address, // THIS IS ONE WEI! value: 1n, chainId: SEPOLIA_CHAIN_ID, }); }; run();