Skip to content

Commit

Permalink
Merge pull request #98 from Polymarket/feat/auth-endpoints
Browse files Browse the repository at this point in the history
[PLAT-416] new auth paths
  • Loading branch information
poly-rodr authored Sep 7, 2023
2 parents 1052829 + 6d2a81a commit 80007b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polymarket/clob-client",
"description": "Typescript client for Polymarket's CLOB",
"version": "3.0.0",
"version": "3.1.0",
"contributors": [
{
"name": "Jonathan Amenechi",
Expand Down
8 changes: 4 additions & 4 deletions src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
export const TIME = "/time";

// API Key endpoints
export const CREATE_API_KEY = "/create-api-key";
export const GET_API_KEYS = "/get-api-keys";
export const DELETE_API_KEY = "/delete-api-key";
export const DERIVE_API_KEY = "/derive-api-key";
export const CREATE_API_KEY = "/auth/api-key";
export const GET_API_KEYS = "/auth/api-keys";
export const DELETE_API_KEY = "/auth/api-key";
export const DERIVE_API_KEY = "/auth/derive-api-key";

// Markets
export const GET_SAMPLING_SIMPLIFIED_MARKETS = "/sampling-simplified-markets";
Expand Down

0 comments on commit 80007b1

Please sign in to comment.