WalletConnectHelper
public class WalletConnectHelper extends Object
↳ package com.onekosmos.blockid.sdk.walletconnect
A singleton class that provides the following application features:
- Connect BlockID SDK wallet to DApps
- Transaction signing
- Personal signing
Prerequisites
- WalletConnect Project ID
- Register a project into the WalletConnect Cloud application (https://cloud.walletconnect.com/app) to get the
Project ID
for your project - The
Project ID
allows you to start using the relay network immediately, and is needed during SDK initialization
- Register a project into the WalletConnect Cloud application (https://cloud.walletconnect.com/app) to get the
Method Summary
Type | Name | Description |
---|---|---|
void | approveConnection(@NonNull Sign.Model.SessionProposal sessionProposal) | Approves the requested session. A session is created between the proposer and responder. |
void | approveSession(@NonNull Sign.Model.SessionRequest sessionRequest) | Signs the transaction for a given session. Allowed methods are eth_signTransaction and personal_sign in the SessionRequest object. |
void | connect(@NonNull String uri) | Connect a client with a URI generated by the proposer. |
void | disconnect(@NonNull Sign.Model.Session session) | Disconnect the given active session. |
List<Sign.Model.Session> | getActiveSessions() | Returns list of active sessions. |
WalletConnectHelper | getInstance() | Creates and returns a singleton instance of the WalletConnectHelper class. |
void | initialize(@NonNull Application application, @NonNull String projectID, @NonNull Sign.Model.AppMetaData metadata, @NonNull WalletConnectCallback callback) | Initializes the object based on given project id and application metadata. |
void | rejectConnection(@NonNull Sign.Model.SessionProposal sessionProposal) | Rejects the requested proposal session. |
void | rejectSession(@NonNull Sign.Model.SessionRequest sessionRequest) | Rejects the transaction for a given session. |
Method Detail
approveConnection
public void approveConnection(@NonNull Sign.Model.SessionProposal sessionProposal)
- Approves the requested session. A session is created between the proposer and responder.
Parameters | |
---|---|
sessionProposal | Sign.Model.SessionProposal: Session proposal |
approveSession
public void approveSession(@NonNull Sign.Model.SessionRequest sessionRequest)
- Signs the transaction for a given session. Allowed methods are eth_signTransaction and personal_sign in the SessionRequest object.
Parameters | |
---|---|
sessionRequest | Sign.Model.SessionRequest : Session request |
connect
public void connect(@NonNull String uri)
- Connect a client with a URI generated by the proposer.
Parameters | |
---|---|
uri | String: Connection uri |
disconnect
public void disconnect(@NonNull Sign.Model.Session session)
- Disconnect the given active session.
Parameters | |
---|---|
session | Sign.Model.Session: Session to be disconnect |
getActiveSessions
public List<Sign.Model.Session>
getActiveSessions()
- Returns list of active sessions.