socket: Replace @iov/stream with @cosmjs/stream

This commit is contained in:
willclarktech
2020-06-25 16:03:54 +02:00
parent f355f63df9
commit c8a384bb0e
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -44,7 +44,7 @@
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
},
"dependencies": {
"@iov/stream": "^2.3.2",
"@cosmjs/stream": "^0.20.0",
"isomorphic-ws": "^4.0.1",
"ws": "^6.2.0",
"xstream": "^11.10.0"
@@ -1,4 +1,4 @@
import { DefaultValueProducer, ValueAndUpdates } from "@iov/stream";
import { DefaultValueProducer, ValueAndUpdates } from "@cosmjs/stream";
import { Listener, Producer, Stream } from "xstream";
import { SocketWrapperMessageEvent } from "./socketwrapper";
+1 -1
View File
@@ -1,4 +1,4 @@
import { ValueAndUpdates } from "@iov/stream";
import { ValueAndUpdates } from "@cosmjs/stream";
import { Listener, Producer, Stream } from "xstream";
import { ConnectionStatus, QueueingStreamingSocket } from "./queueingstreamingsocket";
+1 -1
View File
@@ -1,4 +1,4 @@
import { toListPromise } from "@iov/stream";
import { toListPromise } from "@cosmjs/stream";
import { StreamingSocket } from "./streamingsocket";
+1 -1
View File
@@ -1,4 +1,4 @@
import { ValueAndUpdates } from "@iov/stream";
import { ValueAndUpdates } from "@cosmjs/stream";
import { Stream } from "xstream";
import { SocketWrapperMessageEvent } from "./socketwrapper";
export declare enum ConnectionStatus {
+1 -1
View File
@@ -1,4 +1,4 @@
import { ValueAndUpdates } from "@iov/stream";
import { ValueAndUpdates } from "@cosmjs/stream";
import { Stream } from "xstream";
import { ConnectionStatus } from "./queueingstreamingsocket";
import { SocketWrapperMessageEvent } from "./socketwrapper";