Package Exports
- @walletconnect/client
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@walletconnect/client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@walletconnect/client
Client for WalletConnect Protocol
Description
This library provides a Standalone Client for WalletConnect 2.0 Protocol for both Dapps and Wallets. Integration will differ from the perspective of each client as the Proposer and Responder, respectively. It's compatible with NodeJS, Browser and React-Native applications (NodeJS modules required to be polyfilled for React-Native)
Install
yarn add @walletconnect/client
# OR
npm install --save @walletconnect/clientCreate Session
This quick start example will describe how an integration should be followed for both Dapps and Wallets respectively
Dapps
- Initiate your WalletConnect client with the relay server
import WalletConnectClient from "@walletconnect/client";
const client = await WalletConnectClient.init({ relayProvider: "wss://relay.walletconnect.org" });- Subscribe to pairing proposal event for sharing URI
import { CLIENT_EVENTS } from "@walletconnect/client";
import { PairingTypes } from "@walletconnect/types";
client.on(CLIENT_EVENTS.pairing.proposal, async (proposal: PairingTypes.Proposal) => {
// uri should be shared with the Wallet either through QR Code scanning or mobile deep linking
const { uri } = proposal.signal.params;
});- Connect application and specify session permissions
const session = await client.connect({
metadata: {
name: "Example Dapp",
description: "Example Dapp",
url: "#",
icons: ["https://walletconnect.org/walletconnect-logo.png"],
},
permissions: {
blockchain: {
chains: ["eip155:1"],
},
jsonrpc: {
methods: ["eth_sendTransaction", "personal_sign", "eth_signTypedData"],
},
},
});Wallets
- Initiate your WalletConnect client with the relay server
import WalletConnectClient from "@walletconnect/client";
const client = await WalletConnectClient.init({ relayProvider: "wss://relay.walletconnect.org" });- Subscribe to session proposal event for user approval and session created when successful
import { CLIENT_EVENTS } from "@walletconnect/client";
import { SessionTypes } from "@walletconnect/types";
client.on(CLIENT_EVENTS.session.proposal, async (proposal: SessionTypes.Proposal) => {
// user should be prompted to approve the proposed session permissions displaying also dapp metadata
const { proposer, permissions } = proposal;
const { metadata } = proposer;
let approved: boolean;
handleSessionUserApproval(approved, proposal); // described in the step 4
});
client.on(CLIENT_EVENTS.session.created, async (session: SessionTypes.Created) => {
// session created succesfully
});- Establish pairing with shared URI from dapp
client.pair({ uri });- Handle user approval for proposed session
function handleSessionUserApproval(approved: boolean, proposal: SessionTypes.Proposal) {
if (userApproved) {
// if user approved then include response with accounts matching the chains and wallet metadata
const response: SessionTypes.Response = {
metadata: {
name: "Test Wallet",
description: "Test Wallet",
url: "#",
icons: ["https://walletconnect.org/walletconnect-logo.png"],
},
state: {
accounts: ["0x1d85568eEAbad713fBB5293B45ea066e552A90De@eip155:1"],
},
}
await client.approve({ proposal, response });
} else {
// if user didn't approve then reject with no response
await client.reject({ proposal });
}
}JSON-RPC Payloads
Dapps
Once the session has been succesfull then you can start making JSON-RPC requests to be approved and signed by the wallet
const result = await client.request({
topic: session.topic,
chainId: "eip155:1",
request: {
id: 1,
jsonrpc: "2.0",
method: "personal_sign",
params: [
"0x1d85568eEAbad713fBB5293B45ea066e552A90De",
"0x7468697320697320612074657374206d65737361676520746f206265207369676e6564",
],
},
});Wallets
Given that session has settled succesfully since user approved the session on the wallet side, then the Wallet should subscribe to session request events on the client
import { CLIENT_EVENTS } from "@walletconnect/client";
import { SessionTypes } from "@walletconnect/types";
import { JsonRpcResponse } from "@json-rpc-tools/utils";
client.on(CLIENT_EVENTS.session.request, async (requestEvent: SessionTypes.RequestEvent) => {
// WalletConnect client can track multiple sessions
// assert the topic from which application requested
const { topic, request } = requestEvent;
const session = await client.session.get(requestEvent.topic);
// now you can display to the user for approval using the stored metadata
const { metadata } = session.peer;
// after user has either approved or not the request it should be formatted
// as response with either the result or the error message
let result: any;
const response = approved
? {
topic,
response: {
id: request.id,
jsonrpc: "2.0",
result,
},
}
: {
topic,
response: {
id: request.id,
jsonrpc: "2.0",
error: {
code: -32000,
message: "User rejected JSON-RPC request",
},
},
};
await client.respond(response);
});API
export interface ClientOptions {
logger?: string | Logger;
storage?: IKeyValueStorage;
relayProvider?: string | IJsonRpcProvider;
name?: string;
storageOptions?: KeyValueStorageOptions;
}
export abstract class IClient extends IEvents {
public readonly protocol = "wc";
public readonly version = 2;
public abstract logger: Logger;
public abstract relayer: IRelayer;
public abstract storage: IKeyValueStorage;
public abstract pairing: IPairing;
public abstract session: ISession;
public abstract context: string;
constructor(opts?: ClientOptions) {
super();
}
// for proposer to propose a session to a responder
public abstract connect(params: ClientTypes.ConnectParams): Promise<SessionTypes.Settled>;
// for responder to receive a session proposal from a proposer
public abstract pair(params: ClientTypes.PairParams): Promise<string>;
// for responder to approve a session proposal
public abstract approve(params: ClientTypes.ApproveParams): Promise<SessionTypes.Settled>;
// for responder to reject a session proposal
public abstract reject(params: ClientTypes.RejectParams): Promise<void>;
// for responder to upgrade session permissions
public abstract upgrade(params: ClientTypes.UpgradeParams): Promise<void>;
// for responder to update session state
public abstract update(params: ClientTypes.UpdateParams): Promise<void>;
// for proposer to request JSON-RPC
public abstract request(params: ClientTypes.RequestParams): Promise<any>;
// for responder to respond JSON-RPC
public abstract respond(params: ClientTypes.RespondParams): Promise<void>;
// for either to send notifications
public abstract notify(params: ClientTypes.NotifyParams): Promise<void>;
// for either to disconnect a session
public abstract disconnect(params: ClientTypes.DisconnectParams): Promise<void>;
}
export declare namespace ClientTypes {
export interface ConnectParams {
metadata: AppMetadata;
permissions: SessionTypes.BasePermissions;
relay?: RelayerTypes.ProtocolOptions;
pairing?: SignalTypes.ParamsPairing;
}
export interface PairParams {
uri: string;
}
export interface ApproveParams {
proposal: SessionTypes.Proposal;
response: SessionTypes.Response;
}
export interface RejectParams {
proposal: SessionTypes.Proposal;
reason?: string;
}
export type UpgradeParams = SessionTypes.UpgradeParams;
export type UpdateParams = SessionTypes.UpdateParams;
export type RequestParams = SessionTypes.RequestParams;
export interface RespondParams {
topic: string;
response: JsonRpcResponse;
}
export type NotifyParams = SessionTypes.NotifyParams;
export type DisconnectParams = SessionTypes.DeleteParams;
}License
LGPL-3.0