fix: Finalize ekubo executor address
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
"pancakeswap_v3": "0x4929B619A8F0D9c06ed0FfD497636580D823F65d",
|
"pancakeswap_v3": "0x4929B619A8F0D9c06ed0FfD497636580D823F65d",
|
||||||
"uniswap_v4": "0x042C0ebBEAb9d9987c2f64Ee05f2B3aeB86eAf70",
|
"uniswap_v4": "0x042C0ebBEAb9d9987c2f64Ee05f2B3aeB86eAf70",
|
||||||
"vm:balancer_v2": "0x00BE8EfAE40219Ff76287b0F9b9e497942f5BC91",
|
"vm:balancer_v2": "0x00BE8EfAE40219Ff76287b0F9b9e497942f5BC91",
|
||||||
"ekubo": "0x5991A2dF15A8F6A256D3Ec51E99254Cd3fb576A9"
|
"ekubo": "0x5E40985A4d4E8DbAd1dc35fFCfacfCde3e3d1806"
|
||||||
},
|
},
|
||||||
"tenderly_ethereum": {
|
"tenderly_ethereum": {
|
||||||
"uniswap_v2": "0x00C1b81e3C8f6347E69e2DDb90454798A6Be975E",
|
"uniswap_v2": "0x00C1b81e3C8f6347E69e2DDb90454798A6Be975E",
|
||||||
|
|||||||
@@ -33,6 +33,9 @@ const executors_to_deploy = {
|
|||||||
// Args: Pool manager
|
// Args: Pool manager
|
||||||
{exchange: "UniswapV4Executor", args: ["0x000000000004444c5dc75cB358380D2e3dE08A90"]},
|
{exchange: "UniswapV4Executor", args: ["0x000000000004444c5dc75cB358380D2e3dE08A90"]},
|
||||||
{exchange: "BalancerV2Executor", args: []},
|
{exchange: "BalancerV2Executor", args: []},
|
||||||
|
// Args: Ekubo core contract
|
||||||
|
{exchange: "EkuboExecutor", args: [
|
||||||
|
"0xe0e0e08A6A4b9Dc7bD67BCB7aadE5cF48157d444"
|
||||||
],
|
],
|
||||||
"base":[
|
"base":[
|
||||||
// Args: Factory, Pool Init Code Hash
|
// Args: Factory, Pool Init Code Hash
|
||||||
|
|||||||
@@ -554,8 +554,7 @@ contract TychoRouter is AccessControl, Dispatcher, Pausable, ReentrancyGuard {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function locked(uint256) external {
|
function locked(uint256) external {
|
||||||
// TODO replace with real executor address once deployed
|
address executor = address(0x5E40985A4d4E8DbAd1dc35fFCfacfCde3e3d1806);
|
||||||
address executor = address(0x5991A2dF15A8F6A256D3Ec51E99254Cd3fb576A9);
|
|
||||||
|
|
||||||
// slither-disable-next-line controlled-delegatecall,low-level-calls
|
// slither-disable-next-line controlled-delegatecall,low-level-calls
|
||||||
(bool success, bytes memory result) = executor.delegatecall(
|
(bool success, bytes memory result) = executor.delegatecall(
|
||||||
|
|||||||
Reference in New Issue
Block a user