@wallaby-cash/api-client 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/start-client.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/start-client.js
CHANGED
|
@@ -24,7 +24,7 @@ export const startClient = (config) => {
|
|
|
24
24
|
// Construct baseUrl from environment and network
|
|
25
25
|
const environment = config.options?.environment || config.environment || 'staging';
|
|
26
26
|
const network = config.options?.network || config.network || 'testnet';
|
|
27
|
-
const baseUrl = `https://${environment}-${network}.wallaby.cash
|
|
27
|
+
const baseUrl = `https://${environment}-${network}.wallaby.cash`;
|
|
28
28
|
// Construct headers object with required and optional headers
|
|
29
29
|
const headers = {
|
|
30
30
|
'x-client-jwt': config.clientAuthToken,
|