Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ export class UpdateProfileComponent implements OnInit, OnChanges {

founderRewardTooltip() {
return (
"When someone purchases your coin, a percentage of each coin purchase " +
"gets allocated to you as a founder reward.\n\n" +
"A value of 0% means that no new coins get allocated to you when someone buys, " +
"whereas a value of 100% means that nobody other than you can ever get coins because 100% of " +
"every purchase will just go to you.\n\n" +
"Setting this value too high will deter buyers from ever " +
"purchasing your coin. It's a balance, so be careful or just stick " +
"with the default."
"When someone purchases your coin, a percentage " +
"is allocated to you as a 'founder reward'.\n\n" +
"A value of 0% means no value gets rewarded to you for each coin purchased, " +
"whereas a value of 100% means no one other than you gets the value because 100% " +
"goes to you.\n\nSetting it too high will deter others from " +
"buying your coin. Setting it too low risks 'rug-pullers' profitting off of " +
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Imo the sentence with "rug-pullers" should be rephrased (first-time people have no idea of this dynamic).

"your hard work. It's a balance, so be careful. After you've bought what you'd " +
"like of your own coin, consider setting this value to 10-20%."
);
}

Expand Down Expand Up @@ -170,7 +170,7 @@ export class UpdateProfileComponent implements OnInit, OnChanges {
this.profileUpdates.usernameUpdate /*NewUsername*/,
this.profileUpdates.descriptionUpdate /*NewDescription*/,
this.profileUpdates.profilePicUpdate /*NewProfilePic*/,
this.founderRewardInput * 100 /*NewCreatorBasisPoints*/,
this.founderRewardInput * 1000 /*NewCreatorBasisPoints*/,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is in basis points, so multiplying by 1000 will result in an error. You can't have a founder's reward > 100%.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right! I knew I should have reviewed that more closely. It was a last minute quick addition. Sry!!! The text should be updated at least.

1.25 * 100 * 100 /*NewStakeMultipleBasisPoints*/,
false /*IsHidden*/,
// End params
Expand Down