77
77
- ` Trustee ` - Is able to create accounts, assign roles, approve root certificates.
78
78
- ` Vendor ` - Is able to add models.
79
79
- ` 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.
81
81
- ` NodeAdmin ` - Is able to add validator nodes to the network.
82
82
83
83
##### Transactions
91
91
Flags:
92
92
- address: ` string ` - bench32 encoded account address
93
93
- 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)
95
95
- from: ` string ` - name or address of private key with which to sign
96
96
97
97
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.
546
546
- Certify a model associated with the given VID/PID. Note that the corresponding model and the test results must present on the ledger.
547
547
Only the owner can update an existing record.
548
548
549
- Role: ` ZBCertificationCenter `
549
+ Role: ` CertificationCenter `
550
550
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> `
552
552
553
553
Flags:
554
554
- vid: ` uint16 ` - model vendor ID
555
555
- 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)
558
558
- from: ` string ` - name or address of private key with which to sign
559
559
- reason: ` optional(string) ` - an optional comment describing the reason of certification
560
560
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 `
562
562
563
563
- Revoke certification for a model associated with the given VID/PID. Only the owner can update an existing record.
564
564
565
- Role: ` ZBCertificationCenter `
565
+ Role: ` CertificationCenter `
566
566
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> `
568
568
569
569
Flags:
570
570
- vid: ` uint16 ` - model vendor ID
571
571
- 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)
574
574
- from: ` string ` - name or address of private key with which to sign
575
575
- reason: ` optional(string) ` - an optional comment describing the reason of revocation
576
576
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 `
578
578
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 `
580
580
581
581
##### Queries
582
582
- Check if the model associated with the given VID/PID is certified.
583
583
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> `
585
585
586
586
Flags:
587
587
- vid: ` uint16 ` - model vendor ID
588
588
- 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)
590
590
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" `
592
592
593
593
- Query all certified models.
594
594
@@ -602,14 +602,14 @@ Only the owner can update an existing record.
602
602
603
603
- Check if the model associated with the given VID/PID is revoked.
604
604
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> `
606
606
607
607
Flags:
608
608
- vid: ` uint16 ` - model vendor ID
609
609
- 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)
611
611
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" `
613
613
614
614
- Query all revoked models.
615
615
@@ -623,14 +623,14 @@ Only the owner can update an existing record.
623
623
624
624
- Query compliance info for model associated with VID/PID.
625
625
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> `
627
627
628
628
Flags:
629
629
- vid: ` uint16 ` - model vendor ID
630
630
- 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)
632
632
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" `
634
634
635
635
- Query all compliance infos.
636
636
0 commit comments