Skip to content

Commit

Permalink
Add comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariacarmina committed Oct 3, 2024
1 parent d2cc8f9 commit 4551bc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contracts/NFT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export class Nft extends SmartContract {
* @param {String} feeToken address of the token marketplace wants to add fee on top
* @param {String} feeAmount amount of feeToken to be transferred to mpFeeAddress on top, will be converted to WEI
* @param {String} cap Maximum cap (Number) - will be converted to wei
* @param {boolean} confidentialEVM Flag for encrypting the tx on Sapphire when deploying Datatoken template id 4
* @param {String} name Token name
* @param {String} symbol Token symbol
* @param {Number} templateIndex NFT template index
Expand All @@ -45,7 +46,7 @@ export class Nft extends SmartContract {
feeToken: string,
feeAmount: string,
cap: string,
confidentialEVM: boolean = false,
confidentialEVM: boolean = false, // when using datatoken template id 4, tx should be encrypted because it contains files object.
name?: string,
symbol?: string,
templateIndex?: number,
Expand Down

0 comments on commit 4551bc5

Please sign in to comment.