deposit.ts 1.85 KB
import { task, types } from 'hardhat/config'
import { providers, utils, Wallet } from 'ethers'
import { CrossChainMessenger } from '@eth-optimism/sdk'
import { getChainId } from '@eth-optimism/core-utils'

task('deposit', 'Deposits funds onto Optimism.')
  .addParam('to', 'Recipient address.', null, types.string)
  .addParam('amountEth', 'Amount in ETH to send.', null, types.string)
  .addParam('l1ProviderUrl', '', process.env.L1_PROVIDER_URL, types.string)
  .addParam('l2ProviderUrl', '', process.env.L2_PROVIDER_URL, types.string)
  .addParam('privateKey', '', process.env.PRIVATE_KEY, types.string)
  .setAction(async (args) => {
    const { to, amountEth, l1ProviderUrl, l2ProviderUrl, privateKey } = args
    if (!l1ProviderUrl || !l2ProviderUrl || !privateKey) {
      throw new Error(
        'You must define --l1-provider-url, --l2-provider-url, --private-key in your environment.'
      )
    }

    const l1Provider = new providers.JsonRpcProvider(l1ProviderUrl)
    const l2Provider = new providers.JsonRpcProvider(l2ProviderUrl)
    const l1Wallet = new Wallet(privateKey, l1Provider)
    const messenger = new CrossChainMessenger({
      l1SignerOrProvider: l1Wallet,
      l2SignerOrProvider: l2Provider,
      l1ChainId: await getChainId(l1Provider),
      l2ChainId: await getChainId(l2Provider),
    })

    const amountWei = utils.parseEther(amountEth)
    console.log(`Depositing ${amountEth} ETH to ${to}...`)
    const tx = await messenger.depositETH(amountWei, {
      recipient: to,
    })
    console.log(`Got TX hash ${tx.hash}. Waiting...`)
    await tx.wait()

    const l1WalletOnL2 = new Wallet(privateKey, l2Provider)
    await l1WalletOnL2.sendTransaction({
      to,
      value: utils.parseEther(amountEth),
    })

    const balance = await l2Provider.getBalance(to)
    console.log('Funded account balance', balance.toString())
    console.log('Done.')
  })