7 lines
230 B
TypeScript
7 lines
230 B
TypeScript
|
import { EnclaveMethods } from './types';
|
||
|
|
||
|
export const PROTOCOL_NAME = 'eth-enclave';
|
||
|
|
||
|
const eventTypes = Object.values(EnclaveMethods);
|
||
|
export const isValidEventType = (e: string): e is EnclaveMethods => eventTypes.includes(e);
|