-
Notifications
You must be signed in to change notification settings - Fork 13
fix(extension): conway-era tx activities line items #860
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,18 +24,26 @@ | |
"outgoing": "Sent", | ||
"sending": "Sending", | ||
"self": "Self Transaction", | ||
"vote": "Vote Signing", | ||
"HardForkInitiationAction": "Hard Fork Initiation Action", | ||
"NewConstitution": "New Constitution Action", | ||
"NoConfidence": "No Confidence Action", | ||
"ParameterChangeAction": "Parameter Change Action", | ||
"TreasuryWithdrawalsAction": "Treasury Withdrawals Action", | ||
"UpdateCommittee": "Update Committee Action", | ||
"InfoAction": "Info Action", | ||
"UpdateDelegateRepresentativeCertificate": "Update DRep", | ||
"StakeVoteDelegationCertificate": "Stake Vote Delegation Certificate", | ||
"StakeRegistrationDelegationCertificate": "Stake Registration Delegation Certificate", | ||
"VoteRegistrationDelegationCertificate": "Vote Registration Delegation Certificate", | ||
"StakeVoteRegistrationDelegationCertificate": "Stake Vote Registration Delegation Certificate", | ||
"ResignCommitteeColdCertificate": "Resign Committee", | ||
"AuthorizeCommitteeHotCertificate": "Authorise Committee", | ||
"RegisterDelegateRepresentativeCertificate": "DRep Registration", | ||
"UnregisterDelegateRepresentativeCertificate": "DRep De-Registration", | ||
"UpdateDelegateRepresentativeCertificate": "DRep Update", | ||
"ResignCommitteeColdCertificate": "Resign Committee", | ||
"StakeRegistrationDelegationCertificate": "Stake Key Registration & Delgation", | ||
"StakeVoteDelegationCertificate": "Stake Key Registration & DRep Delegation", | ||
"StakeVoteRegistrationDelegationCertificate": "Stake Key Registration, Delegation, & DRep Delegation", | ||
"VoteRegistrationDelegationCertificate": "Stake Key Registration & DRep Delegation", | ||
"AuthorizeCommitteeHotCertificate": "Authorize Committee", | ||
"VoteDelegationCertificate": "Vote Delegation", | ||
"vote": "Vote Signing", | ||
"submitProposal": "Governance Proposal" | ||
|
||
"submitProposal": "Confirm Vote" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does not exist anymore |
||
}, | ||
"certificates": { | ||
"headings": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,6 @@ export const mockConwayCertificates: Partial< | |
dRepCredential: CREDENTIAL, | ||
anchor: null | ||
}, | ||
[ConwayEraCertificatesTypes.VoteDelegation]: { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we need to keep this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. reverted |
||
__typename: Wallet.Cardano.CertificateType.VoteDelegation, | ||
dRep: CREDENTIAL, | ||
stakeCredential: CREDENTIAL | ||
}, | ||
[ConwayEraCertificatesTypes.StakeVoteDelegation]: { | ||
__typename: Wallet.Cardano.CertificateType.StakeVoteDelegation, | ||
stakeCredential: CREDENTIAL, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,11 +71,3 @@ export const drepRetirementTx: Wallet.Cardano.HydratedTx = { | |
certificates: [mockConwayCertificates[ConwayEraCertificatesTypes.UnregisterDelegateRepresentative]] | ||
} | ||
}; | ||
|
||
export const voteDelegationTx: Wallet.Cardano.HydratedTx = { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should remain There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. reverted |
||
...tx, | ||
body: { | ||
...tx.body, | ||
certificates: [mockConwayCertificates[ConwayEraCertificatesTypes.VoteDelegation]] | ||
} | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To reflect US english
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved