github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/fvm/evm/handler/coa/coa.go (about)

     1  package coa
     2  
     3  import (
     4  	_ "embed"
     5  	"encoding/hex"
     6  )
     7  
     8  var ContractDeploymentRequiredGas = uint64(723_000)
     9  
    10  //go:embed coa_bytes.hex
    11  var contractBytesInHex string
    12  
    13  // ContractBytes is the compiled version of the coa smart contract.
    14  var ContractBytes, _ = hex.DecodeString(contractBytesInHex)
    15  
    16  // ContractABIJSON is the json string of ABI of the coa smart contract.
    17  //
    18  //go:embed coa_abi.json
    19  var ContractABIJSON string