-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.credentials.js
More file actions
32 lines (22 loc) · 1.17 KB
/
template.credentials.js
File metadata and controls
32 lines (22 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
IMPORTANT
This is just a template file, and it is not used by the app. In order for the app to use it:
1. rename this file to .credentials.js, which will be ignored by Git
2. replace the dummy values with your actual keys
These keys are NOT used by:
- the frontend app, which relies on your Web3 wallet to obtain provider and signer
- CLI demo or tests if you run them on in-memory blockchain, which is the default Hardhat behavior
These keys are used only when you explicitly request to run CLI demo or tests on an external network, e.g.:
pnpm hardhat run ./scripts/refunder-demo.js --network sepolia
pnpm hardhat test ./test/refunder.test.js --network arbitrum-sepolia
*/
module.exports = {
// add only the API keys for the services you are planning to use, ignore the rest
ALCHEMY_API_KEY: '1111111111111111111111111111111',
ETHERSCAN_API_KEY: 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA',
// one private key is enough, but you can add as many as you want
PRIVATE_KEYS: [
'0x1111111111111111111111111111111111111111111111111111111111111111',
'0x2222222222222222222222222222222222222222222222222222222222222222',
],
}