Skip to content

Commit

Permalink
feat: bump version to 0.0.7-alpha.6 and make tokenCode optional in Bu…
Browse files Browse the repository at this point in the history
…ildUploadMintMusicNFTsParams
  • Loading branch information
bucurdavid committed Feb 20, 2025
1 parent 428d944 commit 56b5d3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aithranetwork/sdk-aithra-toolkit",
"version": "0.0.7-alpha.5",
"version": "0.0.7-alpha.6",
"description": "The Aithra Network Toolkit SDK for the agents",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/core/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ interface BuildUploadMintMusicNFTsParams {
name: string;
creator: string;
};
tokenCode: string;
tokenCode?: string;
nft: {
tokenName: string;
sellerFeeBasisPoints: number;
Expand Down
2 changes: 1 addition & 1 deletion src/core/nftMetadataFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class MusicNFTMetadataBuilder
{ type: 'audio/mpeg', uri: config.previewMusicUrl }
]
},
symbol: config.tokenCode
symbol: ""
};

return Result.ok(metadata);
Expand Down

0 comments on commit 56b5d3c

Please sign in to comment.