Receive tokens

Testnet

Get Testnet Custom Gas Token On L1

Steps:

  1. Ensure you have some sepolia gas, otherwise go here for faucet.

  2. Invoke the drop function on etherscan here.

Or simply run this:

export L1_RPC_URL='http://88.99.30.186:8545'
export PRIVATE_KEY=''# input your own pk

cast send 0x274a6990dE7AaE06452cbEFa266c0C6a568F0D5B 'drop()' --private-key $PRIVATE_KEY -r $L1_RPC_URL

After that you can cross the claimed Custom Gas Token to L2 via entrance or follow the instructions here.

Get Testnet Soul Gas Token On L2

export SOUL_GAS_TOKEN=0x4200000000000000000000000000000000000800
export L2_RPC_URL='http://65.109.20.29:8545'
export PRIVATE_KEY=''# input your own pk

cast send --value 10ether $SOUL_GAS_TOKEN 'deposit()' --private-key $PRIVATE_KEY -r $L2_RPC_URL

Then if you import 0x4200000000000000000000000000000000000800 into metamask, you'll see your balance of Soul Gas Token.

Faucet

Go to https://swc-faucet.eth.sep.w3link.io/.

Devnet

Get Devnet Custom Gas Token On L1

Steps:

  1. Ensure you have some sepolia gas, otherwise go here for faucet.

  2. Invoke the drop function on etherscan here.

Or simply run this:

export L1_RPC_URL='http://88.99.30.186:8545'
export PRIVATE_KEY=''# input your own pk

cast send 0x274a6990dE7AaE06452cbEFa266c0C6a568F0D5B 'drop()' --private-key $PRIVATE_KEY -r $L1_RPC_URL

After that you can cross the claimed Custom Gas Token to L2 via entrance or follow the instructions here.

Get Devnet Soul Gas Token On L2

export SOUL_GAS_TOKEN=0x4200000000000000000000000000000000000800
export L2_RPC_URL='http://142.132.154.16:8545'
export PRIVATE_KEY=''# input your own pk

cast send --value 10ether $SOUL_GAS_TOKEN 'deposit()' --private-key $PRIVATE_KEY -r $L2_RPC_URL

Then if you import 0x4200000000000000000000000000000000000800 into metamask, you'll see your balance of Soul Gas Token.

Last updated