From b4e51905ab9d094821457f512cccd7bd3d7952b4 Mon Sep 17 00:00:00 2001 From: "dak-agent[bot]" <284037069+dak-agent[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2026 14:55:48 +0000 Subject: [PATCH 1/3] feat(mainnet): add 1inch protocol Co-authored-by: Keone Hon <323982+keone@users.noreply.github.com> --- mainnet/1inch.jsonc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mainnet/1inch.jsonc diff --git a/mainnet/1inch.jsonc b/mainnet/1inch.jsonc new file mode 100644 index 0000000..97ef509 --- /dev/null +++ b/mainnet/1inch.jsonc @@ -0,0 +1,21 @@ +{ + "name": "1inch", + "description": "DEX aggregator that sources liquidity across on-chain venues to route swaps at optimal rates, alongside a gasless, intent-based Limit Order Protocol. On Monad, both ship in the 1inch Aggregation Router v6 contract.", + "live": true, + "categories": [ + "DeFi::DEX Aggregator", + "DeFi::Intents", + "DeFi::Trading Interfaces" + ], + "addresses": { + // Aggregation Router v6, which also serves the Limit Order Protocol v4. + // https://github.com/1inch/limit-order-protocol + "AggregationRouterV6": "0x111111125421cA6dc452d289314280a0f8842A65" + }, + "links": { + "project": "https://1inch.io/", + "twitter": "https://x.com/1inch", + "github": "https://github.com/1inch", + "docs": "https://docs.1inch.io/" + } +} From 963481a4365b9a14b3085c04f5dfc7e97cc28f37 Mon Sep 17 00:00:00 2001 From: "dak-agent[bot]" <284037069+dak-agent[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2026 17:27:05 +0000 Subject: [PATCH 2/3] feat(mainnet): add 1inch Aqua registry and SwapVM router Adds the two 1inch Aqua contracts (deterministic, verified on Monad mainnet) to the existing 1inch entry: the Aqua shared-liquidity registry (0x1111113CCf...) and the SwapVM execution engine (0x111111338c...). Sourced from the official 1inch/aqua and 1inch/swap-vm repos. Co-authored-by: Keone Hon <323982+keone@users.noreply.github.com> --- mainnet/1inch.jsonc | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/mainnet/1inch.jsonc b/mainnet/1inch.jsonc index 97ef509..b5f91d6 100644 --- a/mainnet/1inch.jsonc +++ b/mainnet/1inch.jsonc @@ -1,16 +1,23 @@ { "name": "1inch", - "description": "DEX aggregator that sources liquidity across on-chain venues to route swaps at optimal rates, alongside a gasless, intent-based Limit Order Protocol. On Monad, both ship in the 1inch Aggregation Router v6 contract.", + "description": "DEX aggregator that sources liquidity across on-chain venues to route swaps at optimal rates, alongside a gasless, intent-based Limit Order Protocol — both ship in the 1inch Aggregation Router v6 on Monad. 1inch also deploys Aqua, its self-custodial shared liquidity layer, together with the on-chain SwapVM execution engine that settles against it.", "live": true, "categories": [ "DeFi::DEX Aggregator", + "DeFi::DEX", "DeFi::Intents", "DeFi::Trading Interfaces" ], "addresses": { // Aggregation Router v6, which also serves the Limit Order Protocol v4. // https://github.com/1inch/limit-order-protocol - "AggregationRouterV6": "0x111111125421cA6dc452d289314280a0f8842A65" + "AggregationRouterV6": "0x111111125421cA6dc452d289314280a0f8842A65", + // Aqua registry — 1inch's self-custodial shared liquidity layer. Verified on Monad. + // https://github.com/1inch/aqua + "Aqua": "0x1111113CCf1426A8E30e2bfF5E005d929bF6a90a", + // SwapVM router — programmable execution engine for Aqua ("1inch SwapVM v1.0"). Verified on Monad. + // https://github.com/1inch/swap-vm + "SwapVMRouter": "0x111111338c5091E8440b67B168bAe16a668AC0De" }, "links": { "project": "https://1inch.io/", From 81eb7fc08c9365b983f8f6acccc1aeb172c8dc9c Mon Sep 17 00:00:00 2001 From: "dak-agent[bot]" <284037069+dak-agent[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2026 17:41:51 +0000 Subject: [PATCH 3/3] docs(mainnet): update 1inch description Reword the 1inch protocol description per maintainer request. Co-authored-by: Keone Hon <323982+keone@users.noreply.github.com> --- mainnet/1inch.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainnet/1inch.jsonc b/mainnet/1inch.jsonc index b5f91d6..ab2121c 100644 --- a/mainnet/1inch.jsonc +++ b/mainnet/1inch.jsonc @@ -1,6 +1,6 @@ { "name": "1inch", - "description": "DEX aggregator that sources liquidity across on-chain venues to route swaps at optimal rates, alongside a gasless, intent-based Limit Order Protocol — both ship in the 1inch Aggregation Router v6 on Monad. 1inch also deploys Aqua, its self-custodial shared liquidity layer, together with the on-chain SwapVM execution engine that settles against it.", + "description": "DEX aggregator that sources liquidity across on-chain venues, alongside a gasless, intent-based Limit Order Protocol. Includes Aqua, a self-custodial shared liquidity layer, together with the on-chain SwapVM execution engine that settles against it.", "live": true, "categories": [ "DeFi::DEX Aggregator",