Skip to content

Commit

Permalink
Update faucet docs (#598)
Browse files Browse the repository at this point in the history
Co-authored-by: Chase Fleming <1666730+chasefleming@users.noreply.github.com>
  • Loading branch information
chasefleming and chasefleming authored Feb 27, 2024
1 parent 6928322 commit 00f4370
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ npx hardhat init

### Fund Your Wallet

Navigate to the [Crescendo PreviewNet Faucet](https://crescendo-faucet.onflow.org/fund-account). Paste in your wallet address to get receive $FLOW. Thi will allow your wallet address to deploy smart contracts.
Navigate to the [Crescendo PreviewNet Faucet](https://previewnet-faucet.onflow.org/fund-account). Paste in your wallet address to get receive $FLOW. Thi will allow your wallet address to deploy smart contracts.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Navigate to [Using EVM](../../../using.mdx) page to find the convenient button t
## Fund your Flow EVM account


Navigate to the Flow EVM Faucet, [Crescendo PreviewNet Faucet](https://crescendo-faucet.onflow.org/fund-account) to get Flow in order to deploy a smart contract
Navigate to the Flow EVM Faucet, [Crescendo PreviewNet Faucet](https://previewnet-faucet.onflow.org/fund-account) to get Flow in order to deploy a smart contract


## Deploying a Smart Contract using Remix
Expand Down
4 changes: 2 additions & 2 deletions docs/evm/Tools/faucets.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Faucets are tools that provide free tokens for use on test networks. They are es

FlowEVM supports developers with a testnet faucet, facilitating the testing and development of smart contracts in a risk-free environment. Access the testnet faucet at: [FlowEVM Testnet Faucet](https://testnet-faucet.onflow.org/)

## Crescendo Network
## Previewnet

The Crescendo network, part of the Flow ecosystem, also offers a faucet for developers. Access the Crescendo faucet at: [Crescendo Network Faucet](https://crescendo-faucet.onflow.org/)
The Crescendo Previewnet network, part of the Flow ecosystem, also offers a faucet for developers. Access the Crescendo Previewnet faucet at: [Previewnet Faucet](https://previewnet-faucet.onflow.org/)

## Mainnet

Expand Down
16 changes: 8 additions & 8 deletions docs/networks/flow-networks/accessing-crescendo.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Flow Crescendo
title: Flow Crescendo Previewnet
sidebar_position: 4
description: Guide to Crescendo access
---
Expand All @@ -10,12 +10,12 @@ It aims to balance similarity with Mainnet with being a productive development e
- Crescendo has significantly fewer validator nodes, resulting in a faster block rate compared to Mainnet
- Crescendo is configured with shorter epochs (about 12 hours, compared to 7 days on Mainnet)

## Accessing Flow Crescendo
## Accessing Flow Crescendo Previewnet

Flow Crescendo is available for access at this URL:
Flow Crescendo Previewnet is available for access at this URL:

```
access.crescendo.nodes.onflow.org:9000
access.previewnet.nodes.onflow.org:9000
```

For example, to access the network using the [Flow Go SDK](https://github.com/onflow/flow-go-sdk):
Expand All @@ -24,7 +24,7 @@ For example, to access the network using the [Flow Go SDK](https://github.com/on
import "github.com/onflow/flow-go-sdk/client"

func main() {
flowAccessAddress := "access.crescendo.nodes.onflow.org:9000"
flowAccessAddress := "access.previewnet.nodes.onflow.org:9000"
flowClient, _ := client.New(flowAccessAddress, grpc.WithInsecure())
// ...
}
Expand All @@ -37,8 +37,8 @@ You can generate a new key pair with the [Flow CLI](https://github.com/onflow/fl
```sh
> flow keys generate

🙏 If you want to create an account on Crescendo with the generated keys use this link:
https://crescendo-faucet.onflow.org/?key= cc1c3d72...
🙏 If you want to create an account on Crescendo Previewnet with the generated keys use this link:
https://previewnet-faucet.onflow.org/?key= cc1c3d72...


🔴️ Store private key safely and don't share with anyone!
Expand All @@ -50,7 +50,7 @@ Public Key cc1c3d72...
## Account Creation and Token Funding Requests
Accounts and tokens for testing can be obtained through the [crescendo faucet](https://crescendo-faucet.onflow.org/). If you generated the keypair through the CLI, you can click on the URL provided to create an account and request crescendo FLOW tokens.
Accounts and tokens for testing can be obtained through the [previewnet faucet](https://previewnet-faucet.onflow.org/). If you generated the keypair through the CLI, you can click on the URL provided to create an account and request crescendo FLOW tokens.
## Important Smart Contract Addresses
Expand Down

0 comments on commit 00f4370

Please sign in to comment.