Returns a list of strategies where the requesting wallet is the creator i.e. the strategies you created.
// Initialize the SDK
const activ = await getActiv();
// Set paging parameters
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.listMyStrategies(page, limit);
// Alternative method
const sType = 'my';
const strategiesVar = await activ.query.listStrategiesByCreator(creatorWallet, sType, page, limit);