Skip to content

Commit

Permalink
Merge pull request #107 from torusresearch/feat/add-api-constants
Browse files Browse the repository at this point in the history
adds api constants
  • Loading branch information
chaitanyapotti authored Nov 7, 2024
2 parents 7d37376 + d1f7470 commit bf8ba85
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/constants/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,15 @@ export const METADATA_MAP: Record<TORUS_LEGACY_NETWORK_TYPE, string> = {
[TORUS_LEGACY_NETWORK.CELESTE]: "https://api.web3auth.io/metadata-service",
};

// FND backend service
export const FND_SERVER = "https://api.web3auth.io/fnd-service";
export const SESSION_SERVER = "https://api.web3auth.io/session-service";

// Session backend service
export const SESSION_SERVER_API_URL = "https://api.web3auth.io/session-service";
export const SESSION_SERVER_SOCKET_URL = "https://session.web3auth.io";

// Authjs backend service
export const AUTHJS_SERVER_URL = "https://api.web3auth.io/authjs-service";

export const KEY_TYPE = {
SECP256K1: "secp256k1",
Expand Down

0 comments on commit bf8ba85

Please sign in to comment.