Skip to content

Commit

Permalink
fix: change RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
GigaHierz committed Sep 19, 2023
1 parent 2701c6b commit 222be79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ NODE_PROVIDER_MATIC_RPC_URL=https://rpc.ankr.com/polygon
NODE_PROVIDER_MUMBAI_RPC_URL=https://matic-mumbai.chainstacklabs.com
NODE_PROVIDER_CELO_RPC_URL=https://rpc.ankr.com/celo
NODE_PROVIDER_ALFAJORES_RPC_URL=https://alfajores-forno.celo-testnet.org
TEST_TIMEOUT=300000
TEST_TIMEOUT=500000
4 changes: 2 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const config: HardhatUserConfig = {
forking: {
url:
process.env.NODE_PROVIDER_MATIC_RPC_URL ||
"https://matic-mainnet.chainstacklabs.com",
"https://rpc.ankr.com/polygon",
},
},
},
Expand All @@ -38,7 +38,7 @@ const config: HardhatUserConfig = {
apiKey: process.env.ETHERSCAN_API_KEY,
},
mocha: {
timeout: process.env.TEST_TIMEOUT || 300000,
timeout: process.env.TEST_TIMEOUT || 5000000,
},
};

Expand Down

0 comments on commit 222be79

Please sign in to comment.