CopyOverview
LedgerSync leverages serialization and deserialization to convert resources into the necessary hash formats the ledger expects. Generally, each resource will have 1 serializer and 1 deserializer.
CopySerializers
Serializers take a Resource
and output a hash. For example:
CopyDeserializers
Deserializers take a hash and output a Resource
. For example:
CopyHow to use
Serializers and deserializers are automatically inferred by each operation based on the naming convention. It is possible to create your own serializers. Please see Customization for more.
Related articles: