πPosts
The dataset of posts by user
Last updated
The dataset of posts by user
Last updated
// ethers.js example
const usrAddress = "0x1234567890123456789012345678901234567890";
const startFrom = 0;
const whatToGet = [0, 1, 2]; // change these based on your needs
let messageIDs = await contract.getMsgIDsByAddress(usrAddress, startFrom, whatToGet);
console.log(messageIDs);