You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/create-token-page-impl.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ export function CreateTokenAssetPage(props: {
113
113
params.values.pool.startingPricePerToken,
114
114
),
115
115
}),
116
-
referrerRewardBps: 1250,// 12.5%
116
+
developerRewardBps: 1250,// 12.5%
117
117
},
118
118
}
119
119
: undefined,
@@ -125,7 +125,7 @@ export function CreateTokenAssetPage(props: {
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/contract/[chainIdOrSlug]/[contractAddress]/rewards/components/claim-rewards-page.stories.tsx
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/contract/[chainIdOrSlug]/[contractAddress]/rewards/components/claim-rewards-page.tsx
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -65,30 +65,30 @@ export function ClaimRewardsPage(props: {
65
65
<ClaimRewardsPageUI
66
66
unclaimedFees={props.unclaimedFees}
67
67
recipient={props.reward.recipient}
68
-
referrer={props.reward.referrer}
68
+
developer={props.reward.developer}
69
69
handleClaim={handleClaim}
70
70
isClaimPending={sendTx.isPending}
71
71
client={props.assetContractClient.client}
72
72
chain={props.assetContractClient.chain}
73
73
chainSlug={props.chainSlug}
74
-
referrerBps={props.reward.referrerBps}
74
+
developerBps={props.reward.developerBps}
75
75
/>
76
76
);
77
77
}
78
78
79
-
functioncalculateFees(referrerBps: number){
79
+
functioncalculateFees(developerBps: number){
80
80
// 20% of is protocol fees
81
-
// remaining is split between referrer and recipient
81
+
// remaining is split between developer and recipient
0 commit comments