diff --git a/Runtime/Scripts/Beacon/WalletEventManager.cs b/Runtime/Scripts/Beacon/WalletEventManager.cs index 930751bd..5551e931 100644 --- a/Runtime/Scripts/Beacon/WalletEventManager.cs +++ b/Runtime/Scripts/Beacon/WalletEventManager.cs @@ -33,7 +33,7 @@ public class WalletEventManager : MonoBehaviour private Action payloadSigned; /// - /// Occurs when an account connected successfully. Provides the account information. + /// Runs when an account connects successfully. Provides the account information. /// /// /// Provides an object containing the address and public key of the connected account. @@ -52,7 +52,7 @@ public event Action AccountConnected } /// - /// Occurs when the connection to an account failed. Provides error information. + /// Runs when a connection to an account fails. Provides error information. /// /// /// Provides an object containing the error message of the failed connection attempt. @@ -71,7 +71,7 @@ public event Action AccountConnectionFailed } /// - /// Occurs when an account disconnected successfully. Provides the account information. + /// Runs when an account disconnects successfully. Provides the account information. /// /// /// Provides an object containing the address and public key of the disconnected account. @@ -90,7 +90,7 @@ public event Action AccountDisconnected } /// - /// Occurs when a contract call completed successfully. Provides the result of the call. + /// Runs when a call to a smart contract is confirmed on the blockchain. Provides the result of the call. /// /// /// Provides an object with the transaction hash and success status. @@ -110,7 +110,7 @@ public event Action ContractCallCompleted } /// - /// Occurs when a contract call fails. Provides error details. + /// Runs when a call to a smart contract fails. Provides error details. /// /// /// Provides an object containing the error message of the failed contract call. @@ -129,7 +129,7 @@ public event Action ContractCallFailed } /// - /// Occurs when a contract call is injected into the blockchain. Provides the result of the injection. + /// Runs when a call to a smart contract is sent to Tezos but before it has been included in a block and confirmed. Provides the hash of the transaction. /// /// /// Provides an object containing the transaction hash and success status after the @@ -149,7 +149,7 @@ public event Action ContractCallInjected } /// - /// Occurs when handshake data is received. Provides the handshake details. + /// Runs when a handshake with a user's wallet application is received. Provides the handshake details. /// /// /// Provides a object with the pairing information required for user completion. @@ -169,7 +169,7 @@ public event Action HandshakeReceived } /// - /// Occurs when the pairing process with a DApp is completed successfully. Provides details of the pairing completion. + /// Runs when the user's wallet is connected but before the user has approved the connection in the wallet app. Provides details of the pairing completion. /// /// /// Provides a object with details about the pairing, such as the DApp's public key and @@ -191,7 +191,7 @@ public event Action PairingCompleted } /// - /// Occurs when a payload has been signed. Provides the sign result. + /// Runs when the user signs a payload. Provides the sign result. /// /// /// Provides a object containing the signature value.