ReownSignClient class
- Implemented types
Constructors
- ReownSignClient({required IReownCore core, required PairingMetadata metadata})
Properties
-
authKeys
→ IGenericStore<
AuthPublicKey> -
no setteroverride
- core → IReownCore
-
no setteroverride
- engine ↔ IReownSign
-
getter/setter pairoverride-getter
- hashCode → int
-
The hash code for this object.
no setterinherited
- metadata → PairingMetadata
-
no setteroverride
-
onProposalExpire
→ Event<
SessionProposalEvent> -
no setteroverride
-
onSessionAuthRequest
→ Event<
SessionAuthRequest> -
no setteroverride
-
onSessionAuthResponse
→ Event<
SessionAuthResponse> -
no setteroverride
-
onSessionConnect
→ Event<
SessionConnect> -
no setteroverride
-
onSessionDelete
→ Event<
SessionDelete> -
no setteroverride
-
onSessionEvent
→ Event<
SessionEvent> -
no setteroverride
-
onSessionExpire
→ Event<
SessionExpire> -
no setteroverride
-
onSessionExtend
→ Event<
SessionExtend> -
no setteroverride
-
onSessionPing
→ Event<
SessionPing> -
no setteroverride
-
onSessionProposal
→ Event<
SessionProposalEvent> -
no setteroverride
-
onSessionProposalError
→ Event<
SessionProposalErrorEvent> -
no setteroverride
-
onSessionRequest
→ Event<
SessionRequestEvent> -
no setteroverride
-
onSessionUpdate
→ Event<
SessionUpdate> -
no setteroverride
- pairings → IPairingStore
-
no setteroverride
-
pairingTopics
→ IGenericStore<
String> -
no setteroverride
-
pendingRequests
→ IGenericStore<
SessionRequest> -
no setteroverride
-
proposals
→ IGenericStore<
ProposalData> -
no setteroverride
- protocol → String
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
sessionAuthRequests
→ IGenericStore<
PendingSessionAuthRequest> -
no setteroverride
- sessions → ISessions
-
no setteroverride
- version → int
-
final
Methods
-
approve(
{required int id, required Map< String, Namespace> namespaces, Map<String, String> ? sessionProperties, String? relayProtocol}) → Future<ApproveResponse> -
override
-
approveSessionAuthenticate(
{required int id, List< Cacao> ? auths}) → Future<ApproveResponse> -
override
-
authenticate(
{required SessionAuthRequestParams params, String? walletUniversalLink, String? pairingTopic, List< List< ? methods = const [[MethodConstants.WC_SESSION_AUTHENTICATE]]}) → Future<String> >SessionAuthRequestResponse> -
override
-
connect(
{Map< String, RequiredNamespace> ? requiredNamespaces, Map<String, RequiredNamespace> ? optionalNamespaces, Map<String, String> ? sessionProperties, String? pairingTopic, List<Relay> ? relays, List<List< ? methods = ReownSign.DEFAULT_METHODS}) → Future<String> >ConnectResponse> -
override
-
disconnect(
{required String topic, required ReownSignError reason}) → Future< void> -
override
-
dispatchEnvelope(
String url) → Future< void> -
override
-
emit(
{required String topic, required String chainId, required SessionEventParams event}) → Future< void> -
override
-
extend(
{required String topic}) → Future< void> -
override
-
find(
{required Map< String, RequiredNamespace> requiredNamespaces}) → SessionData? -
override
-
formatAuthMessage(
{required String iss, required CacaoRequestPayload cacaoPayload}) → String -
override
-
getActiveSessions(
) → Map< String, SessionData> -
override
-
getPendingSessionAuthRequests(
) → Map< int, PendingSessionAuthRequest> -
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
-
ping(
{required String topic}) → Future< void> -
override
-
redirectToDapp(
{required String topic, required Redirect? redirect}) → Future< bool> -
override
-
redirectToWallet(
{required String topic, required Redirect? redirect}) → Future< bool> -
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
-
registerEventHandler(
{required String chainId, required String event, dynamic handler(String, dynamic)?}) → void -
override
-
registerRequestHandler(
{required String chainId, required String method, void handler(String, dynamic)?}) → void -
override
-
reject(
{required int id, required ReownSignError reason}) → Future< void> -
override
-
rejectSessionAuthenticate(
{required int id, required ReownSignError reason}) → Future< void> -
override
-
request(
{required String topic, required String chainId, required SessionRequestParams request}) → Future -
override
-
requestReadContract(
{required DeployedContract deployedContract, required String functionName, required String rpcUrl, EthereumAddress? sender, List parameters = const []}) → Future< List> -
override
-
requestWriteContract(
{required String topic, required String chainId, required DeployedContract deployedContract, required String functionName, required Transaction transaction, List parameters = const [], String? method}) → Future -
override
-
respond(
{required String topic, required JsonRpcResponse response}) → Future< void> -
override
-
toString(
) → String -
A string representation of this object.
inherited
-
update(
{required String topic, required Map< String, Namespace> namespaces}) → Future<void> -
override
-
validateSignedCacao(
{required Cacao cacao, required String projectId}) → Future< bool> -
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
createInstance(
{required String projectId, String relayUrl = ReownConstants.DEFAULT_RELAY_URL, required PairingMetadata metadata, bool memoryStore = false, LogLevel logLevel = LogLevel.nothing}) → Future< ReownSignClient>