Created
July 9, 2017 02:35
-
-
Save OR13/17ee2b08321b241c1ccf9e1df10a3a13 to your computer and use it in GitHub Desktop.
EsEventStruct.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct EsEventStruct { | |
| address TxOrigin; | |
| uint Created; | |
| bytes32 EventType; // Event Type + Version | |
| bytes1 KeyType; // A — Address, U — UInt, B — Bytes32, X — Bytes32 (ascii) | |
| bytes1 ValueType; // A — Address, U — UInt, B — Bytes32, X — Bytes32 (ascii) | |
| bytes32 Key; // Key | |
| bytes32 Value; // Value | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment