Hardhat
Hardhat
Using Hardhat with Pivotal
networks: {
// for mainnet
"pivotal-mainnet": {
url: 'https://mainnet.thepivotal.xyz',
accounts: [process.env.PRIVATE_KEY as string],
gasPrice: 1000000000,
},
// for Sepolia testnet
"pivotal-sepolia": {
url: "https://sepolia.thepivotal.xyz",
accounts: [process.env.PRIVATE_KEY as string],
gasPrice: 1000000000,
},
// for local dev environment
"pivotal-local": {
url: "http://localhost:8545",
accounts: [process.env.PRIVATE_KEY as string],
gasPrice: 1000000000,
},
},
defaultNetwork: "pivotal-local",Last updated