Skip to content

[Deployment] EVM -> zkVM call not working #1033

Discussion options

You must be logged in to vote

I just want to clarify some info for this ticket:

  • Running the script with --zksync flag works without issue, but I am assuming that we want the FactoryCache contract to be an EVM contract, is that correct?
  • If the above is correct, you can still achieve this behaviour, albeit with slight changes. See below for details:

src/FactoryCache.sol

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import {IUniswapPositionManager} from "./IUniswapPositionManager.sol";

contract FactoryCache {
    address public immutable factory;

    constructor(address _factory) {
        factory = _factory;
    }
}

script/DeployFactoryCache.s.sol

// SPDX-License-Identifier: UNLICENSED
pragma soli…

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@dutterbutter
Comment options

@dutterbutter
Comment options

Answer selected by dutterbutter
@dutterbutter
Comment options

@coffeexcoin
Comment options

@dutterbutter
Comment options

@dutterbutter
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deployment Questions for deployment
2 participants