Skip to main content

WalletConnectHelper

public class WalletConnectHelper


This is a singleton class that provides applications to

  • Connect BlockID SDK wallet to DApps
  • Transaction signing
  • Personal signing

Prerequisites

  • WalletConnect Project ID
    1. Register a project into the Wallet Connect cloud application to get your Project ID
    2. The project ID allows you to start using the relay network immediately, and is needed during SDK initialisation

Constructor

public init(projectID: String, metadata: AppMetadata, delegate: WalletConnectDelegate)

  • Creates an object of WalletConnectHelper. This function will throw an error if the SDK is not ready.
Parameters
projectIDString: String value which contains the Wallet Connect Project ID
metadataInstance of AppMetadata
delegateInstance of WalletConnectDelegate

Method Summary

Parameters
voidconnect(uri: String)Connect a client with a URI generated by the proposer.
voiddisconnect(session: ActiveSessionItem)Disconnect the given active session.
voidapproveSession(request: Request)Signs the transaction for a given session. Allowed methods are eth_signTransaction and personal_sign in the SessionRequest object.
voidrejectSession(request: Request)Rejects the transaction for a given session.
Array of ActiveSessionItemgetActiveSessions() -> [ActiveSessionItem]Returns list of active sessions.
voidapproveConnection(sessionProposal: Session.Proposal)Approves the requested session. A session is created between the proposer and responder.
voidrejectConnection(sessionProposal: Session.Proposal)Rejects the requested proposal session.

Method Detail

connect

public func connect(uri: String)

  • Connect a client with a URI generated by the proposer.
Parameters
uriString: Connection uri

disconnect

public func disconnect(session: ActiveSessionItem)

  • Disconnect the given active session.
Parameters
sessionActiveSessionItem: Session to be disconnected

approveSession

public func approveSession(request: Request)

  • Signs the transaction for a given session. Allowed methods are eth_signTransaction and personal_sign in the SessionRequest object.
Parameters
requestRequest: Session request

rejectSession

public func approveSession(request: Request)

  • Rejects the transaction for a given session.
Parameters
requestRequest: Session request

getActiveSessions

public func getActiveSessions() -> [ActiveSessionItem]

  • Returns list of active sessions.

approveConnection

public func approveSession(sessionProposal: Session.Proposal)

  • Approves the requested session. A session is created between the proposer and responder.
Parameters
sessionProposalSession.Proposal: Session proposal

rejectConnection

public func rejectConnection(sessionProposal: Session.Proposal)

  • Rejects the requested proposal session.
Parameters
sessionProposalSession.Proposal: Session proposal

Protocol Summary

Parameters
WalletConnectDelegateCallback for events related to wallet connect/ disconnect, transaction, and personal signing requests.

WalletConnectDelegate

public protocol WalletConnectDelegate: AnyObject

  • Callback for events related to wallet connect/ disconnect, transaction and personal signing requests.

Method Summary

func onSessionProposal(sessionProposal: Session.Proposal?)

  • Called when Session Proposal request received.
Parameters
sessionProposalSession.Proposal: Session Proposal

func onSessionRequest(request: Request)

  • Called when Session Request received for signing.
Parameters
requestRequest : Session request

func onSessionSettleResponse(sessions: [ActiveSessionItem])

  • Called when Session Settle delegate when an active session is received.
Parameters
sessions[ActiveSessionItem] : Array of ActiveSessionItem

func onSessionDisconnect(remainingSession: [ActiveSessionItem])

  • Called when Session Disconnect when an active session is disconnected.
Parameters
remainingSession[ActiveSessionItem] : Array of ActiveSessionItem

func onError(error: Error)

  • Called when Error received.
Parameters
errorError : Error object