We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Internal
Area Plutus Related to Plutus Scripts (Alonzo).
Describe the feature you'd like Support Plutus script evaluation events in Conway.
Describe alternatives you've considered Not using cardano-api's applyBlock function, using ledger directly.
cardano-api
applyBlock
Additional context / screenshots
toLedgerEventConway :: WrapLedgerEvent (ShelleyBlock protocol (ConwayEra StandardCrypto)) -> Maybe LedgerEvent toLedgerEventConway evt = case unwrapLedgerEvent evt of ShelleyLedgerEventTICK (TickNewEpochEvent newEpochEvent) -> handleConwayNEWEPOCHEvents newEpochEvent ShelleyLedgerEventTICK (TickRupdEvent rewardUpdate) -> handleLedgerRUPDEvents rewardUpdate ShelleyLedgerEventBBODY (ShelleyInAlonzoEvent (LedgersEvent (Shelley.LedgerEvent conwayLedgerEvent))) -> case conwayLedgerEvent of Conway.UtxowEvent{} -> Nothing -- <-- Ignored Conway.CertsEvent{} -> Nothing Conway.GovEvent govEvent -> case govEvent of Conway.GovNewProposals txid props -> Just $ NewGovernanceProposals txid (AnyProposals
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Internal
Area
Plutus Related to Plutus Scripts (Alonzo).
Describe the feature you'd like
Support Plutus script evaluation events in Conway.
Describe alternatives you've considered
Not using
cardano-api
'sapplyBlock
function, using ledger directly.Additional context / screenshots
The text was updated successfully, but these errors were encountered: