github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/vent/types/event_input_type.go (about)

     1  package types
     2  
     3  // Defined event input types - these are currently align with EVM types but they technically define a pair/mapping
     4  // of EVM type -> SQL type
     5  const (
     6  	EventFieldTypeInt     = "int"
     7  	EventFieldTypeUInt    = "uint"
     8  	EventFieldTypeAddress = "address"
     9  	EventFieldTypeBytes   = "bytes"
    10  	EventFieldTypeBool    = "bool"
    11  	EventFieldTypeString  = "string"
    12  )