Skip to content

Commit

Permalink
feat: staging environment
Browse files Browse the repository at this point in the history
  • Loading branch information
gislik committed Aug 15, 2024
1 parent 31d1ff1 commit a395cd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/sdk/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ const MONERIUM_CONFIG: Config = {
web: 'https://sandbox.monerium.dev',
wss: 'wss://api.monerium.dev',
},
staging: {
api: 'https://api-staging.monerium.dev',
web: 'https://staging.monerium.dev',
wss: 'wss://api-staging.monerium.dev',
},
development: {
api: 'http://localhost:4000/external-api',
web: 'http://localhost:3000',
Expand Down
3 changes: 2 additions & 1 deletion packages/sdk/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ export type Config = {
environments: {
production: Environment;
sandbox: Environment;
staging: Environment;
development: Environment;
};
};

export type ENV = 'sandbox' | 'production' | 'development';
export type ENV = 'sandbox' | 'production' | 'development' | 'staging';

export type EthereumTestnet = 'sepolia';
export type GnosisTestnet = 'chiado';
Expand Down

0 comments on commit a395cd5

Please sign in to comment.