Skip to content

Commit ab3e3ff

Browse files
authored
Merge pull request #158 from SocketDotTech/rookmate-patch-1
Recover test faucet on README.md
2 parents db0fa8a + 56e5980 commit ab3e3ff

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

+28
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,31 @@ Tests are run using the [Forge](https://github.com/foundry-rs/foundry/tree/maste
161161
```bash
162162
forge test
163163
```
164+
165+
## Test Token Faucets
166+
167+
Use these faucets to receive test tokens on Arbitrum Sepolia and Optimism Sepolia testnets. Each request will send you 1000 units of the requested tokens (adjusted for token decimals). These can be used on the demo projects deployed when adding a new chain.
168+
169+
### Faucet Addresses
170+
- Arbitrum Sepolia: [0x406c77947d91f965f09b458c07a66a033c3efea4](https://sepolia.arbiscan.io/address/0x406c77947d91f965f09b458c07a66a033c3efea4)
171+
- Optimism Sepolia: [0xbebfcb5a41836490c6449ce755c8dc361c175aa3](https://sepolia-optimism.etherscan.io/address/0xbebfcb5a41836490c6449ce755c8dc361c175aa3)
172+
173+
### How to Use
174+
175+
You can request tokens using Foundry's `cast` command. Here's an example using Arbitrum Sepolia:
176+
177+
```bash
178+
cast send 0x406c77947d91f965f09b458c07a66a033c3efea4 "getTokens(address,address[])" YOUR_ADDRESS "[TOKEN_ADDRESS]" --rpc-url https://sepolia-rollup.arbitrum.io/rpc --private-key $YOUR_PRIVATE_KEY
179+
```
180+
181+
#### Example
182+
To get test USDC on Arbitrum Sepolia:
183+
```bash
184+
cast send 0x406c77947d91f965f09b458c07a66a033c3efea4 "getTokens(address,address[])" YOUR_ADDRESS "[0x8537307810fC40F4073A12a38554D4Ff78EfFf41]" --rpc-url https://sepolia-rollup.arbitrum.io/rpc --private-key $YOUR_PRIVATE_KEY
185+
```
186+
187+
Replace:
188+
- `YOUR_ADDRESS` with your wallet address
189+
- `$YOUR_PRIVATE_KEY` with your private key environment variable
190+
191+
For Optimism Sepolia, use the Optimism faucet address and RPC URL: `https://sepolia.optimism.io`

0 commit comments

Comments
 (0)