https://gitlab.com/tezos/tezos
Raw File
Tip revision: 28305dd29e70c2c1c5e7cec652c844a8acf34f92 authored by Julien Coolen on 25 April 2023, 08:35:39 UTC
wip integration test
Tip revision: 28305dd
munch.tz
# A contract that accepts bytes in a default entry point and does nothing. 
# Useful for testing transfers of arbitrary sizes.
parameter (or (bytes %bytes)
              (or (lambda %lambda unit unit)
                  (or (nat %nat)
                      (list %list_nat nat))));
storage   unit;
code
  {
    CDR;        # @storage
    # == default == # @storage
    NIL operation; # list operation : @storage
    PAIR;       # pair (list operation) @storage
  };
back to top