On BSC getAllERC20 Internal Server error

I have tried to use Moralis SDK on my node server and tried to use API account/erc20/balances v1 and both options returns Internal Server Error

Chain: bsc
Address: 0xb358ea2404184b915e0a2c25f8d578c5552318c5

API

https://xxx.bigmoralis.com:2053/api/account/erc20/balances?chain=bsc&address=0xb358ea2404184b915e0a2c25f8d578c5552318c5

SDK

const moralis = require('moralis/node')
  moralis.initialize('xxx', '', 'xxx_key')
  moralis.serverURL = 'https://xxx.bigmoralis.com:2053/server'
  const address = '0xb358ea2404184b915e0a2c25f8d578c5552318c5'
  const balances = await moralis.Web3.getAllERC20({ address, chain: 'bsc' })

Response

{
   ...,
   "buffer": {
        "type": "Buffer",
        "data": [
            123,
            ...,
            125
        ]
   },
   "text": "{\"success\":false,\"error\":\"Internal Server error\"}",
    "data": {
        "success": false,
        "error": "Internal Server error"
    }
}

ETH and Matic seems like are works fine

1 Like

Hi,
It looks like we have a problem now, we’ll get back when is fixed.

1 Like

Awesome it works now!!! Thank you very much :wink: @cryptokid

2 Likes