github.com/unicornultrafoundation/go-u2u@v1.0.0-rc1.0.20240205080301-e74a83d3fadc/u2u/contracts/sfclib/sfclib_predeploy.go (about)

     1  package sfclib
     2  
     3  import (
     4  	"github.com/unicornultrafoundation/go-u2u/common"
     5  	"github.com/unicornultrafoundation/go-u2u/common/hexutil"
     6  	"github.com/unicornultrafoundation/go-u2u/gossip/contract/sfclib100"
     7  )
     8  
     9  // GetContractBin is SFCLib contract genesis implementation bin code
    10  // Has to be compiled with flag bin-runtime
    11  func GetContractBin() []byte {
    12  	return hexutil.MustDecode(sfclib100.ContractBinRuntime)
    13  }
    14  
    15  // ContractAddress is the SFCLib contract address
    16  var ContractAddress = common.HexToAddress("0xfc01face00000000000000000000000000000000")