Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flow evm is really flow previewnet #642

Merged
merged 3 commits into from Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/evm/build/guides/deploy-contract/using-hardhat.md
Expand Up @@ -105,7 +105,7 @@ Deploying:
3. Create a `deploy.ts` file in `scripts` directory.
4. Paste in the following TypeScript code.

```typeScript
```javascript
import { ethers } from "hardhat";

async function main() {
Expand Down Expand Up @@ -141,7 +141,7 @@ HelloWorld address: 0x3Fe94f43Fb5CdB8268A801f274521a07F7b99dfb

Now, we want to get the greeting from the deployed `HelloWorld` smart contract.

```TypeScript
```javascript
import { ethers } from "hardhat";
import HelloWorldABI from "../artifacts/contracts/HelloWorld.sol/HelloWorld.json";

Expand Down Expand Up @@ -176,7 +176,7 @@ The greeting is: Hello, World!

Next, we'll add a script to update the greeting and log it.

```TypeScript
```javascript
import { ethers } from "hardhat";
import HelloWorldABI from "../artifacts/contracts/HelloWorld.sol/HelloWorld.json";

Expand Down
2 changes: 1 addition & 1 deletion src/components/addNetworkButton.tsx
Expand Up @@ -30,7 +30,7 @@ export const AddNetworkButton = () => {
],
});
} catch (error) {
console.error('Could not add Flow EVM', error);
console.error('Could not add Flow Previewnet', error);
}
};

Expand Down