Skip to content

Commit

Permalink
bump sign-client to 2.13.2-2 and modify transportOpen parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bxq2011hust committed Jul 16, 2024
1 parent 6bde102 commit 04b5fd3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@walletconnect/relay-auth": "1.0.4",
"@walletconnect/safe-json": "1.0.2",
"@walletconnect/time": "1.0.2",
"@bxq2011hust/walletconnect-types": "2.13.2-1",
"@bxq2011hust/walletconnect-types": "2.13.2-2",
"@walletconnect/utils": "2.13.2",
"events": "3.3.0",
"isomorphic-unfetch": "3.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/sign-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bxq2011hust/walletconnect-sign-client",
"description": "Sign Client for WalletConnect Protocol",
"version": "2.13.2-2",
"version": "2.13.2-3",
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "Apache-2.0",
Expand Down Expand Up @@ -38,13 +38,13 @@
"prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"@bxq2011hust/walletconnect-core": "2.13.2-1",
"@bxq2011hust/walletconnect-core": "2.13.2-2",
"@walletconnect/events": "1.0.1",
"@walletconnect/heartbeat": "1.2.2",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/logger": "2.1.2",
"@walletconnect/time": "1.0.2",
"@bxq2011hust/walletconnect-types": "2.13.2-1",
"@bxq2011hust/walletconnect-types": "2.13.2-2",
"@walletconnect/utils": "2.13.2",
"events": "3.3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bxq2011hust/walletconnect-types",
"description": "Typings for WalletConnect Protocol",
"version": "2.13.2-1",
"version": "2.13.2-2",
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/src/core/relayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export abstract class IRelayer extends IEvents {

public abstract unsubscribe(topic: string, opts?: RelayerTypes.UnsubscribeOptions): Promise<void>;
public abstract transportClose(): Promise<void>;
public abstract transportOpen(relayUrl?: string): Promise<void>;
public abstract transportOpen(relayUrl?: string, backendJWT?: string): Promise<void>;
public abstract restartTransport(relayUrl?: string, backendJWT?: string): Promise<void>;
public abstract confirmOnlineStateOrThrow(): Promise<void>;
public abstract handleBatchMessageEvents(messages: RelayerTypes.MessageEvent[]): Promise<void>;
Expand Down

0 comments on commit 04b5fd3

Please sign in to comment.