Web3WalletSha3Example.cs 407 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Web3Unity.Scripts.Library.Web3Wallet;
  5. public class Web3WalletSha3Example : MonoBehaviour
  6. {
  7. void Start()
  8. {
  9. string message = "hello";
  10. string hashedMessage = Web3Wallet.Sha3(message);
  11. // 0x1c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8
  12. print(hashedMessage);
  13. }
  14. }