From 3c8df6347b6fa26097b856ed7dfc3e21450faf3d Mon Sep 17 00:00:00 2001 From: Martin Magnus Date: Wed, 18 Dec 2024 12:03:17 +0100 Subject: [PATCH] [EASY] Add base url to open api (#3170) # Description We forgot to add `base` to the openapi spec so it doesn't show up in the network selection tab as reported by a user. # Changes adds the 2 new URLs to the openapi spec --- crates/orderbook/openapi.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/orderbook/openapi.yml b/crates/orderbook/openapi.yml index c26608a911..d470a9f24b 100644 --- a/crates/orderbook/openapi.yml +++ b/crates/orderbook/openapi.yml @@ -15,6 +15,10 @@ servers: url: "https://api.cow.fi/arbitrum_one" - description: Arbitrum One (Staging) url: "https://barn.api.cow.fi/arbitrum_one" + - description: Base (Prod) + url: "https://api.cow.fi/base" + - description: Base (Staging) + url: "https://barn.api.cow.fi/base" - description: Sepolia (Prod) url: "https://api.cow.fi/sepolia" - description: Sepolia (Staging)