github.com/datachainlab/burrow@v0.25.0/execution/solidity/event_emitter.sol (about)

     1  pragma solidity ^0.5.4;
     2  
     3  contract EventEmitter {
     4      // indexed puts it in topic
     5      event ManyTypes(
     6          bytes32 indexed direction,
     7          bool trueism,
     8          string german ,
     9          int64 indexed newDepth,
    10          int bignum,
    11          string indexed hash);
    12  
    13      function EmitOne() public {
    14          emit ManyTypes("Downsie!", true, "Donaudampfschifffahrtselektrizitätenhauptbetriebswerkbauunterbeamtengesellschaft", 102, 42, "hash");
    15      }
    16  }