edr
edr copied to clipboard
Rename abbreviated generic variables
Currently, we're using abbreviated generic type names, such as BE for "blockchain error" or SE for "state error". They should be renamed to their full equivalent. Format TBD: TBlockchainError or BLOCKCHAIN_ERROR.
@Wodann will discuss Slang's choice to decide format.
I'm a big fan of naming these variables as BlockchainErrorT in typescript. The T, obviously, comes from Type.
There is a downside to that, being that it's not instantly clear that you're dealing with a generic type, only by noticing the last character T