Error

public enum Error : Swift.Error

Various errors that may occur while processing Web3 requests

  • The provider is not configured with an authDelegate

    Declaration

    Swift

    case noDelegate
  • Bitski is not currently logged in

    Declaration

    Swift

    case notLoggedIn(Swift.Error?)
  • Encoding the JSON-RPC request failed

    Declaration

    Swift

    case encodingFailed(Swift.Error?)
  • Decoding the JSON-RPC request failed

    Declaration

    Swift

    case decodingFailed(Swift.Error?)
  • The transaction was canceled by the user

    Declaration

    Swift

    case requestCancelled
  • The response did not include expected results

    Declaration

    Swift

    case unexpectedResponse(Swift.Error?)
  • The JSON-RPC request is missing a result

    Declaration

    Swift

    case missingData
  • The server returned an unexpected response code

    Declaration

    Swift

    case invalidResponseCode