Iām using hardhat localhost and frpc to sync. I setup the server, connect my web app to the server. I login using Metamask. No email. Iām forking from Rinkeby, blocknumber 9693973. My wallet has some ETH in it and Iāve also transferred some tokens to it. So there are some transactions history existing for this address.
When I login, I see 1 row show up in the User table, EthBalance has 1 row, _EthAddress has 1 row. But I dont see any transaction tables.
If I look into Job Status, I see error on syncEthAddress. Cannot read properties of null (reading ānumberā). If I run the job again, I get different error: Address is required.
There is nothing in the logs, neither Info or Error.
Iāve deleted my server 2 times and created new, but always same result. Itās running version 0.0.291. āHistorical User Syncā is on.
Javascript side is simple.
let user = await Moralis.User.current();
user = await Moralis.authenticate({
signingMessage: āHellooooā
})
Any ideas?