AlphaCapture Protocol
  • Getting Started
    • Overview
    • Use Cases
  • Basic Concepts
    • Proof of Performance
      • Proof of Idea
      • Proof of Trade
    • Pricing
      • Stop Losses
      • Supported Assets
    • Access Control
    • zkSubscription
      • Marketplaces
    • Verification
    • FAQs
  • SDK Reference
    • Installation
    • Strategies
      • Retrieving Strategies
        • My Strategies
        • Accessible Strategies
        • All Strategies
        • Creator Strategies
      • Get Strategy (Signal)
      • Get Strategy (Rebalance)
        • Get Rebalances
        • Get Rebalance (Single)
        • Get Current Portfolio
    • Ideas
      • Retrieving Ideas
      • Creating Ideas
        • Proof of Idea
        • Proof of Trade
        • Estimated Costs
        • Asset Price Check
      • Adjusting Idea
      • Closing Ideas
        • Proof of Idea
        • Proof of Trade
      • Share of Token
      • Miscellaneous
  • D2 Execution
    • Overview
Powered by GitBook
On this page
  1. SDK Reference
  2. Strategies
  3. Retrieving Strategies

Creator Strategies

Returns a list of strategies for a single creator, based on their creating wallet address and the connected wallet permissions.

// Initialize the SDK
const activ = await getActiv();

// Set the creator's wallet address
const creatorWallet = '0x2767441E044aCd9bbC21a759fB0517494875092d';
const page = 1;
const limit = 5;

// Request strategy details
const strategies = await activ.query.listCreatorStrategies(creatorWallet, page, limit);

// Alternative method
const sType = 'accessible';
const strategiesVar = await activ.query.listStrategiesByCreator(creatorWallet, sType, page, limit);
PreviousAll StrategiesNextGet Strategy (Signal)

Last updated 1 year ago