├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── NOTICES ├── Readme.md ├── VERSION ├── daml ├── Readme.md ├── daml.yaml ├── src │ ├── Org │ │ └── Isda │ │ │ └── Cdm │ │ │ ├── Classes.daml │ │ │ ├── Enums.daml │ │ │ ├── EventSpecificationModule.daml │ │ │ ├── EventSpecificationModule │ │ │ ├── Auxiliary │ │ │ │ ├── Event.daml │ │ │ │ └── Netting.daml │ │ │ ├── EventBuilder │ │ │ │ ├── Derived.daml │ │ │ │ ├── NewTrade.daml │ │ │ │ ├── Novation.daml │ │ │ │ └── Termination.daml │ │ │ ├── Impl │ │ │ │ ├── Contract.daml │ │ │ │ ├── Contract │ │ │ │ │ ├── Payout.daml │ │ │ │ │ └── Payout │ │ │ │ │ │ ├── Cashflow.daml │ │ │ │ │ │ ├── ContractualQuantity.daml │ │ │ │ │ │ ├── InterestRatePayout.daml │ │ │ │ │ │ └── InterestRatePayout │ │ │ │ │ │ ├── FloatingRate.daml │ │ │ │ │ │ ├── PaymentCalculationPeriod.daml │ │ │ │ │ │ └── Schedule │ │ │ │ │ │ ├── CalculationPeriodDates.daml │ │ │ │ │ │ ├── PaymentDates.daml │ │ │ │ │ │ └── ResetDates.daml │ │ │ │ ├── Date │ │ │ │ │ ├── AdjustableDate.daml │ │ │ │ │ ├── AdjustableOrAdjustedOrRelativeDate.daml │ │ │ │ │ ├── AdjustableOrRelativeDate.daml │ │ │ │ │ ├── Base.daml │ │ │ │ │ ├── BusinessCenters.daml │ │ │ │ │ ├── BusinessDayAdjustments.daml │ │ │ │ │ ├── DayCountFraction.daml │ │ │ │ │ ├── Offset.daml │ │ │ │ │ ├── Period.daml │ │ │ │ │ └── RollConvention.daml │ │ │ │ ├── Event.daml │ │ │ │ ├── Event │ │ │ │ │ └── Transfer.daml │ │ │ │ ├── Identifier.daml │ │ │ │ └── Utils.daml │ │ │ └── Types │ │ │ │ ├── All.daml │ │ │ │ ├── EventSpec.daml │ │ │ │ └── ReferenceData │ │ │ │ ├── Fetch.daml │ │ │ │ ├── HolidayCalendar.daml │ │ │ │ ├── Key.daml │ │ │ │ └── Observation.daml │ │ │ ├── MetaClasses.daml │ │ │ ├── MetaFields.daml │ │ │ └── ZonedDateTime.daml │ └── Test │ │ ├── Date │ │ ├── AdjustableDate.daml │ │ ├── Base.daml │ │ ├── BusinessDayAdjustments.daml │ │ ├── DayCountFraction.daml │ │ ├── Offset.daml │ │ ├── Period.daml │ │ └── RollConvention.daml │ │ ├── EventBuilder │ │ ├── Derived.daml │ │ └── Termination.daml │ │ ├── Examples.daml │ │ ├── Impl │ │ ├── Payout.daml │ │ └── Payout │ │ │ ├── Cashflow.daml │ │ │ ├── ContractualQuantity.daml │ │ │ ├── InterestRatePayout.daml │ │ │ └── InterestRatePayout │ │ │ ├── FloatingRate.daml │ │ │ └── Schedule │ │ │ ├── CalculationPeriodDates.daml │ │ │ ├── PaymentDates.daml │ │ │ └── ResetDates.daml │ │ ├── Main.daml │ │ └── ReferenceData.daml └── target │ └── .gitignore ├── docs ├── autogen │ ├── Auxiliary.md │ ├── CdmTypes.md │ ├── EventBuilder.md │ └── RefData.md └── create.sh └── haskell ├── Readme.md ├── cdm.cabal ├── libs ├── daml-stdlib │ ├── daml-stdlib.cabal │ └── src │ │ ├── DA │ │ ├── Assert.hs │ │ ├── Date.hs │ │ ├── Internal │ │ │ └── Prelude.hs │ │ ├── List.hs │ │ ├── Optional.hs │ │ └── Text.hs │ │ └── Prelude.hs └── with-preprocessor │ ├── exe │ └── Main.hs │ ├── src │ └── Lib.hs │ ├── stack.yaml │ └── with-preprocessor.cabal ├── scripts ├── generate-haskell.sh ├── preprocess.sh └── replace.sed ├── stack.yaml └── test └── Main.hs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/NOTICES -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/Readme.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.31 2 | -------------------------------------------------------------------------------- /daml/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/Readme.md -------------------------------------------------------------------------------- /daml/daml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/daml.yaml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/Classes.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/Classes.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/Enums.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/Enums.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Auxiliary/Event.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Auxiliary/Event.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Auxiliary/Netting.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Auxiliary/Netting.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/Derived.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/Derived.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/NewTrade.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/NewTrade.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/Novation.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/Novation.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/Termination.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/EventBuilder/Termination.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/Cashflow.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/Cashflow.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/ContractualQuantity.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/ContractualQuantity.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/FloatingRate.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/FloatingRate.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/PaymentCalculationPeriod.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/PaymentCalculationPeriod.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/Schedule/CalculationPeriodDates.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/Schedule/CalculationPeriodDates.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/Schedule/PaymentDates.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/Schedule/PaymentDates.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/Schedule/ResetDates.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Contract/Payout/InterestRatePayout/Schedule/ResetDates.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/AdjustableDate.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/AdjustableDate.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/AdjustableOrAdjustedOrRelativeDate.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/AdjustableOrAdjustedOrRelativeDate.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/AdjustableOrRelativeDate.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/AdjustableOrRelativeDate.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/Base.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/Base.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/BusinessCenters.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/BusinessCenters.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/BusinessDayAdjustments.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/BusinessDayAdjustments.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/DayCountFraction.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/DayCountFraction.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/Offset.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/Offset.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/Period.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/Period.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/RollConvention.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Date/RollConvention.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Event.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Event.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Event/Transfer.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Event/Transfer.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Identifier.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Identifier.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Utils.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Impl/Utils.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/All.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/All.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/EventSpec.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/EventSpec.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/Fetch.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/Fetch.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/HolidayCalendar.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/HolidayCalendar.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/Key.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/Key.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/Observation.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/EventSpecificationModule/Types/ReferenceData/Observation.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/MetaClasses.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/MetaClasses.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/MetaFields.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/MetaFields.daml -------------------------------------------------------------------------------- /daml/src/Org/Isda/Cdm/ZonedDateTime.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Org/Isda/Cdm/ZonedDateTime.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/AdjustableDate.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/AdjustableDate.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/Base.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/Base.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/BusinessDayAdjustments.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/BusinessDayAdjustments.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/DayCountFraction.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/DayCountFraction.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/Offset.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/Offset.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/Period.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/Period.daml -------------------------------------------------------------------------------- /daml/src/Test/Date/RollConvention.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Date/RollConvention.daml -------------------------------------------------------------------------------- /daml/src/Test/EventBuilder/Derived.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/EventBuilder/Derived.daml -------------------------------------------------------------------------------- /daml/src/Test/EventBuilder/Termination.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/EventBuilder/Termination.daml -------------------------------------------------------------------------------- /daml/src/Test/Examples.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Examples.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/Cashflow.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/Cashflow.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/ContractualQuantity.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/ContractualQuantity.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/InterestRatePayout.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/InterestRatePayout.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/InterestRatePayout/FloatingRate.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/InterestRatePayout/FloatingRate.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/InterestRatePayout/Schedule/CalculationPeriodDates.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/InterestRatePayout/Schedule/CalculationPeriodDates.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/InterestRatePayout/Schedule/PaymentDates.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/InterestRatePayout/Schedule/PaymentDates.daml -------------------------------------------------------------------------------- /daml/src/Test/Impl/Payout/InterestRatePayout/Schedule/ResetDates.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Impl/Payout/InterestRatePayout/Schedule/ResetDates.daml -------------------------------------------------------------------------------- /daml/src/Test/Main.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/Main.daml -------------------------------------------------------------------------------- /daml/src/Test/ReferenceData.daml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/daml/src/Test/ReferenceData.daml -------------------------------------------------------------------------------- /daml/target/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /docs/autogen/Auxiliary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/docs/autogen/Auxiliary.md -------------------------------------------------------------------------------- /docs/autogen/CdmTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/docs/autogen/CdmTypes.md -------------------------------------------------------------------------------- /docs/autogen/EventBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/docs/autogen/EventBuilder.md -------------------------------------------------------------------------------- /docs/autogen/RefData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/docs/autogen/RefData.md -------------------------------------------------------------------------------- /docs/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/docs/create.sh -------------------------------------------------------------------------------- /haskell/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/Readme.md -------------------------------------------------------------------------------- /haskell/cdm.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/cdm.cabal -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/daml-stdlib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/daml-stdlib.cabal -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/DA/Assert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/DA/Assert.hs -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/DA/Date.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/DA/Date.hs -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/DA/Internal/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/DA/Internal/Prelude.hs -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/DA/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/DA/List.hs -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/DA/Optional.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/DA/Optional.hs -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/DA/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/DA/Text.hs -------------------------------------------------------------------------------- /haskell/libs/daml-stdlib/src/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/daml-stdlib/src/Prelude.hs -------------------------------------------------------------------------------- /haskell/libs/with-preprocessor/exe/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/with-preprocessor/exe/Main.hs -------------------------------------------------------------------------------- /haskell/libs/with-preprocessor/src/Lib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/with-preprocessor/src/Lib.hs -------------------------------------------------------------------------------- /haskell/libs/with-preprocessor/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/with-preprocessor/stack.yaml -------------------------------------------------------------------------------- /haskell/libs/with-preprocessor/with-preprocessor.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/libs/with-preprocessor/with-preprocessor.cabal -------------------------------------------------------------------------------- /haskell/scripts/generate-haskell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/scripts/generate-haskell.sh -------------------------------------------------------------------------------- /haskell/scripts/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/scripts/preprocess.sh -------------------------------------------------------------------------------- /haskell/scripts/replace.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/scripts/replace.sed -------------------------------------------------------------------------------- /haskell/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/stack.yaml -------------------------------------------------------------------------------- /haskell/test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digital-asset-archive/lib-cdm-event-specification-module/HEAD/haskell/test/Main.hs --------------------------------------------------------------------------------