github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/fvm/evm/testutils/contracts/contracts.go (about) 1 package contracts 2 3 import ( 4 _ "embed" 5 "encoding/hex" 6 ) 7 8 //go:embed test_bytes.hex 9 var testContractBytesInHex string 10 11 var TestContractBytes, _ = hex.DecodeString(testContractBytesInHex) 12 13 //go:embed test_abi.json 14 var TestContractABIJSON string 15 16 //go:embed dummy_kitty_bytes.hex 17 var dummyKittyContractBytesInHex string 18 19 var DummyKittyContractBytes, _ = hex.DecodeString(dummyKittyContractBytesInHex) 20 21 //go:embed dummy_kitty_abi.json 22 var DummyKittyContractABIJSON string