Skip to content

Commit f65f9d7

Browse files
committed
feat: add vechain configs
1 parent 1fc3120 commit f65f9d7

File tree

4 files changed

+29297
-198
lines changed

4 files changed

+29297
-198
lines changed

hardhat.config.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,30 @@ const config: HardhatUserConfig = {
451451
`${PLACEHOLDER_KEY}`,
452452
`${PRIVATE_KEY_FOR_BATCHER_CONTRACT_DEPLOYMENT}`
453453
]
454+
},
455+
vechain_testnet: {
456+
url: 'https://testnet.vechain.org',
457+
accounts: [
458+
`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`,
459+
`${PLACEHOLDER_KEY}`,
460+
`${PRIVATE_KEY_FOR_BATCHER_CONTRACT_DEPLOYMENT}`
461+
],
462+
gas: 'auto',
463+
gasPrice: 'auto',
464+
gasMultiplier: 1,
465+
timeout: 20000
466+
},
467+
vechain_mainnet: {
468+
url: 'https://mainnet.vechain.org',
469+
accounts: [
470+
`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`,
471+
`${PLACEHOLDER_KEY}`,
472+
`${PRIVATE_KEY_FOR_BATCHER_CONTRACT_DEPLOYMENT}`
473+
],
474+
gas: 'auto',
475+
gasPrice: 'auto',
476+
gasMultiplier: 1,
477+
timeout: 20000
454478
}
455479
},
456480
gasReporter: {

0 commit comments

Comments
 (0)