We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to use script/DeployL2.s.sol to deploy contracts, I find something weird, in this script, the code to deploy contract KeyGateway is:
script/DeployL2.s.sol
KeyGateway
addrs.keyGateway = register( "KeyGateway", params.salts.keyGateway, type(KeyGateway).creationCode, abi.encode(addrs.keyRegistry, addrs.storageRegistry, params.initialKeyRegistryOwner) );
And I find in the contract src/KeyGateway.sol, it only needs two constructor parameters like this:
src/KeyGateway.sol
constructor( address _keyRegistry, address _initialOwner ) Guardians(_initialOwner) EIP712("Farcaster KeyGateway", "1") { keyRegistry = IKeyRegistry(_keyRegistry); }
The text was updated successfully, but these errors were encountered:
varunsrin
No branches or pull requests
When I try to use
script/DeployL2.s.sol
to deploy contracts, I find something weird, in this script, the code to deploy contractKeyGateway
is:And I find in the contract
src/KeyGateway.sol
, it only needs two constructor parameters like this:The text was updated successfully, but these errors were encountered: