Skip to content

Commit

Permalink
Merge pull request #194 from input-output-hk/nhenin/fixDoc
Browse files Browse the repository at this point in the history
fixed Roles Configuration Documentation
  • Loading branch information
nhenin authored May 20, 2024
2 parents 32b736a + 84238aa commit 1242de8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/runtime/lifecycle/src/generic/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ export interface CreateContractRequestBase {
* { "closed_Role_A_NFT" : mintRole(anAddressBech32)
* , "closed_Role_B_FT" :
* mintRole(
* anAddressBech32,
* anAddressBech32, // Closed Role Token
* 5, // Quantities
* { "name": "closed_Role_B_FT Marlowe Role Token",
* "description": "These are metadata for closedRoleB",
* image": "ipfs://QmaQMH7ybS9KmdYQpa4FMtAhwJH5cNaacpg4fTwhfPvcwj",
* "image": "ipfs://QmaQMH7ybS9KmdYQpa4FMtAhwJH5cNaacpg4fTwhfPvcwj",
* "mediaType": "image/png",
* "files": [
* {
Expand All @@ -154,12 +154,13 @@ export interface CreateContractRequestBase {
* }
* ]
* })
* , "open_Role_C" : mkMintOpenRoleToken()
* , "open_Role_D" : mkMintOpenRoleToken(
* , "open_Role_C" : mintRole("OpenRole")
* , "open_Role_D" : mintRole(
* "OpenRole", // Open Role Token
* 2, // Quantities
* { "name": "open_Role_D Marlowe Role Token",
* "description": "These are metadata for closedRoleB",
* image": "ipfs://QmaQMH7ybS9KmdYQpa4FMtAhwJH5cNaacpg4fTwhfPvcwj",
* "image": "ipfs://QmaQMH7ybS9KmdYQpa4FMtAhwJH5cNaacpg4fTwhfPvcwj",
* "mediaType": "image/png",
* "files": [
* {
Expand Down

0 comments on commit 1242de8

Please sign in to comment.