chainsafe-test/Assets/Web3Unity/Scripts/Prefabs/Wallet/Web3WalletSignMessageExample.cs
2023-11-28 11:36:18 +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);
}
}