I think that's cause this function from Artifacts.s.sol is called underneath:
/// @notice Setup function. The arguments here
function setUp() public virtual {
deploymentOutfile = Config.deploymentOutfile();
console.log("Writing artifact to %s", deploymentOutfile);
ForgeArtifacts.ensurePath(deploymentOutfile);
uint256 chainId = Config.chainID();
console.log("Connected to network with chainid %s", chainId);
// Load addresses from a JSON file if the CONTRACT_ADDRESSES_PATH environment variable
// is set. Great for loading addresses from `superchain-registry`.
string memory addresses = Config.contractAddressesPath();
if (bytes(addresses).length > 0) {
console.log("Loading addresses from %s", addresses);
_loadAddresses(addresses);
}
}
_loadAddresses(addresses);
l1StartingBlockTag - is parsed as an address
Hey, I'm trying to deploy a rollup an stuck on L2 genesis generation because of an error:
I do next command:
and got next result
I've also tried
the result is the same
I think that's cause this function from Artifacts.s.sol is called underneath:
_loadAddresses(addresses); l1StartingBlockTag - is parsed as an address
thx!