Web3Wallet class

Implemented types

Constructors

Web3Wallet({required ICore core, required PairingMetadata metadata})

Properties

authEngine IAuthEngine
getter/setter pairoverride-getter
authKeys IGenericStore<AuthPublicKey>
no setteroverride
authRequests IGenericStore<PendingAuthRequest>
no setteroverride
completeRequests IGenericStore<StoredCacao>
no setteroverride
core ICore
final
hashCode int
The hash code for this object.
no setterinherited
metadata PairingMetadata
final
onAuthRequest → Event<AuthRequest>
---------- AUTH ENGINE ----------///
no setteroverride
onProposalExpire → Event<SessionProposalEvent>
no setteroverride
onSessionConnect → Event<SessionConnect>
---------- SIGN ENGINE ----------///
no setteroverride
onSessionDelete → Event<SessionDelete>
no setteroverride
onSessionExpire → Event<SessionExpire>
no setteroverride
onSessionPing → Event<SessionPing>
no setteroverride
onSessionProposal → Event<SessionProposalEvent>
no setteroverride
onSessionProposalError → Event<SessionProposalErrorEvent>
no setteroverride
onSessionRequest → Event<SessionRequestEvent>
no setteroverride
pairings IPairingStore
no setteroverride
pairingTopics IGenericStore<String>
no setteroverride
pendingRequests IGenericStore<SessionRequest>
no setteroverride
proposals IGenericStore<ProposalData>
no setteroverride
protocol String
---------- GENERIC ----------///
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sessions ISessions
no setteroverride
signEngine ISignEngine
getter/setter pairoverride-getter
version int
final

Methods

approveSession({required int id, required Map<String, Namespace> namespaces, String? relayProtocol}) Future<ApproveResponse>
override
disconnectSession({required String topic, required WalletConnectError reason}) Future<void>
override
emitSessionEvent({required String topic, required String chainId, required SessionEventParams event}) Future<void>
override
extendSession({required String topic}) Future<void>
override
find({required Map<String, RequiredNamespace> requiredNamespaces}) SessionData?
override
formatAuthMessage({required String iss, required CacaoRequestPayload cacaoPayload}) String
format payload to message string
override
getActiveSessions() Map<String, SessionData>
override
getCompletedRequestsForPairing({required String pairingTopic}) Map<int, StoredCacao>
override
getPendingAuthRequests() Map<int, PendingAuthRequest>
override
getPendingSessionProposals() Map<String, ProposalData>
override
getPendingSessionRequests() Map<String, SessionRequest>
override
getSessionsForPairing({required String pairingTopic}) Map<String, SessionData>
override
init() Future<void>
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pair({required Uri uri}) Future<PairingInfo>
override
registerAccount({required String chainId, required String accountAddress}) → void
Register accounts for a given namespace or chainId. Used to construct the Namespaces map for the session proposal. Each account must follow the namespace:chainId:address format or this will throw an error.
override
registerEventEmitter({required String chainId, required String event}) → void
Register event emitters for a given namespace or chainId Used to construct the Namespaces map for the session proposal
override
registerRequestHandler({required String chainId, required String method, dynamic handler(String, dynamic)?}) → void
override
rejectSession({required int id, required WalletConnectError reason}) Future<void>
override
respondAuthRequest({required int id, required String iss, CacaoSignature? signature, WalletConnectError? error}) Future<void>
respond wallet authentication
override
respondSessionRequest({required String topic, required JsonRpcResponse response}) Future<void>
override
toString() String
A string representation of this object.
inherited
updateSession({required String topic, required Map<String, Namespace> namespaces}) Future<void>
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

createInstance({required String projectId, String relayUrl = WalletConnectConstants.DEFAULT_RELAY_URL, required PairingMetadata metadata, bool memoryStore = false, IHttpClient httpClient = const HttpWrapper()}) Future<Web3Wallet>