UNPKG

@hippocampus-web3/runebond-client

Version:

TypeScript client for RUNEBond API

18 lines (17 loc) 339 B
export type ChatMessageDto = { id: number; nodeAddress: string; userAddress: string; message: string; role: ChatMessageDto.role; txId: string; height: number; timestamp: string; }; export declare namespace ChatMessageDto { enum role { BP = "BP", NO = "NO", USER = "USER" } }