Skip to content

Commit

Permalink
feat: 🎸 Make ticker optional while creating nft collection
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantasdeveloper committed Nov 22, 2024
1 parent 661b132 commit 06e9dc8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/nfts/dto/create-nft-collection.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ export class CreateNftCollectionDto extends TransactionBaseDto {

@ApiProperty({
description:
'The ticker of the NFT Collection. This must either be free or reserved by the Signer',
'The ticker of the NFT Collection. This must either be free or reserved by the Signer. Note, this value is optional from 7.x chain',
example: 'TICKER',
})
@IsOptional()
@IsTicker()
readonly ticker: string;
readonly ticker?: string;

@ApiProperty({
description: 'The type of Asset',
Expand Down

0 comments on commit 06e9dc8

Please sign in to comment.