Hello,
I would like your help to get data from functions that are within a contract. I need to track the amount of dividends that will be distributed to holders. Can I do this using Moralis?
I put some functions down here as an example.
uint256 public totalShares;
uint256 public totalDividends;
uint256 public totalDistributed;
uint256 public dividendsPerShare;
uint256 public dividendsPerShareAccuracyFactor = 10 ** 36;
uint256 currentIndex;
I appreciate your attention,