create-canton-app 1.4.0 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/create.js +3 -3
package/package.json
CHANGED
package/src/commands/create.js
CHANGED
|
@@ -139,9 +139,9 @@ async function create(projectName, options) {
|
|
|
139
139
|
name: 'template',
|
|
140
140
|
message: 'Which template would you like to use?',
|
|
141
141
|
choices: [
|
|
142
|
-
{ name: '
|
|
143
|
-
{ name: '
|
|
144
|
-
{ name: '
|
|
142
|
+
{ name: 'Token Contract (fungible token like ERC20)', value: 'token' },
|
|
143
|
+
{ name: 'Escrow Contract (multi-party escrow)', value: 'escrow' },
|
|
144
|
+
{ name: 'Empty Template (blank starter)', value: 'empty' }
|
|
145
145
|
]
|
|
146
146
|
}
|
|
147
147
|
]);
|