Skip to content

Commit

Permalink
Merge pull request #36 from Fantom-foundation/deployment-changes
Browse files Browse the repository at this point in the history
Deployment Changes
  • Loading branch information
quan8 authored Nov 23, 2021
2 parents 3d5c759 + 6847c53 commit fefe395
Show file tree
Hide file tree
Showing 2 changed files with 304 additions and 273 deletions.
14 changes: 7 additions & 7 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
//require('dotenv').config();
require('dotenv').config();
require('@nomiclabs/hardhat-waffle');
require('@nomiclabs/hardhat-truffle5');
require("@nomiclabs/hardhat-etherscan");
require('@nomiclabs/hardhat-etherscan');
require('@nomiclabs/hardhat-ethers');
require('hardhat-gas-reporter');
require('solidity-coverage');
require('@nomiclabs/hardhat-solhint');
require('hardhat-contract-sizer');
require('@openzeppelin/hardhat-upgrades');
require('@openzeppelin/test-helpers');
require("@nomiclabs/hardhat-web3");
require('@nomiclabs/hardhat-web3');

//const PRIVATE_KEY = process.env.PRIVATE_KEY;
const PRIVATE_KEY = process.env.PRIVATE_KEY;

module.exports = {
solidity: {
Expand All @@ -32,16 +32,16 @@ module.exports = {
mainnet: {
url: `https://rpcapi.fantom.network`,
chainId: 250,
//accounts: [`0x${PRIVATE_KEY}`]
accounts: [`0x${PRIVATE_KEY}`]
},
testnet: {
url: `https://rpc.testnet.fantom.network`,
chainId: 4002,
//accounts: [`0x${PRIVATE_KEY}`]
accounts: [`0x${PRIVATE_KEY}`]
},
ropsten: {
url: `https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161`,
chainId: 3,
chainId: 3
//accounts: [`0x${PRIVATE_KEY}`]
},
coverage: {
Expand Down
Loading

0 comments on commit fefe395

Please sign in to comment.