Revision 9b9eabddd2481575f85443267760777f9c62d808 authored by Lucas Randazzo on 27 February 2024, 16:41:35 UTC, committed by Marge Bot on 06 March 2024, 12:34:23 UTC
1 parent 83d289c
Raw File
createcontract_01.tzt
code {
       CREATE_CONTRACT
         { code { DROP ; UNIT ; NIL operation ; PAIR } ;
           storage unit ;
           parameter unit }
     } ;
input {
        Stack_elt (option key_hash) None ;
        Stack_elt mutez 12 ;
        Stack_elt unit Unit
      } ;
output {
         Stack_elt
           operation
           (Create_contract
              { code { DROP ; UNIT ; NIL operation ; PAIR } ; storage unit ; parameter unit }
              None
              12
              Unit
              _) ;
         Stack_elt address _
       }
back to top