mirror of
https://github.com/luxfi/explore.git
synced 2026-07-27 05:54:15 +00:00
- Rename all @blockscout/* npm packages to @luxfi/* aliases (150+ files) - Override blue accent colors to gray for monochrome theme - Fix dropdown/menu/popover fonts to use Geist Sans - Change Latest Blocks to horizontal scrolling layout - Show dashes instead of zeros for validator stats on error - Fix GHA deploy step to use correct deployment name
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import type { GetActivityRewardsResponse } from '@luxfi/points-types';
|
|
|
|
export const USER_ACTIVITY: GetActivityRewardsResponse = {
|
|
items: [
|
|
{
|
|
date: '2025-03-10',
|
|
end_date: '2025-03-16',
|
|
activity: 'sent_transactions',
|
|
amount: '60',
|
|
percentile: 0.5,
|
|
is_pending: true,
|
|
},
|
|
{
|
|
date: '2025-03-10',
|
|
end_date: '2025-03-16',
|
|
activity: 'verified_contracts',
|
|
amount: '40',
|
|
percentile: 0.3,
|
|
is_pending: true,
|
|
},
|
|
{
|
|
date: '2025-03-10',
|
|
end_date: '2025-03-16',
|
|
activity: 'blockscout_usage',
|
|
amount: '80',
|
|
percentile: 0.8,
|
|
is_pending: true,
|
|
},
|
|
],
|
|
last_week: [
|
|
{
|
|
date: '2025-03-03',
|
|
end_date: '2025-03-09',
|
|
activity: 'sent_transactions',
|
|
amount: '40',
|
|
percentile: 0.25,
|
|
is_pending: false,
|
|
},
|
|
{
|
|
date: '2025-03-03',
|
|
end_date: '2025-03-09',
|
|
activity: 'verified_contracts',
|
|
amount: '60',
|
|
percentile: 0.6,
|
|
is_pending: false,
|
|
},
|
|
{
|
|
date: '2025-03-03',
|
|
end_date: '2025-03-09',
|
|
activity: 'blockscout_usage',
|
|
amount: '100',
|
|
percentile: 0.95,
|
|
is_pending: false,
|
|
},
|
|
],
|
|
};
|