Skip to content

Commit 1d77440

Browse files
committed
Add Support for matter Certification
Refactored and added support for matter in addition to zigbee
1 parent 1b76450 commit 1d77440

27 files changed

+210
-175
lines changed

docs/cli-help.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Roles:
7777
- `Trustee` - Is able to create accounts, assign roles, approve root certificates.
7878
- `Vendor` - Is able to add models.
7979
- `TestHouse` - Is able to add testing results for a model.
80-
- `ZBCertificationCenter` - Is able to certify and revoke models.
80+
- `CertificationCenter` - Is able to certify and revoke models.
8181
- `NodeAdmin` - Is able to add validator nodes to the network.
8282

8383
##### Transactions
@@ -91,7 +91,7 @@ Roles:
9191
Flags:
9292
- address: `string` - bench32 encoded account address
9393
- pubkey: `string` - bench32 encoded public key
94-
- roles: `optional(string)` - comma-separated list of roles (supported roles: Vendor, TestHouse, ZBCertificationCenter, Trustee, NodeAdmin)
94+
- roles: `optional(string)` - comma-separated list of roles (supported roles: Vendor, TestHouse, CertificationCenter, Trustee, NodeAdmin)
9595
- from: `string` - name or address of private key with which to sign
9696

9797
Example: `dclcli tx auth propose-add-account --address=cosmos15ljvz60tfekhstz8lcyy0c9l8dys5qa2nnx4d7 --pubkey=cosmospub1addwnpepqtrnrp93hswlsrzvltc3n8z7hjg9dxuh3n4rkp2w2verwfr8yg27c95l4k3 --roles=Vendor,NodeAdmin --from=jack`
@@ -546,49 +546,49 @@ The set of commands that allows you to manage model certification information.
546546
- Certify a model associated with the given VID/PID. Note that the corresponding model and the test results must present on the ledger.
547547
Only the owner can update an existing record.
548548

549-
Role: `ZBCertificationCenter`
549+
Role: `CertificationCenter`
550550

551-
Command: `dclcli tx compliance certify-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> --certification-date=<rfc3339 encoded date> --from=<account>`
551+
Command: `dclcli tx compliance certify-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> --certificationDate=<rfc3339 encoded date> --from=<account>`
552552

553553
Flags:
554554
- vid: `uint16` - model vendor ID
555555
- pid: `uint16` - model product ID
556-
- certification-type: `string` - certification type (zb` is the only supported value now)
557-
- certification-date: `string` - the date of model certification (rfc3339 encoded)
556+
- certificationType: `string` - certification type (zb` is the only supported value now)
557+
- certificationDate: `string` - the date of model certification (rfc3339 encoded)
558558
- from: `string` - name or address of private key with which to sign
559559
- reason: `optional(string)` - an optional comment describing the reason of certification
560560

561-
Example: `dclcli tx compliance certify-model --vid=1 --pid=1 --certification-type="zb" --certification-date="2020-04-16T06:04:57.05Z" --from=jack`
561+
Example: `dclcli tx compliance certify-model --vid=1 --pid=1 --certificationType="zb" --certificationDate="2020-04-16T06:04:57.05Z" --from=jack`
562562

563563
- Revoke certification for a model associated with the given VID/PID. Only the owner can update an existing record.
564564

565-
Role: `ZBCertificationCenter`
565+
Role: `CertificationCenter`
566566

567-
Command: ` dclcli tx compliance revoke-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> --revocation-date=<rfc3339 encoded date> --from=<account>`
567+
Command: ` dclcli tx compliance revoke-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> --revocationDate=<rfc3339 encoded date> --from=<account>`
568568

569569
Flags:
570570
- vid: `uint16` - model vendor ID
571571
- pid: `uint16` - model product ID
572-
- certification-type: `string` - certification type (zb` is the only supported value now)
573-
- revocation-date: `string` - the date of model revocation (rfc3339 encoded)
572+
- certificationType: `string` - certification type (zb` is the only supported value now)
573+
- revocationDate: `string` - the date of model revocation (rfc3339 encoded)
574574
- from: `string` - name or address of private key with which to sign
575575
- reason: `optional(string)` - an optional comment describing the reason of revocation
576576

577-
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certification-type="zb" --revocation-date="2020-04-16T06:04:57.05Z" --from=jack`
577+
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certificationType="zb" --revocationDate="2020-04-16T06:04:57.05Z" --from=jack`
578578

579-
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certification-type="zb" --revocation-date="2020-04-16T06:04:57.05Z" --reason "Some Reason" --from=jack`
579+
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certificationType="zb" --revocationDate="2020-04-16T06:04:57.05Z" --reason "Some Reason" --from=jack`
580580

581581
##### Queries
582582
- Check if the model associated with the given VID/PID is certified.
583583

584-
Command: `dclcli query compliance certified-model --vid=<uint16> --pid=<uint16> --certification-type=<zb>`
584+
Command: `dclcli query compliance certified-model --vid=<uint16> --pid=<uint16> --certificationType=<zb>`
585585

586586
Flags:
587587
- vid: `uint16` - model vendor ID
588588
- pid: `uint16` - model product ID
589-
- certification-type: `string` - certification type (zb` is the only supported value now)
589+
- certificationType: `string` - certification type (zb` is the only supported value now)
590590

591-
Example: `dclcli query compliance certified-model --vid=1 --pid=1 --certification-type="zb"`
591+
Example: `dclcli query compliance certified-model --vid=1 --pid=1 --certificationType="zb"`
592592

593593
- Query all certified models.
594594

@@ -602,14 +602,14 @@ Only the owner can update an existing record.
602602

603603
- Check if the model associated with the given VID/PID is revoked.
604604

605-
Command: `dclcli query compliance revoked-model --vid=<uint16> --pid=<uint16> --certification-type=<zb>`
605+
Command: `dclcli query compliance revoked-model --vid=<uint16> --pid=<uint16> --certificationType=<zb>`
606606

607607
Flags:
608608
- vid: `uint16` - model vendor ID
609609
- pid: `uint16` - model product ID
610-
- certification-type: `string` - certification type (zb` is the only supported value now)
610+
- certificationType: `string` - certification type (zb` is the only supported value now)
611611

612-
Example: `dclcli query compliance revoked-model --vid=1 --pid=1 --certification-type="zb"`
612+
Example: `dclcli query compliance revoked-model --vid=1 --pid=1 --certificationType="zb"`
613613

614614
- Query all revoked models.
615615

@@ -623,14 +623,14 @@ Only the owner can update an existing record.
623623

624624
- Query compliance info for model associated with VID/PID.
625625

626-
Command: `dclcli query compliance compliance-info --vid=<uint16> --pid=<uint16> --certification-type=<zb>`
626+
Command: `dclcli query compliance compliance-info --vid=<uint16> --pid=<uint16> --certificationType=<zb>`
627627

628628
Flags:
629629
- vid: `uint16` - model vendor ID
630630
- pid: `uint16` - model product ID
631-
- certification-type: `string` - certification type (zb` is the only supported value now)
631+
- certificationType: `string` - certification type (zb` is the only supported value now)
632632

633-
Example: `dclcli query compliance compliance-info --vid=1 --pid=1 --certification-type="zb"`
633+
Example: `dclcli query compliance compliance-info --vid=1 --pid=1 --certificationType="zb"`
634634

635635
- Query all compliance infos.
636636

docs/how-to.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Once approved the account can be used to send transactions. See [use_case_txn_au
128128
Flags:
129129
- address: `string` - bench32 encoded account address
130130
- pubkey: `string` - bench32 encoded public key
131-
- roles: `optional(string)` - comma-separated list of roles (supported roles: Vendor, TestHouse, ZBCertificationCenter, Trustee, NodeAdmin)
131+
- roles: `optional(string)` - comma-separated list of roles (supported roles: Vendor, TestHouse, CertificationCenter, Trustee, NodeAdmin)
132132
- from: `string` - name or address of private key with which to sign
133133

134134
Example: `dclcli tx auth propose-add-account --address=cosmos15ljvz60tfekhstz8lcyy0c9l8dys5qa2nnx4d7 --pubkey=cosmospub1addwnpepqtrnrp93hswlsrzvltc3n8z7hjg9dxuh3n4rkp2w2verwfr8yg27c95l4k3 --roles=Vendor,NodeAdmin --from=jack`
@@ -358,36 +358,36 @@ This step is needed for on-ledger certification use case only, see [use_cases_de
358358

359359
The corresponding model and the test results must present on the ledger.
360360

361-
Command: `dclcli tx compliance certify-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> --certification-date=<rfc3339 encoded date> --from=<account>`
361+
Command: `dclcli tx compliance certify-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> --certificationDate=<rfc3339 encoded date> --from=<account>`
362362

363363
Flags:
364364
- vid: `uint16` - model vendor ID
365365
- pid: `uint16` - model product ID
366-
- certification-type: `string` - certification type (zb` is the only supported value now)
367-
- certification-date: `string` - the date of model certification (rfc3339 encoded)
366+
- certificationType: `string` - certification type (zb` is the only supported value now)
367+
- certificationDate: `string` - the date of model certification (rfc3339 encoded)
368368
- from: `string` - name or address of private key with which to sign
369369
- reason: `optional(string)` - an optional comment describing the reason of certification
370370

371-
Example: `dclcli tx compliance certify-model --vid=1 --pid=1 --certification-type="zb" --certification-date="2020-04-16T06:04:57.05Z" --from=jack`
371+
Example: `dclcli tx compliance certify-model --vid=1 --pid=1 --certificationType="zb" --certificationDate="2020-04-16T06:04:57.05Z" --from=jack`
372372

373373
##### 2. Revoke certification for the device model with the given VID/PID
374374
This step can be used in either on-ledger certification use case
375375
([use_cases_device_on_ledger_certification](use_cases/use_cases_device_on_ledger_certification.png))
376376
or off-ledger certification use case ([use_cases_device_off_ledger_certification](use_cases/use_cases_device_off_ledger_certification.png)).
377377

378-
Command: ` dclcli tx compliance revoke-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> --revocation-date=<rfc3339 encoded date> --from=<account>`
378+
Command: ` dclcli tx compliance revoke-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> --revocationDate=<rfc3339 encoded date> --from=<account>`
379379

380380
Flags:
381381
- vid: `uint16` - model vendor ID
382382
- pid: `uint16` - model product ID
383-
- certification-type: `string` - certification type (zb` is the only supported value now)
384-
- revocation-date: `string` - the date of model revocation (rfc3339 encoded)
383+
- certificationType: `string` - certification type (zb` is the only supported value now)
384+
- revocationDate: `string` - the date of model revocation (rfc3339 encoded)
385385
- from: `string` - name or address of private key with which to sign
386386
- reason: `optional(string)` - an optional comment describing the reason of revocation
387387

388-
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certification-type="zb" --revocation-date="2020-04-16T06:04:57.05Z" --from=jack`
388+
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certificationType="zb" --revocationDate="2020-04-16T06:04:57.05Z" --from=jack`
389389

390-
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certification-type="zb" --revocation-date="2020-04-16T06:04:57.05Z" --reason "Some Reason" --from=jack`
390+
Example: `dclcli tx compliance revoke-model --vid=1 --pid=1 --certificationType="zb" --revocationDate="2020-04-16T06:04:57.05Z" --reason "Some Reason" --from=jack`
391391

392392

393393
## Node Admin Instructions (Setting up a new Validator Node)

docs/quickStartGuide.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ $ $ dclcli query compliancetest test-result --vid=2020 --pid=10
164164
==== Check Zigbee Certification Status
165165
[source,bash]
166166
----
167-
$ dclcli query compliance certified-model --vid=2020 --pid=10 --certification-type="zb"
167+
$ dclcli query compliance certified-model --vid=2020 --pid=10 --certificationType="zb"
168168
`{
169169
"result": {
170170
"value": true

docs/transactions.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ an Account or sign the request.
1414
- Trustee
1515
- Vendor
1616
- TestHouse
17-
- ZBCertificationCenter
17+
- CertificationCenter
1818
- NodeAdmin
1919
- All read (get) requests return the current `height` of the ledger in addition to the
2020
requested data. The `height` can be used to get a delta (changes) from the last state that the user has.
@@ -960,9 +960,9 @@ from the revocation list.
960960
- `2:<vid>` : `<compliance pids>`
961961
- `3:<vid>` : `<revoked pids>`
962962
- Who can send:
963-
- ZBCertificationCenter
963+
- CertificationCenter
964964
- CLI command:
965-
- `dclcli tx compliance certify-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> --certification-date=<rfc3339 encoded date> --from=<account> .... `
965+
- `dclcli tx compliance certify-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> --certificationDate=<rfc3339 encoded date> --from=<account> .... `
966966
- REST API:
967967
- PUT `/compliance/certified/vid/pid/certification_type`
968968

@@ -990,9 +990,9 @@ is written on the ledger (`CERTIFY_MODEL` was called), or
990990
- `2:<vid>` : `<compliance pids>`
991991
- `3:<vid>` : `<revocation pids>`
992992
- Who can send:
993-
- ZBCertificationCenter
993+
- CertificationCenter
994994
- CLI command:
995-
- `dclcli tx compliance revoke-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> --revocation-date=<rfc3339 encoded date> --from=<account> .... `
995+
- `dclcli tx compliance revoke-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> --revocationDate=<rfc3339 encoded date> --from=<account> .... `
996996
- REST API:
997997
- PUT `/compliance/revoked/vid/pid/certification_type`
998998

@@ -1017,7 +1017,7 @@ You can use `GET_COMPLICE_INFO` method to get the whole compliance information.
10171017
- `certification_type`: string - `zb` is the default and the only supported value now
10181018
- `prev-height`: optional(bool) - query data from previous height to avoid delay linked to state proof verification
10191019
- CLI command:
1020-
- `dclcli query compliance certified-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> .... `
1020+
- `dclcli query compliance certified-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> .... `
10211021
- REST API:
10221022
- GET `/compliance/certified/vid/pid/certification_type`
10231023
- Result
@@ -1050,7 +1050,7 @@ You can use `GET_COMPLICE_INFO` method to get the whole compliance information.
10501050
- `certification_type`: string - `zb` is the default and the only supported value now
10511051
- `prev-height`: optional(bool) - query data from previous height to avoid delay linked to state proof verification
10521052
- CLI command:
1053-
- `dclcli query compliance revoked-model --vid=<uint16> --pid=<uint16> --certification-type=<zb> .... `
1053+
- `dclcli query compliance revoked-model --vid=<uint16> --pid=<uint16> --certificationType=<zb> .... `
10541054
- REST API:
10551055
- GET `/compliance/revoked/vid/pid/certification_type`
10561056
- Result:
@@ -1078,7 +1078,7 @@ This function responds with `NotFoundError` (404 code) if compliance information
10781078
- `certification_type`: string - `zb` is the default and the only supported value now
10791079
- `prev-height`: optional(bool) - query data from previous height to avoid delay linked to state proof verification
10801080
- CLI command:
1081-
- `dclcli query compliance compliance-info --vid=<uint16> --pid=<uint16> --certification-type=<zb> .... `
1081+
- `dclcli query compliance compliance-info --vid=<uint16> --pid=<uint16> --certificationType=<zb> .... `
10821082
- REST API:
10831083
- GET `/compliance/vid/pid/certification_type`
10841084
- Result:

0 commit comments

Comments
 (0)