Skip to content

Commit 56b5d3c

Browse files
committed
feat: bump version to 0.0.7-alpha.6 and make tokenCode optional in BuildUploadMintMusicNFTsParams
1 parent 428d944 commit 56b5d3c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aithranetwork/sdk-aithra-toolkit",
3-
"version": "0.0.7-alpha.5",
3+
"version": "0.0.7-alpha.6",
44
"description": "The Aithra Network Toolkit SDK for the agents",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

src/core/manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface BuildUploadMintMusicNFTsParams {
2626
name: string;
2727
creator: string;
2828
};
29-
tokenCode: string;
29+
tokenCode?: string;
3030
nft: {
3131
tokenName: string;
3232
sellerFeeBasisPoints: number;

src/core/nftMetadataFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class MusicNFTMetadataBuilder
7474
{ type: 'audio/mpeg', uri: config.previewMusicUrl }
7575
]
7676
},
77-
symbol: config.tokenCode
77+
symbol: ""
7878
};
7979

8080
return Result.ok(metadata);

0 commit comments

Comments
 (0)