Introduction
Guides
- Overview
- Usage
- Atomic Asset
- Collection
- GraphQL
- Utilities
Types References
Types References
Collection
Create Collection with Asset Ids
Options for creating an collection with Asset Ids.
- collection: CollectionSpecificTags
- discoverability: DiscoverabilityTags
- stamp: StampableType
- additionalTags: Tag[]
/**
* Represents the options for a collection.
*/
export type CreateCollectionWithAssetIdsOpts = {
/**
* The Atomic Assets to be Included in the collection
*/
assetIds: string[];
/**
* The Collection Specific tags as per specification
*
* https://specs.arweave.dev/?tx=4zqtz8-U4LNKjFU4gZ28oKkV6bTlfzJiguqjbMl9R4Q
*/
collection: CollectionSpecificTags;
/**
* The discoverability tags associated with the asset.
*/
discoverability: Omit<DiscoverabilityTags, 'type'> & {
type: 'Document';
};
/**
* Optional Atomic Assets Tags if you want the Collection to be Stampable.
*
* Defaults to false
*/
stamp?: StampableType;
/**
* Additional tags associated with the asset.
*/
additionalTags?: Tag[];
};
Stampable Type
/**
* Represents a stampable type.
*/
export type StampableType =
| {
isStampable: true;
/**
* Owner of the Collection
*/
owner: string;
/**
* Collection Name
*/
collectionName: string;
/**
* Collection Ticker
*/
ticker: string;
}
| { isStampable: false };
Create Collection with Assets
Options for creating an collection with Assets.
- license: LicenseTags
- collection: CollectionSpecificTags
- discoverability: DiscoverabilityTags
- stamp: StampableType
export type CreateCollectionOpts = {
/**
* Atomic assets can be a Array of files or folder directory.
*/
assets: File[] | string;
/**
* The Collection Thumbnail File or relative path. (recommended size: 300x300)
*/
thumbnail: File | string;
/**
* The Collection Banner File or relative path. (recommended size: 1600x900)
*/
banner: File | string;
/**
* License Tags associated with the Collection. Same License tags will be
* applied to all the Atomic Assets.
*/
license: Tags.LicenseTags;
/**
* Initial State for the Atomic Assets
*/
initState: {
ticker: string;
balances: Record<string, number>;
};
/**
* The Collection Specific tags as per specification
*/
collection: Omit<Tags.CollectionSpecificTags, 'thumbnail' | 'banner'>;
/**
* The discoverability tags associated with the collection.
*/
discoverability: Omit<Tags.DiscoverabilityTags, 'type'> & {
type: 'Document';
};
/**
* Tags associated with stamps. Use this if you want your collection to be stampable.
*/
stamp?: StampableType;
/**
* Additional tags associated with the collection.
*/
additionalTags?: Tag[];
};
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.