Hi, i am not able to get reserves for certains meme tokens. Cant find anything they share in common but here are two examples maybe you can find a way to be able to provide reserve data for them.
import Moralis from 'moralis';
try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});
const response = await Moralis.EvmApi.defi.getPairReserves({
"chain": "0x1",
"pairAddress": "0xdce93ed9ae7c53143e19cf799d156b72d1cc2777"
});
console.log(response.raw);
} catch (e) {
console.error(e);
}
import Moralis from 'moralis';
try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});
const response = await Moralis.EvmApi.defi.getPairReserves({
"chain": "0x1",
"pairAddress": "0x6c4c7f46d9d4ef6bc5c9e155f011ad19fc4ef321"
});
console.log(response.raw);
} catch (e) {
console.error(e);
}