From 0655cd023162822f4cd0386f7c70160e17fe1651 Mon Sep 17 00:00:00 2001 From: Ashutosh Ukey Date: Fri, 21 Oct 2022 13:51:07 -0400 Subject: [PATCH] fix: change base url production env (#32) * fix: change base url production env * chore: remove leading slash --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 7380db8..400311d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export * from "./generated"; export enum CircleEnvironments { - production = "https://account.circle.com", + production = "https://api.circle.com", sandbox = "https://api-sandbox.circle.com" }