Skip to main content

Faucets

Network Faucets provide free Flow tokens for testing purposes, functioning like taps that dispense tokens. They are valuable tools for experimenting with Flow without the need to purchase tokens.

Flow Faucet

Flow Faucet is a dedicated tool that provides a seamless way to acquire small amounts of Flow tokens for testing and development purposes on the Flow blockchain's testnet environment.

Supported Networks

LearnWeb3 Flow Faucet

LearnWeb3 Flow Faucet is a community faucet tool that provides a seamless way to acquire small amounts of Flow tokens for testing and development purposes on the Flow blockchain's testnet environment.

Supported Networks

Using Flow Faucet

Funding Your Account

If you already have a Flow account, you can fund it directly from the Faucet's landing page. Simply paste the address of the account you want to fund, complete the CAPTCHA, and click "Fund Your Account."

fund-your-account

After a few seconds, you'll see your account's FLOW balance as a confirmation. Note, the Faucet will automatically determine if the address you paste is a Flow or EVM address and will fund the account accordingly.

Creating a Flow Account

Generate a Key Pair

To create a Flow-native account, you'll need to generate a key pair. You can do this most easily Flow CLI with the keys generate command


_10
flow keys generate

You'll receive a private key and a public key pair with default ECDSA_P256 signature and SHA3_256 hash algorithms.


_10
❯ flow keys generate
_10
_10
🔴️ Store private key safely and don't share with anyone!
_10
Private Key <PRIVATE_KEY>
_10
Public Key <PUBLIC_KEY>
_10
Mnemonic <MNEMONIC_PHRASE>
_10
Derivation Path m/44'/539'/0'/0/0
_10
Signature Algorithm ECDSA_P256

You can then use the public key to create a new Flow account on the Faucet. Copy the resulting public key for the next step.

Create a Flow-Native Account

From the Faucet's landing page, click on the "Create Account" button. You'll be prompted to enter your public key. Paste the public key you generated using the Flow CLI and click "Create Account."

tip

Know that there is a distinction between Flow native accounts and EVM accounts. Native accounts allow you to interact with the Cadence runtime, while EVM accounts are used for interacting with Flow's EVM. To create an EVM account, you can use EVM tooling to generate an Ethereum Owned Account (EOA) and simply fund the associated address. Alternatively, you can create an EVM account controlled by your Flow native account - known as a Cadence Owned Account (COA) - in which case you'll need a Flow native account and should continue with the steps below.

For more information interacting with EVM via COAs, see the Interacting With COAs documentation.

create-flow-account

You can then paste your public key into the input field, complete the CAPTCHA, and click "Create Account."

input-public-key

You'll be met with a confirmation screen, showing your Flow account address and the funded balance.

account-created

Using your Flow Account

Once your account has been created, you can add the account to your flow.json configuration file under the accounts attribute, like so:


_10
{
_10
"accounts": {
_10
"testnet-dev-account": {
_10
"address": "<YOUR_ADDRESS>",
_10
"key": "<PRIVATE_KEY>"
_10
}
_10
}
_10
}

warning

If you plan on using your flow.json in a production environment, you'll want to look at alternative methods to manage your keys more securely, at minimum using environment variables instead of storing your account private keys in plain text. See How to Securely Use CLI for more information on alternate key management strategies and how to configure them in your flow.json file.

After adding your account to your flow.json file, you're ready to use your account in your project. You can now deploy contracts, run transactions, and interact with the Flow blockchain using your new account.