export interface ContractCryptoHasher extends Enum {
  readonly isBlake2x256: boolean;
  readonly isSha2x256: boolean;
  readonly isKeccak256: boolean;
  readonly type: 'Blake2x256' | 'Sha2x256' | 'Keccak256';