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)

Last updated