You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CIP-0095 | Misspelling of DeprecatedCertificate (#875)
* Correcting a typo in implementation details for error types for CIP-0095
Minor wording improvements to the standard committed alongside.
* CIP-0095 | Reordered the newly introduced DRep data types to make their dependency clearer
The ordering now matches the order in CIP-0105.
Also updated the first paragraph to a more expressive wording.
@@ -381,8 +381,8 @@ should be able to be recognized by supporting wallets.
381
381
382
382
##### Unsupported Inspection
383
383
384
-
In the Conway ledger era two certificate types are depreciated`genesis_key_delegation` and `move_instantaneous_rewards_cert`.
385
-
If the wallet receives a transaction containing a depreciated certificate it should return a `TxSignError` with an error code of `DepreciatedCertificate`.
384
+
In the Conway ledger era two certificate types are deprecated`genesis_key_delegation` and `move_instantaneous_rewards_cert`.
385
+
If the wallet receives a transaction containing a deprecated certificate it should return a `TxSignError` with an error code of `DeprecatedCertificate`.
386
386
387
387
| Index | Unsupported Pre-Conway Certificates |
388
388
| ----- | ----------------------------------- |
@@ -411,7 +411,7 @@ endpoint before building the final transaction.
411
411
| `APIError` | `AccountChange` | `true` or `false` | Returned if wallet has changed account, meaning connection should be reestablished. |
412
412
| `TxSignError` | `ProofGeneration` | `false` | Returned if user has accepted transaction to sign, but the wallet is unable to sign because it does not have the required key(s). |
413
413
| `TxSignError` | `UserDeclined` | `true` or `false` | Returned if user has declined to sign the transaction. |
414
-
| `TxSignError` | `DepreciatedCertificate` | `true` or `false` | Returned regardless of user consent if the transaction contains a depreciated certificate. |
414
+
| `TxSignError` | `DeprecatedCertificate` | `true` or `false` | Returned regardless of user consent if the transaction contains a deprecated certificate. |
415
415
<!-- prettier-ignore-stop -->
416
416
417
417
If `partialSign` is `true`, the wallet only tries to sign what it can. If
@@ -556,7 +556,7 @@ wallet has already been made via
556
556
3. **Inspect and Sign:** The app passes the transaction to the wallet via
557
557
`.signTx()`. The wallet inspects the content of the transaction, informing
558
558
the user of the client app's intension. If the user confirms that they are
559
-
happy to sign, the wallet returns the appropriate witnesses, of payment key
559
+
willing to sign, the wallet returns the appropriate witnesses, of payment key
560
560
and stake key.
561
561
4. **Submit:** The app will add the provided witnesses into the transaction body
562
562
and then pass the witnessed transaction back to the wallet for submission via
@@ -635,7 +635,7 @@ CIP-1694; Ada holders and DReps, this decision was three fold. Primarily, this
635
635
is to allow these groups to utilize a web-based client to participate in
636
636
Cardano's governance. These groups are likely less comfortable utilizing
637
637
command-line interfaces than other groups, thus making alternatives from them is
638
-
a priority. Secondly, the other types of actor (constitution committee member
638
+
a priority. Secondly, the other types of actor (constitutional committee members
639
639
and SPOs) are identified by different credentials than Ada holders and DReps,
640
640
making their integration in this specification more complex. These alternative
641
641
credentials are unlikely to be stored within standard wallet software which may
@@ -666,7 +666,7 @@ cold key setup. Hot and cold keys are not suited for standard light wallets.
666
666
667
667
Genesis key delegation and move instantaneous reward certificates (see in
0 commit comments