updateCollectionImage()

Update collection image with new b64 data

Parameters

export type UpdateCollectionImageProps = {
    collectionId: string;
    value: string; // b64 data for new collection image
}

Examples

const success = await assetlayer.collections.updateCollectionImage({
    collectionId: 'collectionId',
    value: 'b64 data'
});

Return Types

type ReturnType = boolean;

Last updated