thanks for your help. any luck yet ?
I donât have an update yet
Hi Cryptokid, any updates or eta ? Im writing tax software, but cant use Moralis unless this gas info is working.
I donât really have an update now
Any update in these moralis platform issues ? Its been over a month now.
is there anyway to clone my existing tables/functions into that beta ? Otherwise its a project to re-create it all.
you could connect directly to mongo db, dump database and load some tables in the new server
cloud code you could copy it directly
Hi @cryptokid. I finished setting up the new beta nitro server, although they do not appear to be working. The transaction history tables are not created at all. Is there any specific changes that need to be done on the new platform to get these transaction tables created and populated ?
What you mean by transaction history tables?
The tables usually are not autogenerated and they only appear when there is data in those tables
hmm, the same wallet produces these tables on the old servers.
It looks like some transaction tables are only partially populated(on new platform), on the old servers i have a complete history of my wallet. On the new nitro server i only have the last dozen or so transactions populated (from same wallet)
And whats also not showing are the Balance tables(ethBalance, PolygonBalance, ect) i definitely have wallet balances, so they should appear in Balance tables. As they do with same wallet on old servers.
about transactions, yes, only last 50 transactions are synced, so that the server doesnât get overwhelmed if lots of users are logging in, you can get all the transactions using watch address functionality
some tables will be missing, like that balance table
thanks cryptokid. How do i get the balance tables back ? Those tables are called lots in my code.
And also can you confirm is the below code will enable syncing historical transactions on new servers ?
const results = await Moralis.Cloud.run(âwatchBscAddressâ, {address: â0xâŚâ, sync_historical: true});
Its from the moralis docs, however I have just tried it and its returning invalid function errors.
{âcodeâ:141,âerrorâ:âInvalid function: âwatchBscAddressââ}
I donât know how you can get the balance tables back.
It should work to watch an address by code now, but it should ask for master key.
and you should get this message error for that code: Error: Validation failed. Master key is required to complete this request.
Are you using beta?
In the new version there are no balance tables - donât use them - read this Moralis Nitro Beta Testing
Watch this: https://youtu.be/Lc6vp-NTh0I
The syntax for syncing address programmatically is different now - let me get it
Hello Sam,
The code you sent does look correct, can you confirm that BSC is the selected chain.
Thank you
thanks CryptoKid, same error though.
{âcodeâ:141,âerrorâ:âInvalid function: âwatchEthAddressââ}
Hi Ivan,
Yes on the beta.
Got it, looks like ill have to re-write things if balances are now gone