Ethereum Unity3D Boilerplate Questions

In which directive/namespace is the RunContractFunction ? Because I can’t use it or can’t read the method. I am using Web3 Game Kit Package v1.2.7 and Unity 2021.3.5 .

You can see a full example here (Unity tab).

1 Like

Please help.

Hi @dgoodrich & @0xprof,
We are making WebGL game with Moralis and Metamask using Unity. Everything working fine from login to call contract function.

But we want auto-login Metamask(without popup) if the user reopens the tab or refreshes Tab once the user login with Metamask. It is possible with WebGL Moralis 1.2.10?

thanks

Hi guys,
is there a way to authenticate 2 users on one Unity instance ?
I would like to have two qr codes popin on split screen… is it doable ?
Thanks!

This might be possible if you duplicate all the components, though you may run into issues with socket connections from wallet connect.

I was wondering if anyone knows of a Unity implementation for Unstoppable domains? We have been able to integrate web3auth using their SDK, but Unstoppable doesn’t seem to have a Unity SDK.

How do you want to implement Unstoppable Domains?

Initially we would like to have Unstoppable as an authentication method. Currently we use the built-in wallet connect and our own integration with web3auth.

It can maybe done directly if they have an API. Would be best to contact them if they offer a solution.

I am in contact and waiting for response. I thought someone might have already tackled the implementation and have a solution or general steps.

On a side-note if anyone needs guidance on web3auth implementation with Moralis Unity let me know and I can provide assistance :slight_smile:

If you could make a new topic on using the Web3Auth SDK, that would be great. Some other users have asked about that.

I’m having problems with the self hosted parse server. I’ve installed the following onto my server as follows via ssh:

yarn add parse-server --ignore-engines
yarn dev:db-start
yarn start
cd /var/www/html/DnA/parse-server-migration
yarn build
yarn start
yarn dev:db-start
wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
sudo apt-get update
sudo apt-get install -y mongodb-org
sudo systemctl start mongod
yarn add parse-dashboard --ignore-engines
yarn add moralis --ignore-engines

Then When I start this happens:

yarn start -- --appId *********************************** --masterKey ************************************ --serverURL https://127.0.0.1:1337/server

yarn run v1.22.19
warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
$ node build/index.js --appId pRLSWTZ8RUMngGVmgWmI8IzaUXFgUsX8Z1wZ6leJ --masterKey iDIgWXWAXK49KOIuKexjmwQzofjYyUeEj33s72K5we7GpNCDeUKNakNfCbgkDEqO --serverURL https://127.0.0.1:1337/server
bigint: Failed to load bindings, pure JS will be used (try npm run rebuild?)
warn: DeprecationWarning: The Parse Server option 'directAccess' default will change to 'true' in a future version. Additionally, the environment variable 'PARSE_SERVER_ENABLE_EXPERIMENTAL_DIRECT_ACCESS' will be deprecated and renamed to 'PARSE_SERVER_DIRECT_ACCESS' in a future version; it is currently possible to use either one.
warn: DeprecationWarning: The Parse Server option 'enforcePrivateUsers' default will change to 'true' in a future version.
warn: DeprecationWarning: The Parse Server option 'allowClientClassCreation' default will change to 'false' in a future version.
info: Parse LiveQuery Server started running
Moralis Server is running on port 1337 and stream webhook url https://d59f-167-71-97-138.ngrok.io/streams-webhook
MongoServerSelectionError: connect ECONNREFUSED 127.0.0.1:27017
    at Timeout._onTimeout (/var/www/html/DnA/parse-server-migration/node_modules/mongodb/lib/sdam/topology.js:291:38)
    at listOnTimeout (node:internal/timers:564:17)
    at process.processTimers (node:internal/timers:507:7) {
  reason: TopologyDescription {
    type: 'Unknown',
    servers: Map(1) { 'localhost:27017' => [ServerDescription] },
    stale: false,
    compatible: true,
    heartbeatFrequencyMS: 10000,
    localThresholdMS: 15,
    setName: null,
    maxElectionId: null,
    maxSetVersion: null,
    commonWireVersion: 0,
    logicalSessionTimeoutMinutes: null
  },
  code: undefined,
  [Symbol(errorLabels)]: Set(0) {}
}
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

My Unity code that I’m running with MoralisWeb3ApiSdk (the old-school one yes), AppManager.cs contains only the slight changes you guys said to make:

 public async void WalletConnectHandler(WCSessionData data)
    {
        Debug.Log("Wallet connection received");
        // Extract wallet address from the Wallet Connect Session data object.
        address = data.accounts[0].ToLower();
        string appId = MoralisInterface.GetClient().ApplicationId;
        long serverTime = 0;

        // Retrieve server time from Moralis Server for message signature
        Dictionary<string, object> serverTimeResponse = await MoralisInterface.GetClient().Cloud.RunAsync<Dictionary<string, object>>("getServerTime", new Dictionary<string, object>());

        //if (serverTimeResponse == null || !serverTimeResponse.ContainsKey("dateTime") ||
        //    !long.TryParse(serverTimeResponse["dateTime"].ToString(), out serverTime))
        //{
        //    Debug.Log("Failed to retrieve server time from Moralis Server!");
        //}

if (serverTimeResponse != null)
{
    Debug.LogError("Failed to retrieve server time from Moralis Server!");
}



        if (!MoralisInterface.IsLoggedIn())
        {
            Debug.Log($"Sending sign request for {address} ...");


IDictionary<string, object> requestMessageParams = new Dictionary<string, object>();

requestMessageParams.Add("address", address);
requestMessageParams.Add("chain", "Eth");
requestMessageParams.Add("network", "evm");

Dictionary<string, object> authMessage = await MoralisInterface.GetClient().Cloud.RunAsync<Dictionary<string, object>>("requestMessage", requestMessageParams);

string signMessage = authMessage["message"].ToString();


            //string signMessage = $"Moralis Authentication\n\nId: {appId}:{serverTime}";
            string response = await walletConnect.Session.EthPersonalSign(address, signMessage);
        
            Debug.Log(response);

            Debug.Log($"Signature {response} for {address} was returned.");

            // Create moralis auth data from message signing response.
            Dictionary<string, object> authData = new Dictionary<string, object> { { "id", address }, { "signature", response }, { "data", signMessage } }; 

            Debug.Log("Logging in user.");

            // Attempt to login user.
            var user = await MoralisInterface.LogInAsync(authData);

            if (user != null)
            {
                Debug.Log($"{address} logged in successfully. ");
                infoLabel.text = $"{address}\nlogged in successfully!";
            }
            else
            {
                Debug.Log("User login failed.");
                infoLabel.text = "Login failed";
            }
        }

        UserLoggedInHandler();
    }

    public void WalletConnectSessionEstablished(WalletConnectUnitySession session)
    {
        InitializeWeb3();
    }
    
    private void InitializeWeb3()
    {
        MoralisInterface.SetupWeb3();
    }
    
    #endregion

Even with those above changes I don’t see how the null value is dealt with but hopefully you can enlighten me.

And I’ll include Screenshots of the WebGL running online, dev build along with errors:


Now, I’m REALLY hoping someone can help me, as I’ve really put A LOT of time into this, and the way the Crypto world is going, I’m about ready to jump out a window (or just drop everything and opt for Facebook/Meta login for everything :frowning: ) But yeah seriously, PLEASE HELP!!!
I am able to scan the QR, my wallet sees and signs it (metamask), the browser recognizes this and says ā€œPlease Signā€¦ā€ so it’s NEARLY THERE!!! But then, crash, Cross-Origin blah blah Error…
Dave Cote

Does your Unity project (with WebGL) work with your self-hosted server locally?

I don’t know, my local machine is windows, I’m running it on my server, which is Ubuntu 20.04. It ran fine on moralis server before they retired them. Seeing it run locally on windows wouldn’t tell me much would it?

Basically it seems to start the sign in, then when getting a signature returned it complains about Cors Cross-Origin error and Key not found exception. What does that mean? Do I need my moralis key in some files on the server?

It’s to make sure there’s no immediate issues with your code and how you patched it to work with self-hosted servers. Then we can work from there instead of making assumptions.

Okay, but I posted all code, server commands and errors. Does anything stand out?

Could be a configuration issue with your server. You are also getting Mongo errors that don’t seem related to the use of Unity.

Please test first with your self-hosted server as normal.

PLEASE HELP! I can’t run it on my local PC at home, as it’s a COMPLETELY different setup from the Server I run my site on. I’ve only EVER run it on my server, NEVER on my home PC.
So, assume my server IS local, because I’m running terminal commands on it, installing everything on it. It IS my local machine.

I actually can’t test as per the ā€œnormalā€ instructions you give, as I’m on an older version (I’ve been developing from the start), I’m using MoralisWeb3ApiSdk and don’t know exactly how to transfer everything (unless there’s a legacy tutorial I’m missing).

So, server side, here’s what I’m getting in dev browser:

Setup default wallet MetaMask
build.framework.js:3454:11
Closing Websocket
build.framework.js:3454:11
[WebSocket] Queued 0 subscriptions
build.framework.js:3454:11
[WebSocket] Flushing Queue
build.framework.js:3454:11
[WebSocket] Queue Count: 0
build.framework.js:3454:11
[WebSocket] Queue Flushed
build.framework.js:3454:11
[WebSocket] Opened wss://k.bridge.walletconnect.org
build.framework.js:3454:11
[WebSocket] Open Completed
build.framework.js:3454:11
[WebSocket] Subscribe to 00711fc7-6943-495a-9e95-59b952a2dd93
[WalletConnect] Session Connected
build.framework.js:3454:11
Wallet connection received
build.framework.js:3454:11
Adding Header: Content-Type value: application/json
build.framework.js:3454:11
Adding Header: X-Parse-Installation-Id value: 89268d3a-00c0-4c9f-a690-5d84e89ded7f
build.framework.js:3454:11
Adding Header: X-Parse-Application-Id value: pRLSWTZ8RUMngGVmgWmI8IzaUXFgUsX8Z1wZ6leJ

Everything looks nice until this comes next:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:1337/server/functions/getServerTime. (Reason: CORS request did not succeed). Status code: (null).

Error: Unknown Error
build.framework.js:3447:11
    _JS_Log_Dump https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:3447
    __Z19WebGLPrintfConsolev7LogTypePKcPi https://devilsandangels.io/DnA/selfhost/Build/build.wasm:3566522
    __ZL20InternalErrorConsolePKcz https://devilsandangels.io/DnA/selfhost/Build/build.wasm:3566134
    __Z40DebugStringToFilePostprocessedStacktraceRK21DebugStringToFileData https://devilsandangels.io/DnA/selfhost/Build/build.wasm:3565055
    __Z17DebugStringToFileRK21DebugStringToFileData https://devilsandangels.io/DnA/selfhost/Build/build.wasm:3558400
    __Z35DebugLogHandler_CUSTOM_Internal_Log7LogType9LogOptionP12Il2CppStringP12Il2CppObject https://devilsandangels.io/DnA/selfhost/Build/build.wasm:8283213
    _DebugLogHandler_Internal_Log_mA1D09B6E813ABFAB6358863B6C2D28E3ACA9E101 https://devilsandangels.io/DnA/selfhost/Build/build.wasm:31767430
    _DebugLogHandler_LogFormat_mB876FBE8959FC3D9E9950527A82936F779F7A00C https://devilsandangels.io/DnA/selfhost/Build/build.wasm:31767509
    __ZN23InterfaceActionInvoker4IP12Il2CppObjectS1_S1_S1_E6InvokeEtP11Il2CppClassS1_S1_S1_S1_S1_ https://devilsandangels.io/DnA/selfhost/Build/build.wasm:18771301
    _Logger_Log_mBAF75BD87C8B66198F52DEFF72132C42CA369881 https://devilsandangels.io/DnA/selfhost/Build/build.wasm:31783982
    __ZN23InterfaceActionInvoker2IiP52Expression_t30A004209C10C2D9A9785B2F74EEED431A4D4660E6InvokeEtP11Il2CppClassP12Il2CppObjectiS1_ https://devilsandangels.io/DnA/selfhost/Build/build.wasm:14695275
    _Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485 https://devilsandangels.io/DnA/selfhost/Build/build.wasm:31763403
    dynCall_vii https://devilsandangels.io/DnA/selfhost/Build/build.wasm:44484835
    dynCall_vii https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:29649
    invoke_vii https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:19712
    _U3CExecuteAsyncU3Ed__7_MoveNext_m744143852593D697E1D53BF7A60E79CCC1DF8834 https://devilsandangels.io/DnA/selfhost/Build/build.wasm:20984476
    __ZN23InterfaceActionInvoker06InvokeEtP11Il2CppClassP12Il2CppObject https://devilsandangels.io/DnA/selfhost/Build/build.wasm:14447826
    _AsyncUniTask_2_Run_m009C0A732E50F84A1D89607154BAB6B2ED52C5AC_gshared https://devilsandangels.io/DnA/selfhost/Build/build.wasm:14942216
    _LiveQueryConnectedHandler_Invoke_mE61D8C8CC2C366ADC8C6268763F59B1F037CB0A2 https://devilsandangels.io/DnA/selfhost/Build/build.wasm:17227853
    _PooledDelegate_1_Run_mF261E7CD6B10D4200AC35511CBBA8B01214F568C_gshared https://devilsandangels.io/DnA/selfhost/Build/build.wasm:28134715
    _LiveQueryErrorHandler_Invoke_m19D11A592A74DD8479C9F5E13E3D7BC86B20EBCB https://devilsandangels.io/DnA/selfhost/Build/build.wasm:17228652
    __Z57Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744P50Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DCP12Il2CppObjectPK10MethodInfo https://devilsandangels.io/DnA/selfhost/Build/build.wasm:14551318
    _AsyncOperation_InvokeCompletionEvent_m2BFBB3DD63950957EDE38AE0A8D2587B900CB8F5 https://devilsandangels.io/DnA/selfhost/Build/build.wasm:31735268
    __Z65RuntimeInvoker_TrueVoid_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5PFvvEPK10MethodInfoPvPS4_ https://devilsandangels.io/DnA/selfhost/Build/build.wasm:14116933
    dynCall_iiiii https://devilsandangels.io/DnA/selfhost/Build/build.wasm:44480649
    dynCall_iiiii https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:28929
    invoke_iiiii https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:18272
    __ZN6il2cpp2vm7Runtime6InvokeEPK10MethodInfoPvPS5_PP15Il2CppException https://devilsandangels.io/DnA/selfhost/Build/build.wasm:43885784
    _il2cpp_runtime_invoke https://devilsandangels.io/DnA/selfhost/Build/build.wasm:43730338
    __Z23scripting_method_invoke18ScriptingMethodPtr18ScriptingObjectPtrR18ScriptingArgumentsP21ScriptingExceptionPtrb https://devilsandangels.io/DnA/selfhost/Build/build.wasm:3656359
    __ZN19ScriptingInvocation6InvokeEP21ScriptingExceptionPtrb https://devilsandangels.io/DnA/selfhost/Build/build.wasm:3655169
    __ZN14AsyncOperation15InvokeCoroutineEv https://devilsandangels.io/DnA/selfhost/Build/build.wasm:5792438
    __ZN29UnityWebRequestAsyncOperation15InvokeCoroutineEv https://devilsandangels.io/DnA/selfhost/Build/build.wasm:13424490
    __ZN20UnityWebRequestProtoI24UnityWebRequestTransport16AtomicRefCounter14RedirectHelper14ResponseHelper15DownloadHandler13UploadHandler18CertificateHandler12HeaderHelper14AsyncOperationE19Job_InvokeCoroutineEPS8_ https://devilsandangels.io/DnA/selfhost/Build/build.wasm:13419842
    __ZN18BackgroundJobQueue21ExecuteMainThreadJobsEv https://devilsandangels.io/DnA/selfhost/Build/build.wasm:6406534
    __ZZ23InitPlayerLoopCallbacksvEN43EarlyUpdateExecuteMainThreadJobsRegistrator7ForwardEv https://devilsandangels.io/DnA/selfhost/Build/build.wasm:6494772
    __Z17ExecutePlayerLoopP22NativePlayerLoopSystem https://devilsandangels.io/DnA/selfhost/Build/build.wasm:6246330
    __Z17ExecutePlayerLoopP22NativePlayerLoopSystem https://devilsandangels.io/DnA/selfhost/Build/build.wasm:6246351
    __Z10PlayerLoopv https://devilsandangels.io/DnA/selfhost/Build/build.wasm:6242355
    __ZL8MainLoopv https://devilsandangels.io/DnA/selfhost/Build/build.wasm:6233694
    dynCall_v https://devilsandangels.io/DnA/selfhost/Build/build.wasm:44483642
    dynCall_v https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:29424
    browserIterationFunc https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:9752
    runIter https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:9854
    Browser_mainLoop_runner https://devilsandangels.io/DnA/selfhost/Build/build.framework.js:9790
Error Getting Wallet Info: Unknown Error

So:
Why is CORS failing? The Wallet connection succeeds but then CORS problem and:

KeyNotFoundException: The given key was not present in the dictionary.```

What does THAT mean? What key? the Moralis secret key? App id? Cli key? some key not in the moralis web dashboard?  I'm stuck..