nervosnetwork / molecule

Another serialization system: minimalist and canonicalization.
MIT License
36 stars 23 forks source link

Feature request: support type alias #81

Open doitian opened 10 months ago

doitian commented 10 months ago

For example, in a schema, I want to use Script as an address type. However, I don't want to name the type as Script since it does not match the business domain. Type aliases can resolve this issue for me.

import blockchain;
type Address = Script;