Skip to content

Commit

Permalink
fix: typing errors with esModuleInterop, default websocket client con…
Browse files Browse the repository at this point in the history
…nection URL
  • Loading branch information
zone117x committed Aug 20, 2020
1 parent cd539ad commit a1517b1
Show file tree
Hide file tree
Showing 11 changed files with 144 additions and 88 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ scripts/
stacks-blockchain/
src/schemas/*
docs/
client/
1 change: 1 addition & 0 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
},
ignorePatterns: [
'lib/*',
'test/*'
],
rules: {
}
Expand Down
135 changes: 88 additions & 47 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"cross-fetch": "^3.0.5",
"eventemitter3": "^4.0.4",
"jsonrpc-lite": "^2.1.1",
"strict-event-emitter-types": "^2.0.0",
"ws": "^7.3.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion client/src/generated/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/


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

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

Expand Down
Loading

0 comments on commit a1517b1

Please sign in to comment.