Sign Message
- TypeScript
- Unity
sign
Sign any message with the connected wallet.
Usage
Create a message to be signed and pass it to this method.
This will prompt the user to sign the message from their wallet (or sign it automatically if initialized with a private key).
Once signed, the signature is returned.
// This is the message to be signed
const message = "Sign this message...";
// Now we can sign the message with the connected wallet
const signature = await wallet.sign(message);
Configuration
message
The message to be signed.
const message = "Sign this message...";
Return Value
Returns a string
with the signature.
string;
Sign
Sign any message with the connected wallet.
Usage
Create a message to be signed and pass it to this method.
This will prompt the user to sign the message from their wallet (or sign it automatically if initialized with a private key).
Once signed, the signature is returned.
var data = await sdk.wallet.Sign("my message");
Configuration
message
The message to be signed.
Must be a string
.
Return Value
Returns a string
with the signature.
string