@hackage morley1.16.0
Developer tools for the Michelson Language
Installation
Dependencies (46)
Dependents (5)
@hackage/morley-client, @hackage/lorentz, @hackage/morley-upgradeable, @hackage/indigo, @hackage/cleveland
Morley: Developer tools for the Michelson Language
Morley aims to make writing smart contracts in Michelson pleasant and effective. It contains 3 major things:
- An executable that lets you perform various operations on Michelson smart contracts.
- A library with core Tezos and Michelson data types, and functions such as Michelson typechecker and interpreter.
- A superset of the Michelson language that we call the Morley language. It relaxes Michelson parser rules, adds some syntax sugar and simple features.
Morley executable
How to install
There are three ways to get Morley executable:
- Docker based (preferable).
- Get script
(e. g. using
curl https://gitlab.com/morley-framework/morley/raw/master/scripts/morley.sh > morley.sh) and run it./morley.sh <args>. This script will pull a docker image that contains the latest version of Morley executable from theproductionbranch and run it with the given arguments. You'll needcoreutilsto be installed in order to usemorley.sh. - Usage example:
./morley.shto see help message./morley.sh run --contract add1.tz --storage 1 --parameter 1 --amount 1
- Get script
(e. g. using
- Stack based.
- Clone this git repository and run
stack buildcommand, after that you can dostack exec -- morley <args>to run morley executable built from the source code. - Usage example:
stack exec -- morley --helpto see help messagestack exec -- morley originate --contract contracts/tezos_examples/attic/add1.tz --storage 1 --verbose
- Clone this git repository and run
- Cabal based.
- Clone this git repository, go to this directory and run
cabal new-update && cabal new-buildcommand, after that you can docabal new-run -- morley <args>to run morley executable built from the source code. - Usage example:
cabal new-run -- morley --helpto see help messagecabal new-run -- morley originate --contract contracts/tezos_examples/attic/add1.tz --storage 1 --verbose
- Clone this git repository, go to this directory and run
Usage
Morley executable does not interact with Tezos node and Tezos network. It works in emulated environment which is stored in a simple JSON file on disk. The following commands depend on environment and may modify it:
originatea contract.transfertokens to a given address (and call a smart contract if it's the destination).runa contract. A given contract is being originated first, and then the transaction is being sent to it.
The following commands don't depend on environment:
optimizea contract by replacing certain sequences of instructions with equivalent but more efficient ones.typechecka contract.replstarts a REPL where you can type Michelson instructions and interpret them.analyzea contract and print some statistics about it.printa contract in vanilla Michelson format. It can be useful in some cases:- You have a smart contract that uses Morley extensions and want to convert it to vanilla Michelson format that can be handled by Tezos reference implementation.
- You have a contract with inconsistent/ugly formatting and want to format it in uniform style.
- You want to print a contract on a single line.
parsea contract and return its representation in Haskell types.
You can get more info about these commands by running morley <command> --help.
Run morley --help to get the list of all commands.
Morley library
Morley-the library is available on Hackage. It consists of the following parts:
- The
Morley.Tezos.*hierarchy (Morley.Tezos.Address,Morley.Tezos.Core,Morley.Tezos.Crypto) is designed to implement cryptographic primitives, string and byte formats, and any other functionality specific to the Tezos protocol which is required for testing/execution of Michelson contracts but is used not only by Michelson. Morley.Michelson.UntypedandMorley.Michelson.Typedhierarchies define Haskell data types that assemble a Michelson contract. See michelsonTypes.md.Morley.Michelson.TypeCheck: A typechecker that validates Michelson contracts according to the Michelson's typing rules. Essentially, it performs conversion from untyped representation to the typed one. See morleyTypechecker.md.Morley.Michelson.Interpret: An interpreter for Michelson contracts which doesn't perform any side effects. See morleyInterpreter.md.Morley.Michelson.MacroTypes for macros, syntactic sugar, and other extensions that are described in the next chapter.Morley.Michelson.ParserA parser to turn a.tzor.mtzfile (.mtzis a Michelson contract with Morley extensions) into a Haskell ADT.Morley.Michelson.Runtime: A high-level interface to Morley functionality, see morleyRuntime.md.- The
Morley.Micheline.*hierarchy (Morley.Micheline.Binary,Morley.Micheline.Class,Morley.Micheline.Expression,Morley.Micheline.Json) contains the representation of MichelineExpressions, conversion to/from Michelson values, as well as encoding/decoding to/from JSON and binary format. - The
Morley.Util.*hierarchy defines variousMorley-related utilities that are used all over the project.
Morley language
Morley-the-language is a superset of the Michelson language, which means that each Michelson contract is also a valid Morley contract but not vice versa.
There are several extensions which make it more convenient to write Michelson contracts and test them.
For example, one can write inline assertions in their contracts for testing.
All the details can be found in the document about these extensions.
A smart contract written in the Morley language can be transpiled to Michelson using the aforementioned morley print command.