diff --git a/scripts/configs/neutron.toml b/scripts/configs/neutron.toml index adbca842..d1cf0531 100644 --- a/scripts/configs/neutron.toml +++ b/scripts/configs/neutron.toml @@ -31,7 +31,6 @@ ENTRY_POINT_PRE_GENERATED_ADDRESS = "
"
 
 [[swap_venues]]
 name = "neutron-astroport"
-router_contract_address = "neutron1eeyntmsq448c68ez06jsy6h2mtjke5tpuplnwtjfwcdznqmw72kswnlmm0"
 swap_adapter_path = "../artifacts/skip_api_swap_adapter_astroport-aarch64.wasm"
 
 [[swap_venues]]
@@ -41,7 +40,6 @@ swap_adapter_path = "../artifacts/skip_api_swap_adapter_lido_satellite-aarch64.w
 
 [[testnet_swap_venues]]
 name = "testnet-neutron-astroport"
-router_contract_address = "neutron12jm24l9lr9cupufqjuxpdjnnweana4h66tsx5cl800mke26td26sq7m05p"
 swap_adapter_path = "../artifacts/skip_api_swap_adapter_astroport-aarch64.wasm"
 
 [[testnet_swap_venues]]
diff --git a/scripts/configs/terra.toml b/scripts/configs/terra.toml
index f1e5d314..31697c6d 100644
--- a/scripts/configs/terra.toml
+++ b/scripts/configs/terra.toml
@@ -31,10 +31,8 @@ ENTRY_POINT_PRE_GENERATED_ADDRESS = "
"
 
 [[swap_venues]]
 name = "terra-astroport"
-router_contract_address = "terra1j8hayvehh3yy02c2vtw5fdhz9f4drhtee8p5n5rguvg3nyd6m83qd2y90a"
 swap_adapter_path = "../artifacts/skip_api_swap_adapter_astroport-aarch64.wasm"
 
 [[testnet_swap_venues]]
 name = "testnet-terra-astroport"
-router_contract_address = "terra1na348k6rvwxje9jj6ftpsapfeyaejxjeq6tuzdmzysps20l6z23smnlv64"
 swap_adapter_path = "../artifacts/skip_api_swap_adapter_astroport-aarch64.wasm"
\ No newline at end of file
diff --git a/scripts/deploy.py b/scripts/deploy.py
index 50870b82..82fe6423 100644
--- a/scripts/deploy.py
+++ b/scripts/deploy.py
@@ -151,8 +151,6 @@ def main():
         swap_adapter_instantiate_args = {
             "entry_point_contract_address": ENTRY_POINT_PRE_GENERATED_ADDRESS
         }
-        if "router_contract_address" in venue:
-            swap_adapter_instantiate_args["router_contract_address"] = venue["router_contract_address"]
         if "lido_satellite_contract_address" in venue:
             swap_adapter_instantiate_args["lido_satellite_contract_address"] = venue["lido_satellite_contract_address"]