mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-21 17:15:10 +00:00
new file: LandContract/application-typescript/src/Admin.js new file: LandContract/application-typescript/src/app.ts new file: LandContract/application-typescript/src/registerEnrollUser.js new file: LandContract/application-typescript/src/utils/AppUtil.ts new file: LandContract/application-typescript/src/utils/CAUtil.ts new file: LandContract/application-typescript/tsconfig.json new file: LandContract/application-typescript/tslint.json new file: chaincode-typescript/Dockerfile new file: chaincode-typescript/dist/Contract/landAsset.d.ts new file: chaincode-typescript/dist/Contract/landAsset.js new file: chaincode-typescript/dist/Contract/landAsset.js.map new file: chaincode-typescript/dist/Contract/landTransaction.d.ts new file: chaincode-typescript/dist/Contract/landTransaction.js new file: chaincode-typescript/dist/Contract/landTransaction.js.map new file: chaincode-typescript/dist/asset.d.ts new file: chaincode-typescript/dist/asset.js new file: chaincode-typescript/dist/asset.js.map new file: chaincode-typescript/dist/assetTransfer.d.ts new file: chaincode-typescript/dist/assetTransfer.js new file: chaincode-typescript/dist/assetTransfer.js.map new file: chaincode-typescript/dist/index.d.ts new file: chaincode-typescript/dist/index.js new file: chaincode-typescript/dist/index.js.map new file: chaincode-typescript/docker/docker-entrypoint.sh new file: chaincode-typescript/npm-shrinkwrap.json new file: chaincode-typescript/package.json new file: chaincode-typescript/src/Contract/Admin.js new file: chaincode-typescript/src/Contract/landAsset.ts new file: chaincode-typescript/src/Contract/landTransaction.ts new file: chaincode-typescript/src/Contract/registerEnrollUser.js new file: chaincode-typescript/src/Contract/userRequest.ts new file: chaincode-typescript/src/Contract/wallet/admin.id new file: chaincode-typescript/src/Contract/wallet/user123.id new file: chaincode-typescript/src/asset.ts new file: chaincode-typescript/src/assetTransfer.ts new file: chaincode-typescript/src/index.ts new file: chaincode-typescript/tsconfig.json new file: chaincode-typescript/tslint.json modified: test-network/compose/compose-ca.yaml modified: test-network/compose/compose-test-net.yaml modified: test-network/compose/docker/docker-compose-bft-test-net.yaml modified: test-network/compose/docker/docker-compose-test-net.yaml modified: test-network/configtx/configtx.yaml modified: test-network/network.sh modified: test-network/organizations/ccp-generate.sh modified: test-network/organizations/cryptogen/crypto-config-org2.yaml new file: test-network/organizations/cryptogen/crypto-config-org3.yaml new file: test-network/organizations/cryptogen/crypto-config-org4.yaml modified: test-network/organizations/fabric-ca/registerEnroll.sh new file: test-network_org4.zip
61 lines
2.8 KiB
YAML
Executable file
61 lines
2.8 KiB
YAML
Executable file
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# "PeerOrgs" - Definition of organizations managing peer nodes
|
|
# ---------------------------------------------------------------------------
|
|
PeerOrgs:
|
|
# ---------------------------------------------------------------------------
|
|
# Org2
|
|
# ---------------------------------------------------------------------------
|
|
- Name: Org2
|
|
Domain: org2.example.com
|
|
EnableNodeOUs: true
|
|
# ---------------------------------------------------------------------------
|
|
# "Specs"
|
|
# ---------------------------------------------------------------------------
|
|
# Uncomment this section to enable the explicit definition of hosts in your
|
|
# configuration. Most users will want to use Template, below
|
|
#
|
|
# Specs is an array of Spec entries. Each Spec entry consists of two fields:
|
|
# - Hostname: (Required) The desired hostname, sans the domain.
|
|
# - CommonName: (Optional) Specifies the template or explicit override for
|
|
# the CN. By default, this is the template:
|
|
#
|
|
# "{{.Hostname}}.{{.Domain}}"
|
|
#
|
|
# which obtains its values from the Spec.Hostname and
|
|
# Org.Domain, respectively.
|
|
# ---------------------------------------------------------------------------
|
|
# Specs:
|
|
# - Hostname: foo # implicitly "foo.org1.example.com"
|
|
# CommonName: foo27.org5.example.com # overrides Hostname-based FQDN set above
|
|
# - Hostname: bar
|
|
# - Hostname: baz
|
|
# ---------------------------------------------------------------------------
|
|
# "Template"
|
|
# ---------------------------------------------------------------------------
|
|
# Allows for the definition of 1 or more hosts that are created sequentially
|
|
# from a template. By default, this looks like "peer%d" from 0 to Count-1.
|
|
# You may override the number of nodes (Count), the starting index (Start)
|
|
# or the template used to construct the name (Hostname).
|
|
#
|
|
# Note: Template and Specs are not mutually exclusive. You may define both
|
|
# sections and the aggregate nodes will be created for you. Take care with
|
|
# name collisions
|
|
# ---------------------------------------------------------------------------
|
|
Template:
|
|
Count: 2
|
|
SANS:
|
|
- localhost
|
|
# Start: 5
|
|
# Hostname: {{.Prefix}}{{.Index}} # default
|
|
# ---------------------------------------------------------------------------
|
|
# "Users"
|
|
# ---------------------------------------------------------------------------
|
|
# Count: The number of user accounts _in addition_ to Admin
|
|
# ---------------------------------------------------------------------------
|
|
Users:
|
|
Count: 2
|