Skip to content

Commit

Permalink
feat: add immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptistG committed Mar 8, 2024
1 parent b6e753b commit af8c447
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,19 @@ const config: HardhatUserConfig = {
},
},
},
immutablezkevm: {
live: true,
url: nodeUrl('immutablezkevm'),
accounts: [getPkey()],
gas: 'auto',
gasMultiplier: 1.3,
chainId: 13371,
verify: {
etherscan: {
apiKey: etherscanKey('immutablezkevm'),
},
},
},
},
paths: {
sources: './contracts',
Expand Down
6 changes: 3 additions & 3 deletions scripts/setRewardTokenMinAmount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ async function main() {
console.log('Setting reward token min amount');

const token = {
address: '0xA7c167f58833c5e25848837f45A1372491A535eD',
decimals: 18,
minAmount: '2000000000000000000',
address: '',
decimals: 6,
minAmount: '',
}

const res = await (
Expand Down

0 comments on commit af8c447

Please sign in to comment.