| Type | {typeDisplay} | 
              
                | Payout | {mechanism === 'cpmm-1' ? (
                    <>
                      Fixed{' '}
                      
                    >
                  ) : (
                    <>
                      Parimutuel{' '}
                      
                    >
                  )} | 
              
                | Market created | {formatTime(createdTime)} | 
              {closeTime && (
                
                  | Market close{closeTime > Date.now() ? 's' : 'd'} | {formatTime(closeTime)} | 
              )}
              {resolutionTime && (
                
                  | Market resolved | {formatTime(resolutionTime)} | 
              )}
              
                | Volume | {formatMoney(contract.volume)} | 
              {/* 
                | Creator earnings | {formatMoney(contract.collectedFees.creatorFee)} | 
 */}
              
                | Traders | {bettorsCount} | 
              
                | {mechanism === 'cpmm-1' ? 'Liquidity pool' : 'Betting pool'} | {contractPool(contract)} | 
              {/* Show a path to Firebase if user is an admin, or we're on localhost */}
              {(isAdmin || isDev) && (
                
                  | [ADMIN] Firestore | Console link | 
              )}
              {isAdmin && (
                
                  | [ADMIN] Featured |  | 
              )}
              {isAdmin && (
                
                  | [ADMIN] Unlisted | updateContract(id, {
                          visibility: b ? 'unlisted' : 'public',
                        })
                      }
                    /> | 
              )}