Skip to main content

TypeScript shape

interface CoinCommunity {
  id: string;
  createdAt: number;
  postCount: number;
  memberCount: number;
  likeCount: number;
  lastPostAt: number | null;
}
id
String!
The community identifier.
createdAt
Int
Unix timestamp for when the community coin was created.