https://gitlab.com/tezos/tezos
Raw File
Tip revision: decb92837b28b15de26b276898d239a87922d5da authored by François Thiré on 12 October 2023, 11:40:58 UTC
DAL: Update the cryptobox when the plugin is resolved
Tip revision: decb928
map_map.tz
parameter nat;
storage (map string nat);
# this contract adds the value passed by parameter to each entry in
# the stored map.
code { UNPAIR; SWAP;
       MAP { CDR; DIP {DUP}; ADD; };
       DIP { DROP; };
       NIL operation; PAIR; }
back to top