Skip to content

Commit 7bbc36f

Browse files
authored
fix: update baseURL for preprod environment (#40)
1 parent 6879c41 commit 7bbc36f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@deltadefi-protocol/typescript-sdk",
33
"description": "The Typescript SDK for interacting with DeltaDeFi protocol",
4-
"version": "0.3.21",
4+
"version": "0.3.22",
55
"main": "./dist/index.cjs",
66
"browser": "./dist/index.js",
77
"module": "./dist/index.js",

src/client/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export class ApiClient {
3636
providedBaseURL?: string,
3737
providedWsURL?: string,
3838
) {
39-
let baseURL = 'https://api-dev.deltadefi.io';
40-
let wsURL = 'wss://api-dev.deltadefi.io';
39+
let baseURL = 'https://api-staging.deltadefi.io';
40+
let wsURL = 'wss://api-staging.deltadefi.io';
4141
const headers: ApiHeaders = {
4242
'Content-Type': 'application/json',
4343
};

0 commit comments

Comments
 (0)