Web3WalletSignMessageExample.cs 319 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Web3Unity.Scripts.Library.Web3Wallet;
  5. public class Web3WalletSignMessageExample : MonoBehaviour
  6. {
  7. async public void OnSignMessage()
  8. {
  9. string response = await Web3Wallet.Sign("hello");
  10. print(response);
  11. }
  12. }