in moralis why is it when I
try and get the price for bsc, or bsc testnet, I get this error: { āmessageā: āNo pools found with enough liquidity, to calculate the priceā }.
from moralis import evm_api
api_key = āYOUR_API_KEYā
params = {
āchainā: ābscā,
āincludeā: āpercent_changeā,
āexchangeā: āpancakeswapv2ā,
āaddressā: ā0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0ā
}
result = evm_api.token.get_token_price(
api_key=api_key,
params=params,
)
print(result)