I am trying to create a custom signup process where I need an unique and constant value to identify the user. To be more specific, the value is appended to @tempmail.com
to generate the user mail.
Thus I can have the user get on board with MetaMask.
My question is what field on user database is constant and unique? Among those on _User
table, iām guessing objectId
is the one I should refer to.
If the ethAddress
is constant regardless the chain selected, I prefer to use it since ethAddress
is provided via MetaMask. Fetching objectId
from Moralis Id is more time consuming, right?
Any advices appreciated.
Thanks.