From d6563a61d4c80e55c9a0fb3f4a7a7f399b0ad821 Mon Sep 17 00:00:00 2001 From: Sunny Vempati Date: Tue, 18 Jul 2023 05:37:49 -0500 Subject: [PATCH] custom transactor fees --- omnibus-optimism-goerli.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/omnibus-optimism-goerli.toml b/omnibus-optimism-goerli.toml index 672cd44f..001d350f 100644 --- a/omnibus-optimism-goerli.toml +++ b/omnibus-optimism-goerli.toml @@ -165,6 +165,18 @@ defaultValue = "0.0001" [setting.ethSettlementWindowDuration] defaultValue = "600" +[invoke.setPerpsProxyCustomTransactorOnEthSynthMarket] +target = ["spotFactory.SpotMarketProxy"] +fromCall.func = "getMarketOwner" +fromCall.args = ["<%= extras.synth_eth_market_id %>"] +func = "setCustomTransactorFees" +args = [ + "<%= extras.synth_eth_market_id %>", + "<%= imports.perpsFactory.contracts.PerpsMarketProxy.address %>", + "<%= parseEther('0.0001') %>" +] +depends=["provision.perpsFactory", "invoke.createEthSynth"] + # Pyth settlement strategy config [setting.pythFeedUrl] defaultValue = "https://api.synthetix.io/pyth-testnet/api/get_vaa_ccip?data={data}"