Skip to content

Commit 06e9dc8

Browse files
feat: 🎸 Make ticker optional while creating nft collection
1 parent 661b132 commit 06e9dc8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎src/nfts/dto/create-nft-collection.dto.ts‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ export class CreateNftCollectionDto extends TransactionBaseDto {
2121

2222
@ApiProperty({
2323
description:
24-
'The ticker of the NFT Collection. This must either be free or reserved by the Signer',
24+
'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',
2525
example: 'TICKER',
2626
})
27+
@IsOptional()
2728
@IsTicker()
28-
readonly ticker: string;
29+
readonly ticker?: string;
2930

3031
@ApiProperty({
3132
description: 'The type of Asset',

0 commit comments

Comments
 (0)