interface ICreateLockBatchParams {
    partner?: string;
    recipients: ILockBatchRecipient[];
    tokenId: string;
    tokenProgramId?: string | PublicKey;
    transferableByRecipient?: boolean;
    unlockDate: number;
}

Properties

partner?: string
recipients: ILockBatchRecipient[]
tokenId: string
tokenProgramId?: string | PublicKey
transferableByRecipient?: boolean
unlockDate: number