Hi there,
We use Moralis to monitor eth transactions but recently the âwatchEthAddressâ API seems to have stopped working.
Iâve got a reproducible snippet which should add an address to the _AddressSyncStatus table but no entry is added after successful invocation.
Please see example below:
import Moralis from 'moralis-v1/node';
Moralis.start({
serverUrl: 'REDACTED!!!',
masterKey: 'REDACTED!!!',
appId: 'REDACTED!!!',
}).then(() => {
const address = '0xba62710cd36b5f801f9717af89055eccaf261045';
Moralis.Cloud.run(
'watchEthAddress',
{
address,
sync_historical: true,
},
{ useMasterKey: true }
)
.then(() => console.log('did it'))
.catch(e => console.error(e));
});
Running the above prints âdid itâ which indicates a successful call:
markoorn@Marks-MBP monorepo % npx ts-node ./moralisTest.ts
did it
But looking at the _AddressSyncStatus table there is no corresponding entry for address â0xba62710cd36b5f801f9717af89055eccaf261045â (see attached screenshot)
Can you please assist?