Files
explore/stubs/rewards.ts
T
Zach Kelling d15691316a feat: rename @blockscout to @luxfi, monochrome theme, horizontal blocks
- 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
2026-03-02 12:28:15 -08:00

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,
},
],
};