diff --git a/apps/arkmarket/src/app/collection/[collectionAddress]/components/mobile-collection-activity.tsx b/apps/arkmarket/src/app/collection/[collectionAddress]/components/mobile-collection-activity.tsx
index 3326a452..2eccb148 100644
--- a/apps/arkmarket/src/app/collection/[collectionAddress]/components/mobile-collection-activity.tsx
+++ b/apps/arkmarket/src/app/collection/[collectionAddress]/components/mobile-collection-activity.tsx
@@ -58,7 +58,11 @@ export default function MobileCollectionActivity({
{activity.token_metadata?.name ?? activity.name}
{activity.price ? (
-
+
) : null}
diff --git a/apps/arkmarket/src/app/components/latest-sales.tsx b/apps/arkmarket/src/app/components/latest-sales.tsx
index db9fa1bd..9576569b 100644
--- a/apps/arkmarket/src/app/components/latest-sales.tsx
+++ b/apps/arkmarket/src/app/components/latest-sales.tsx
@@ -43,7 +43,7 @@ export default function LatestSales() {
WebkitTextStrokeColor: "black",
}}
>
- Latest sale
+ Latest sales
- Latest sale
+ Latest sales
diff --git a/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/desktop-token-activity.tsx b/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/desktop-token-activity.tsx
index 983d6f22..ec214b18 100644
--- a/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/desktop-token-activity.tsx
+++ b/apps/arkmarket/src/app/token/[contractAddress]/[tokenId]/components/desktop-token-activity.tsx
@@ -46,7 +46,14 @@ export default function DesktopTokenActivity({
>
- {activity.price ? : "_"}
+ {activity.price ? (
+
+ ) : (
+ "_"
+ )}
{activityTypeMetadata[activity.activity_type].title}
{activity.price ? (
-
+
) : (
"_"
)}
diff --git a/apps/arkmarket/src/app/wallet/[walletAddress]/components/mobile-portfolio-activity.tsx b/apps/arkmarket/src/app/wallet/[walletAddress]/components/mobile-portfolio-activity.tsx
index 3a0707d2..deecb14e 100644
--- a/apps/arkmarket/src/app/wallet/[walletAddress]/components/mobile-portfolio-activity.tsx
+++ b/apps/arkmarket/src/app/wallet/[walletAddress]/components/mobile-portfolio-activity.tsx
@@ -59,7 +59,11 @@ export default function MobilePortfolioActivity({
{activity.price ? (
-
+
) : null}
diff --git a/apps/arkmarket/src/components/cells/activity-price-cell.tsx b/apps/arkmarket/src/components/cells/activity-price-cell.tsx
index fb989c0b..49535803 100644
--- a/apps/arkmarket/src/components/cells/activity-price-cell.tsx
+++ b/apps/arkmarket/src/components/cells/activity-price-cell.tsx
@@ -15,7 +15,11 @@ export default function PriceCell({ activity }: PriceCellProps) {
return (
{activity.price ? (
-
+
) : (
"_"
)}
diff --git a/apps/arkmarket/src/types/index.ts b/apps/arkmarket/src/types/index.ts
index ac8080e7..7007bba8 100644
--- a/apps/arkmarket/src/types/index.ts
+++ b/apps/arkmarket/src/types/index.ts
@@ -176,6 +176,11 @@ export interface PortfolioActivity {
to: string;
token_id: string;
transaction_hash: string | null;
+ currency?: {
+ contract: string;
+ decimals: number;
+ symbol: string;
+ } | null;
}
export interface PortfolioOffers {
@@ -202,6 +207,11 @@ export interface PortfolioOffers {
start_amount: string | null;
start_date: number | null;
};
+ currency?: {
+ contract: string;
+ decimals: number;
+ symbol: string;
+ } | null;
}
export interface CollectionActivity {
@@ -216,6 +226,11 @@ export interface CollectionActivity {
token_id: string;
token_metadata: TokenMetadata | null;
transaction_hash: string | null;
+ currency?: {
+ contract: string;
+ decimals: number;
+ symbol: string;
+ } | null;
}
export interface TokenOffer {
@@ -294,6 +309,11 @@ export interface TokenActivity {
time_stamp: number;
to: string | null;
transaction_hash: string | null;
+ currency?: {
+ contract: string;
+ decimals: number;
+ symbol: string;
+ } | null;
}
export interface Filters {