github.com/cwntr/go-defi@v0.0.0-20210629134751-07f9ec2f7e66/contracts/Config.sol (about) 1 pragma solidity ^0.5.0; 2 3 4 contract Config { 5 // function signature of "postProcess()" 6 bytes4 constant POSTPROCESS_SIG = 0xc2722916; 7 8 // Handler post-process type. Others should not happen now. 9 enum HandlerType {Token, Custom, Others} 10 }