Misc
Table of Contents
Classes
- AbstractSigningMessage
- AbstractSigningMessage is class for handling Ethereum signed messages, regardless of specific formatting which is
offloaded to class extending AbstractSigningMessage. This allows for easy implementation of multiple signing formats
offered by different wallets, usually small variations of "\x19Ethereum Signed Message:\n(len)(message)"
- GethLikeMessage
- GethLikeMessage is a subclass of AbstractSigningMessage that pre-processes messages in a way that Geth does.
- InnerHashedMessage
- InnerHashedMessage is a subclass of AbstractSigningMessage designed to handle messages where the content is hashed internally.
- UnFormattedSigningMessage
- UnFormattedSigningMessage is a subclass of AbstractSigningMessage that doesn't add any formatting or 'magic bytes' to the message.