-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
25 lines (22 loc) · 860 Bytes
/
hardhat.config.js
File metadata and controls
25 lines (22 loc) · 860 Bytes
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
require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
// Go to https://www.alchemyapi.io, sign up, create
// a new App in its dashboard, and replace "KEY" with its key
const ALCHEMY_API_KEY = "3eHXh2byYuCGtwphlF_n8xVKhDw1KJKe";
// Replace this private key with your Goerli account private key
// To export your private key from Metamask, open Metamask and
// go to Account Details > Export Private Key
// Beware: NEVER put real Ether into testing accounts
const MANTLETEST_PRIVATE_KEY = "a4b648aa2c9ba1369817ca16cd6eaaead9c2afb17360dbbca2e24b839d080703";
module.exports = {
solidity: "0.8.19",
networks: {
mantletest: {
chainId: 5001,
url: 'https://rpc.testnet.mantle.xyz',
accounts: [
'a4b648aa2c9ba1369817ca16cd6eaaead9c2afb17360dbbca2e24b839d080703',
],
}
}
};