From d02611a37ab8f8fb247a203ee73e255cfcfb5727 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Thu, 10 Feb 2022 16:35:20 -0600 Subject: [PATCH] Add id field to markets api endpoint --- functions/src/markets.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/src/markets.ts b/functions/src/markets.ts index 6d6380c1..f9188987 100644 --- a/functions/src/markets.ts +++ b/functions/src/markets.ts @@ -25,6 +25,7 @@ export const markets = functions }) const getContractInfo = ({ + id, creatorUsername, creatorName, createdTime, @@ -40,6 +41,7 @@ const getContractInfo = ({ resolution, }: Contract) => { return { + id, creatorUsername, creatorName, createdTime,