-
Notifications
You must be signed in to change notification settings - Fork 137
Save new users a lot of pain from rug pullers #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 " + | ||
| "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%." | ||
| ); | ||
| } | ||
|
|
||
|
|
@@ -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*/, | ||
|
||
| 1.25 * 100 * 100 /*NewStakeMultipleBasisPoints*/, | ||
| false /*IsHidden*/, | ||
| // End params | ||
|
|
||
There was a problem hiding this comment.
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).