> ## Documentation Index
> Fetch the complete documentation index at: https://docs.topokki.exchange/llms.txt
> Use this file to discover all available pages before exploring further.

# Faucet

> Mint GIWA Sepolia test tokens for Topokki.

Topokki test tokens are free to mint on GIWA Sepolia. They are only for testing and have no value.

## Available tokens

| Token       | Decimals | Contract                                                                                             |
| ----------- | -------: | ---------------------------------------------------------------------------------------------------- |
| USDC (Test) |        6 | [`0x6b35…c62c`](https://sepolia-explorer.giwa.io/address/0x6b35178c07620365b05fe7c5b01c4f0c0e6dc62c) |
| USDT (Test) |        6 | [`0x2332…198b`](https://sepolia-explorer.giwa.io/address/0x2332873f45e22db8388445c66d7783eb8f3b198b) |
| WBTC (Test) |        8 | [`0x8733…fF79`](https://sepolia-explorer.giwa.io/address/0x8733dc4e5067c63838ee3963d36b29dcacf0ff79) |
| TTEST       |       18 | [`0x01a2…83d2`](https://sepolia-explorer.giwa.io/address/0x01a24d6f238c29d4bebc2ac40f56723f4f8e83d2) |

## Mint from the explorer

1. Open the token contract from the table above.
2. Connect a wallet that is on GIWA Sepolia.
3. Open the contract's **Write Contract** section.
4. Select `mint`.
5. Enter your wallet address as `to` and the raw amount you want to mint.
6. Confirm the transaction in your wallet.

## Example amounts

| Token       | Amount to mint |    Raw amount for `mint` |
| ----------- | -------------: | -----------------------: |
| USDC (Test) |     1,000 USDC |             `1000000000` |
| USDT (Test) |     1,000 USDT |             `1000000000` |
| WBTC (Test) |         1 WBTC |              `100000000` |
| TTEST       |    1,000 TTEST | `1000000000000000000000` |

## Mint with Foundry

If you use Foundry, call the public `mint(address,uint256)` method directly:

```bash theme={null}
cast send 0x01a24d6f238c29d4bebc2ac40f56723f4f8e83d2 \
  'mint(address,uint256)' 0xYourWalletAddress 1000000000000000000000 \
  --rpc-url https://sepolia-rpc.giwa.io/ \
  --private-key 0xYourTestnetPrivateKey
```

<Warning>
  Never use a wallet with real funds or a production private key for testnet transactions.
</Warning>

## WETH

WETH is not minted through this faucet. To get WETH, first obtain test ETH for GIWA Sepolia, then wrap it through the WETH contract.
