Skip to content

Commit

Permalink
chore: uniformize hardhat config accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
nlecoufl committed Oct 28, 2024
1 parent b1b6367 commit a70fa12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ const config: HardhatUserConfig = {
fraxtal: {
live: true,
url: nodeUrl('fraxtal'),
accounts: accountsMerklDeployer,
accounts: [getPkey()],
gas: 'auto',
chainId: 252,
verify: {
Expand Down Expand Up @@ -572,7 +572,7 @@ const config: HardhatUserConfig = {
rootstock: {
live: true,
url: nodeUrl('rootstock'),
accounts: accounts("rootstock"),
accounts: [getPkey()],
gas: 'auto',
chainId: 30,
verify: {
Expand Down Expand Up @@ -610,7 +610,7 @@ const config: HardhatUserConfig = {
worldchain: {
live: true,
url: nodeUrl('worldchain'),
accounts: accountsMerklDeployer,
accounts: [getPkey()],
gas: 'auto',
chainId: 480,
verify: {
Expand Down

0 comments on commit a70fa12

Please sign in to comment.