create-canton-app 2.0.0 → 2.1.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-canton-app",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Scaffold Canton Network/Daml projects in seconds",
5
5
  "main": "bin/create-canton-app.js",
6
6
  "repository": {
@@ -1,9 +1,8 @@
1
- # Asset Ownership System for Canton Network
2
- # CIP-0056 Token Standard Compatible
3
- # SPDX-License-Identifier: Apache-2.0
1
+ # for config file options, refer to
2
+ # https://docs.daml.com/tools/assistant.html#project-config-file-daml-yaml
4
3
 
5
- sdk-version: 3.4.9
6
- name: AssetOwnership
4
+ sdk-version: __VERSION__
5
+ name: __PROJECT_NAME__
7
6
  source: daml/AssetHolding.daml
8
7
  parties:
9
8
  - AssetIssuer
@@ -1,8 +1,8 @@
1
- # Multi-Party Agreement System for Canton Network
2
- # SPDX-License-Identifier: Apache-2.0
1
+ # for config file options, refer to
2
+ # https://docs.daml.com/tools/assistant.html#project-config-file-daml-yaml
3
3
 
4
- sdk-version: 3.4.9
5
- name: MultiPartyAgreement
4
+ sdk-version: __VERSION__
5
+ name: __PROJECT_NAME__
6
6
  source: daml/MultiPartyAgreement.daml
7
7
  parties:
8
8
  - Alice
@@ -1,8 +1,8 @@
1
- # Token Transfer System for Canton Network
2
- # SPDX-License-Identifier: Apache-2.0
1
+ # for config file options, refer to
2
+ # https://docs.daml.com/tools/assistant.html#project-config-file-daml-yaml
3
3
 
4
- sdk-version: 3.4.9
5
- name: TokenTransfer
4
+ sdk-version: __VERSION__
5
+ name: __PROJECT_NAME__
6
6
  source: daml/Token.daml
7
7
  parties:
8
8
  - TokenIssuer