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. Ideas

Share of Token

After an Idea has been minted, additional wallet holders can be granted share token, enabling them to have access to the Idea (and Strategy).

Only the creator of the Investment Idea can request to add a user.

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

// the id of the previously created NFT
const nftId = 10;

// the address of the wallet holder to add
const walletAddresses = ['0x023C04DB0Deb586F32444A4e154596094c52E7Da'];

// make the request
await activ.giveIdeaAccessTo(nftId, walletAddresses)
PreviousProof of TradeNextMiscellaneous

Last updated 1 year ago