Skip to content

Commit 0f893bf

Browse files
authored
chore(cleanup): Prepare Avalanche network for initial use [SIM-311] (#41)
1 parent 46a714b commit 0f893bf

File tree

4 files changed

+7
-351
lines changed

4 files changed

+7
-351
lines changed

avalanche/deployments/outputs/43114-staging.json

Lines changed: 0 additions & 343 deletions
This file was deleted.

avalanche/env/local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22

33
export DEPLOYMENT_CONSTANT=development
4-
export DEPLOYMENT_NETWORK_ID=50
4+
export DEPLOYMENT_NETWORK_ID=43114

avalanche/hardhat.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
require("dotenv").config({ path: "../.env"});
22

3-
let changedFiles; // tslint:disable-line
4-
53
import { HardhatUserConfig } from "hardhat/config";
64
import { privateKeys } from "../utils/wallets";
75
import { validateEnvVars } from "../utils/validateEnvVars";
@@ -27,7 +25,9 @@ const config: HardhatUserConfig = {
2725
},
2826
networks: {
2927
hardhat: {
30-
hardfork: "istanbul",
28+
forking: {
29+
url: "https://api.avax.network/ext/bc/C/rpc",
30+
},
3131
accounts: getHardhatPrivateKeys(),
3232
},
3333
localhost: {

0 commit comments

Comments
 (0)