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 6057b58 commit fc63a37Copy full SHA for fc63a37
src/contracts/contract_deployer.star
@@ -183,7 +183,9 @@ def deploy_contracts(
183
"eip1559Elasticity": int(chain.gas_params.eip_1559_elasticity),
184
"deployOverrides": {
185
"l2BlockTime": chain.network_params.seconds_per_slot,
186
- "fundDevAccounts": True if devnet else False,
+ "fundDevAccounts": True
187
+ if chain.network_params.fund_dev_accounts
188
+ else False,
189
"l2GenesisBlockGasLimit": "0x17D7840",
190
"gasPriceOracleBaseFeeScalar": chain.gas_params.base_fee_scalar,
191
"gasPriceOracleBlobBaseFeeScalar": chain.gas_params.blob_base_fee_scalar,
0 commit comments