Skip to content

0xsend/send-token-on-base

Repository files navigation

Send Token on L2

Deploying Send token to Base using Optimism Standard Bridge.

Deploying

Provide ETH to Send Deployer on Anvil

cast send --rpc-url http://localhost:8546 \
            --unlocked \
            --from 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 \
            0x647eb43401e13e995d89cf26cd87e68890ee3f89 \
            --value 10ether

Deploy SendToken on Anvil using forge create

forge create src/SendToken.sol:SendToken \
  --rpc-url http://localhost:8546 \
  --from 0x647eb43401e13e995d89cf26cd87e68890ee3f89 \
  --keystore ~/.foundry/keystores/send_deploye

Deploy SendToken on Anvil using forge script

forge script ./script/DeployOptimismSendToken.s.sol:DeployOptimismSendTokenScript \
  -vvvv \
  --rpc-url http://localhost:8546 \
  --sender 0x647eb43401e13e995d89cf26cd87e68890ee3f89 \
  --froms 0x647eb43401e13e995d89cf26cd87e68890ee3f89 \
  --keystores ~/.foundry/keystores/send_deployer

Foundry

Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.

Foundry consists of:

  • Forge: Ethereum testing framework (like Truffle, Hardhat and DappTools).
  • Cast: Swiss army knife for interacting with EVM smart contracts, sending transactions and getting chain data.
  • Anvil: Local Ethereum node, akin to Ganache, Hardhat Network.
  • Chisel: Fast, utilitarian, and verbose solidity REPL.

Documentation

https://book.getfoundry.sh/

Usage

Build

forge build

Test

forge test

Format

forge fmt

Gas Snapshots

forge snapshot

Anvil

anvil

Deploy

forge script script/Counter.s.sol:CounterScript --rpc-url <your_rpc_url> --private-key <your_private_key>

Cast

cast <subcommand>

Help

forge --help
anvil --help
cast --help

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published