github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/compile_response.go (about)

     1  package models
     2  
     3  // CompileResponse teal compile Result
     4  type CompileResponse struct {
     5  	// Hash base32 SHA512_256 of program bytes (Address style)
     6  	Hash string `json:"hash"`
     7  
     8  	// Result base64 encoded program bytes
     9  	Result string `json:"result"`
    10  
    11  	// Sourcemap jSON of the source map
    12  	Sourcemap *map[string]interface{} `json:"sourcemap,omitempty"`
    13  }