+
+ The {top_coin_holders.length} highest current balances (earned + adjustments − spent, pending orders
+ included).
+
+ {top_coin_holders.length === 0 ? (
+ No balances yet.
+ ) : (
+
+
+
+ #
+ Builder
+ Balance
+ Earned
+ Adjustments
+ Spent
+
+
+
+ {top_coin_holders.map((holder, i) => (
+
+ {i + 1}
+
+
+
+ {holder.display_name}
+
+
+
+ {holder.balance.toLocaleString()}
+
+ {holder.earned.toLocaleString()}
+ {holder.adjusted.toLocaleString()}
+ {holder.spent.toLocaleString()}
+
+ ))}
+
+
+ )}
+
+