We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9edf23 commit a16942cCopy full SHA for a16942c
packages/smart-contract/hardhat.config.ts
@@ -36,17 +36,13 @@ const config: HardhatUserConfig = {
36
// Add Fuji as a network
37
avalancheFujiTestnet: {
38
url: env.RPC_URL || 'https://api.avax-test.network/ext/bc/C/rpc',
39
- accounts: {
40
- mnemonic: env.MNEMONIC || HARDHAT_NETWORK_MNEMONIC,
41
- },
+ accounts: privateKey ? [privateKey] : [],
42
...fujiBaseConfig,
43
},
44
// Add Arbitrum Sepolia as a network
45
'arbitrum-sepolia': {
46
url: env.RPC_URL || 'https://sepolia-rollup.arbitrum.io/rpc',
47
48
49
50
...arbitrumSepoliaBaseConfig,
51
52
// poco-chain native config
0 commit comments