-- SPDX-FileCopyrightText: 2020 Tocqueville Group -- -- SPDX-License-Identifier: LicenseRef-MIT-TQ -- | Some simple aliases for Michelson types. module Michelson.Untyped.Aliases ( Contract , Value , ExpandedExtInstr ) where import qualified Michelson.Untyped.Contract as Untyped import qualified Michelson.Untyped.Ext as Untyped import qualified Michelson.Untyped.Instr as Untyped import qualified Michelson.Untyped.Value as Untyped type Value = Untyped.Value' Untyped.ExpandedOp type Contract = Untyped.Contract' Untyped.ExpandedOp type ExpandedExtInstr = Untyped.ExtInstrAbstract Untyped.ExpandedOp