When I run the following code in TS (Node 12)
await Moralis.start({
serverUrl: moralisServerUrl,
appId: moralisAppId,
masterKey: moralisMasterKey
});
const result = await Moralis.Web3API.token.getAllTokenIds({
chain: '0x1',
address: data.address,
});
I get the following error
Moralis.start warning: to use web3 access, moralisSecret is required
> {"code":141,"error":"required param address not provided","severity":"ERROR","message":"Unhandled error"}
RESPONSE RECEIVED FROM FUNCTION: 500, {
"error": {
"message": "INTERNAL",
"status": "INTERNAL"
}
}
In the Moralis dashboard I donโt see any field defining โSecretโ, where can I get this value?