PoggyBird/Assets/Web3Unity/Scripts/Prefabs/Wallet/Web3WalletSignMessageExample.cs
2023-02-28 19:02:09 +05:30

14 lines
319 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Web3Unity.Scripts.Library.Web3Wallet;
public class Web3WalletSignMessageExample : MonoBehaviour
{
async public void OnSignMessage()
{
string response = await Web3Wallet.Sign("hello");
print(response);
}
}