Developer tools for the Michelson Language.
A library to make writing smart contracts in Michelson — the smart contract language of the Tezos blockchain — pleasant and effective.
:warning: Note: this project is deprecated.
It is no longer maintained since the activation of protocol "Nairobi" on the Tezos mainnet (June 24th, 2023).
Morley: Developer tools for the Michelson Language
Morley aims to make writing smart contracts in Michelson pleasant and effective. It contains 2 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.
Morley executable
Dependencies
To install using stack or cabal, you need to install libsodium first.
If installing into a non-standard location, after its installation is complete, add the directory containing libsodium.so
to your LD_LIBRARY_PATH
environment variable. Otherwise, compilation with stack or cabal will fail.
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 theproduction
branch and run it with the given arguments. You'll needcoreutils
to be installed in order to usemorley.sh
. - Usage example:
./morley.sh
to 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 build
command, after that you can dostack exec -- morley <args>
to run morley executable built from the source code. - Usage example:
stack exec -- morley --help
to 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-build
command, after that you can docabal new-run -- morley <args>
to run morley executable built from the source code. - Usage example:
cabal new-run -- morley --help
to 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:
emulate originate
a contract.emulate transfer
tokens to a given address (and call a smart contract if it's the destination).emulate run
a 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:
optimize
a contract by replacing certain sequences of instructions with equivalent but more efficient ones.typecheck
a contract.repl
starts a REPL where you can type Michelson instructions and interpret them.analyze
a contract and print some statistics about it.print
a contract in vanilla Michelson format. It can be useful in some cases:- 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.
parse
a contract and return its representation in Haskell types.
NOTE: $TERM
and $TERMINFO
environment variables need to be set for an enhanced terminal experience when using utilities like repl
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. To use morley
as library, simply include it in the package.yaml
.
It is recommended to also add morley
extra-deps to your stack.yaml
. The extra-deps can be found here.
The library 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.Untyped
andMorley.Michelson.Typed
hierarchies 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.Macro
Types for macros, syntactic sugar, and other extensions that are described in the next chapter.Morley.Michelson.Parser
A parser to turn a.tz
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 MichelineExpression
s, 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.