Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 711 Bytes

File metadata and controls

25 lines (19 loc) · 711 Bytes

Connect to Blocto Wallet

{% hint style="warning" %} Make sure you initialize Blocto SDK first {% endhint %}

Before you start to interact with Blocto wallet, you need to have wallet connected.

Once the wallet connection requested, it would

  • redirect to the Blocto wallet app if it is installed.
  • open Blocto web SDK using ASWebAuthenticationSession if the Blocto Wallet app is not installed.

and ask user to connect the wallet.

BloctoSDK.shared.evm.requestAccount(blockchain: .ethereum) { [weak self] result in
    switch result {
    case .success(let address):
        // handle address here
    case .failure(let error):
        // handle error here
    }
}