Returns a list of strategies where the requesting wallet is NOT the creator but where the requesting wallet has explicitly been given access.
// Initialize the SDK
const activ = await getActiv();
// Set paging parameters
const creatorWallet = '0x2767441E044aCd9bbC21a759fB0517494875092d';
const page = req.query.page ? parseInt(req.query.page as string) : 1;
const limit = req.query.limit ? parseInt(req.query.limit as string) : 10;
// Request strategies
const strategies = await activ.query.listStrategiesSubscribedTo(creatorWallet, page, limit);
// Alternative method
const sType = 'accessible';
const strategiesVar = await activ.query.listStrategiesByCreator(creatorWallet, sType, page, limit);