Documentation
    Preparing search index...

    Module @mysten/zksend

    @mysten/zksend

    Create claimable links for transferring coins and NFTs. Recipients can claim assets via URL without needing a wallet set up beforehand.

    npm install @mysten/zksend
    
    • zkSend only supports Mainnet and Testnet at this time.
    • Objects within links must be publicly transferrable.

    You can start creating your own zkSend link using the ZkSendLinkBuilder class. This class constructor takes an object with the following options:

    • sender (required) - The address of the sender / creator of the link.
    • client (optional) - The @mysten/sui client used to fetch data to construct the link. If not provided, a default client will be used.
    • network (optional) - The network that the link will be created for. Defaults to mainnet.
    import { ZkSendLinkBuilder } from '@mysten/zksend';

    const link = new ZkSendLinkBuilder({
    sender: '0x...',
    });

    You can add SUI to the link by calling link.addClaimableMist(). This method takes the following params:

    • amount (required) - The amount of MIST (the base unit of SUI) to add to the link.

    You can add non-SUI coins to the link by calling link.addClaimableBalance(). This method takes the following params:

    • coinType (required) - The coin type of the coin to add to the link (e.g. 0x2::sui::SUI).
    • amount (required) - The amount of the coin to add to the link. Represented in the base unit of the coin.

    The SDK will automatically perform the necessary coin management logic to transfer the defined amount, such as merging and splitting coin objects.

    You can add a publicly-transferrable object to the link by calling link.addClaimableObject(). This method takes the following params:

    • id (required) - The ID of the object. This must be owned by the sender you configured when creating the link.

    You can create objects to add to links in the same transaction the link is created in by using link.addClaimableObjectRef():

    • ref (required) - The reference to the object you want to add to the link.
    • type (required) - The move type of the object you are adding
    const tx = new Transaction();

    const link = new ZkSendLinkBuilder({
    sender: '0x...',
    });

    const newObject = tx.moveCall({
    target: `${PACKAGE_ID}::your_module::mint`,
    });

    link.addClaimableObjectRef({
    ref: newObject,
    type: `${PACKAGE_ID}::your_module::YourType`,
    });

    // Adds the link creation transactions to the transaction
    link.createSendTransaction({
    transaction: tx,
    });

    At any time, you can get the URL for the link by calling link.getLink().

    Once you have built your zkSend link, you need to execute a transaction to transfer assets and make the link claimable.

    You can call the link.createSendTransaction() method, which returns a Transaction object that you can sign and submit.

    const tx = await link.createSendTransaction();

    const { bytes, signature } = tx.sign({ client, signer: keypair });

    const result = await client.executeTransactionBlock({
    transactionBlock: bytes,
    signature,
    });

    If you have a keypair you would like to send the transaction with, you can use the create method as shorthand for creating the send transaction, signing it, and submitting it:

    await link.create({
    signer: yourKeypair,
    // Wait until the new link is ready to be indexed so it is claimable
    waitForTransaction: true,
    });

    To claim a link via the SDK you can use the ZkSendLink class:

    import { ZkSendLink } from '@mysten/zksend';

    // create a link instance from a URL
    const link = await ZkSendLink.fromUrl('https://zksend.com/claim#$abc...');

    // list what claimable assets the link has
    const { nfts, balances } = link.assets;

    // claim all the assets from the link
    await link.claimAssets(addressOfClaimer);

    To list the links created by a specific address, you can use the listCreatedLinks function:

    import { listCreatedLinks } from '@mysten/zksend';

    const { links, hasNextPage, cursor } = await listCreatedLinks({
    address: addressOfCreator,
    });

    // get the claimable assets for this link (will be empty if the link has been claimed)
    const { nfts, balances } = await links[0].assets;

    getSentTransactionsWithLinks will return a list of transactions sent by the provided address. Each result will include the transaction that was sent, along with an array containing any links that were created or regenerated by that transaction.

    import { getSentTransactionsWithLinks } from '@mysten/zksend';

    const { data, hasNextPage, nextCursor } = await getSentTransactionsWithLinks({
    address: addressOfCreator,
    });

    for (const { transaction, links } of data) {
    // get the claimable assets for this link (will be empty if the link has been claimed)
    const firstLink = links[0];

    // link is claimed
    firstLink.claimed;
    const { nfts, balances } = firstLink.assets;

    // claim link
    await firstLink.link.claimAssets(addressOfClaimer);
    }

    By default getSentTransactionsWithLinks will not load the assets for claimed links. This can be changed by passing loadClaimedAssets: true to the function.

    If you lose a link you've created, you can re-generate the link (this can only done from the address that originally created the link):

    import { listCreatedLinks } from '@mysten/zksend';

    const { links, hasNextPage, cursor } = await listCreatedLinks({
    address: addressOfCreator,
    });

    // url will be the new link url
    const { url, transaction } = await links[0].link.createRegenerateTransaction(addressOfLinkCreator);

    // Execute the transaction to regenerate the link
    const result = await client.signAndExecuteTransaction({
    transaction,
    signer: keypair,
    });

    To create multiple links in a single transaction, you can use ZkSendLinkBuilder.createLinks:

    const links = [];

    for (let i = 0; i < 10; i++) {
    const link = new ZkSendLinkBuilder({
    client,
    sender: keypair.toSuiAddress(),
    });

    link.addClaimableMist(100n);
    links.push(link);
    }

    const urls = links.map((link) => link.getLink());

    const tx = await ZkSendLinkBuilder.createLinks({
    links,
    });

    const result = await client.signAndExecuteTransaction({
    transaction: tx,
    signer: keypair,
    });

    See the zkSend SDK documentation for more details.

    Classes

    ZkBag
    ZkSendClient
    ZkSendLinkBuilder

    Interfaces

    CreateZkSendLinkOptions
    LinkBuilderOptions
    ZkBagContractOptions
    ZkSendLinkBuilderOptions
    ZkSendOptions

    Type Aliases

    LoadLinkOptions
    ZkSendCompatibleClient
    ZkSendLinkOptions

    Variables

    MAINNET_CONTRACT_IDS
    TESTNET_CONTRACT_IDS

    Functions

    isClaimTransaction
    zksend