Skip to content

Commit a1517b1

Browse files
committed
fix: typing errors with esModuleInterop, default websocket client connection URL
1 parent cd539ad commit a1517b1

File tree

11 files changed

+144
-88
lines changed

11 files changed

+144
-88
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ scripts/
77
stacks-blockchain/
88
src/schemas/*
99
docs/
10-
client/

client/.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module.exports = {
1010
},
1111
ignorePatterns: [
1212
'lib/*',
13+
'test/*'
1314
],
1415
rules: {
1516
}

client/package-lock.json

Lines changed: 88 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"cross-fetch": "^3.0.5",
2929
"eventemitter3": "^4.0.4",
3030
"jsonrpc-lite": "^2.1.1",
31-
"strict-event-emitter-types": "^2.0.0",
3231
"ws": "^7.3.1"
3332
},
3433
"devDependencies": {

client/src/generated/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414

1515

16-
export const BASE_PATH = "http://localhost:3999".replace(/\/+$/, "");
16+
export const BASE_PATH = "https://stacks-node-api-latest.argon.blockstack.xyz".replace(/\/+$/, "");
1717

1818
const isBlob = (value: any) => typeof Blob !== 'undefined' && value instanceof Blob;
1919

0 commit comments

Comments
 (0)