Daml.Finance.Interface.Holding.Fungible¶
Interfaces¶
interface Fungible
Interface for a fungible holding.
viewtype V
Choice Archive
Controller: Signatories of implementing template
Returns: ()
(no fields)
Choice GetView
Retrieves the interface view.
Controller: viewer
Returns: View
Field Type Description viewer Party The party fetching the view. Choice Merge
Merge multiple fungible contracts into a single fungible contract.
Controller: (DA.Internal.Record.getField @"modifiers" (view this))
Returns: ContractId Fungible
Field Type Description fungibleCids [ContractId Fungible] The fungible contracts to merge which will get consumed. Choice Split
Split a fungible contract into multiple contracts by amount.
Controller: (DA.Internal.Record.getField @"modifiers" (view this))
Returns: SplitResult
Field Type Description amounts [Decimal] The quantities to split the fungible asset by, creating a new contract per amount. Method merge : Merge -> Update (ContractId Fungible)
Implementation of the
Merge
choice.Method split : Split -> Update SplitResult
Implementation of the
Split
choice.
Data Types¶
data SplitResult
Result of a call to
Split
.
Field Type Description splitCids [ContractId Fungible] The contract ids for the split holdings. rest Optional (ContractId Fungible) Contract id for the holding on the remaining amount. It is None
when the split is exact.instance Eq SplitResult
instance Show SplitResult
instance HasMethod Fungible "split" (Split -> Update SplitResult)
- type V
= View
Type synonym for
View
.instance HasFromAnyView Fungible V
data View