├── .gitignore ├── LICENSE ├── README.md ├── section_4 └── landreg │ ├── README.md │ ├── landreg@0.0.1.bna │ ├── landreg@0.0.2.bna │ ├── landreg@0.0.3.bna │ ├── landreg@0.0.4.bna │ ├── landreg@0.0.5.bna │ ├── lib │ └── logic.js │ ├── models │ └── org.landreg.cto │ ├── package.json │ ├── permissions.acl │ └── queries.qry ├── section_5 └── landreg │ ├── README.md │ ├── examples │ ├── individuals.json │ └── land_titles.json │ ├── landreg@0.0.5.bna │ ├── landreg@0.0.6.bna │ ├── lib │ └── logic.js │ ├── models │ └── org.landreg.cto │ ├── package.json │ ├── permissions.acl │ └── queries.qry └── section_6 └── landreg ├── .eslintrc.yml ├── .gitignore ├── README.md ├── examples ├── individuals.json └── land_titles.json ├── landreg@0.0.6.bna ├── lib └── logic.js ├── models └── org.landreg.cto ├── package-lock.json ├── package.json ├── permissions.acl ├── queries.qry └── test ├── fixtures.yml └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/README.md -------------------------------------------------------------------------------- /section_4/landreg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/README.md -------------------------------------------------------------------------------- /section_4/landreg/landreg@0.0.1.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/landreg@0.0.1.bna -------------------------------------------------------------------------------- /section_4/landreg/landreg@0.0.2.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/landreg@0.0.2.bna -------------------------------------------------------------------------------- /section_4/landreg/landreg@0.0.3.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/landreg@0.0.3.bna -------------------------------------------------------------------------------- /section_4/landreg/landreg@0.0.4.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/landreg@0.0.4.bna -------------------------------------------------------------------------------- /section_4/landreg/landreg@0.0.5.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/landreg@0.0.5.bna -------------------------------------------------------------------------------- /section_4/landreg/lib/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/lib/logic.js -------------------------------------------------------------------------------- /section_4/landreg/models/org.landreg.cto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/models/org.landreg.cto -------------------------------------------------------------------------------- /section_4/landreg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/package.json -------------------------------------------------------------------------------- /section_4/landreg/permissions.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/permissions.acl -------------------------------------------------------------------------------- /section_4/landreg/queries.qry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_4/landreg/queries.qry -------------------------------------------------------------------------------- /section_5/landreg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/README.md -------------------------------------------------------------------------------- /section_5/landreg/examples/individuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/examples/individuals.json -------------------------------------------------------------------------------- /section_5/landreg/examples/land_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/examples/land_titles.json -------------------------------------------------------------------------------- /section_5/landreg/landreg@0.0.5.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/landreg@0.0.5.bna -------------------------------------------------------------------------------- /section_5/landreg/landreg@0.0.6.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/landreg@0.0.6.bna -------------------------------------------------------------------------------- /section_5/landreg/lib/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/lib/logic.js -------------------------------------------------------------------------------- /section_5/landreg/models/org.landreg.cto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/models/org.landreg.cto -------------------------------------------------------------------------------- /section_5/landreg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/package.json -------------------------------------------------------------------------------- /section_5/landreg/permissions.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/permissions.acl -------------------------------------------------------------------------------- /section_5/landreg/queries.qry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_5/landreg/queries.qry -------------------------------------------------------------------------------- /section_6/landreg/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/.eslintrc.yml -------------------------------------------------------------------------------- /section_6/landreg/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /section_6/landreg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/README.md -------------------------------------------------------------------------------- /section_6/landreg/examples/individuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/examples/individuals.json -------------------------------------------------------------------------------- /section_6/landreg/examples/land_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/examples/land_titles.json -------------------------------------------------------------------------------- /section_6/landreg/landreg@0.0.6.bna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/landreg@0.0.6.bna -------------------------------------------------------------------------------- /section_6/landreg/lib/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/lib/logic.js -------------------------------------------------------------------------------- /section_6/landreg/models/org.landreg.cto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/models/org.landreg.cto -------------------------------------------------------------------------------- /section_6/landreg/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/package-lock.json -------------------------------------------------------------------------------- /section_6/landreg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/package.json -------------------------------------------------------------------------------- /section_6/landreg/permissions.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/permissions.acl -------------------------------------------------------------------------------- /section_6/landreg/queries.qry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/queries.qry -------------------------------------------------------------------------------- /section_6/landreg/test/fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/test/fixtures.yml -------------------------------------------------------------------------------- /section_6/landreg/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hyperledger-for-Blockchain-Applications/HEAD/section_6/landreg/test/test.js --------------------------------------------------------------------------------