Skip to content

Commit

Permalink
add: updated deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
sirpy committed Nov 7, 2024
1 parent 45ada47 commit 545caf6
Show file tree
Hide file tree
Showing 2 changed files with 373 additions and 31 deletions.
6 changes: 3 additions & 3 deletions packages/contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import { HardhatUserConfig } from 'hardhat/config';
dotenv.config();

const mnemonic = process.env.MNEMONIC || '';
const privateKey = process.env.PRIVATE_KEY || '';

const config: HardhatUserConfig = {
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -81,9 +83,7 @@ const config: HardhatUserConfig = {
chainId: 42220,
url: `https://forno.celo.org`,
gasPrice: 5000000000,
accounts: {
mnemonic,
},
accounts: [privateKey],
verify: {
etherscan: {
apiKey: process.env.CELOSCAN_KEY,
Expand Down
Loading

0 comments on commit 545caf6

Please sign in to comment.