Skip to content
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

Update constants.js: remove 3 trusts #774

Merged
merged 4 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
6 changes: 3 additions & 3 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
},
"TutorialOnboarding": {
"bodyBuildYourOwnEconomy": "Circles has no central leadership, so it’s yours to create with. You can invite friends and local businesses to Circles to support an alternative economy.",
"bodyUnconditionalIncome": "Circles is designed similar to a basic income. Because it is people-powered, it is based on trust. To receive your basic income, three people already trusted in the Circles system must trust your profile. This way you are unconditionally issued Circles tokens on a regular basis.",
"bodyUnconditionalIncome": "Circles is designed similar to a basic income. Because it is people-powered, it is based on trust. To receive your basic income, one person already trusted in the Circles system must trust your profile. This way you are unconditionally issued Circles tokens on a regular basis.",
"bodyWebOfTrust": "You can spend Circles with people who you trust. The more connected your community is, the more valuable your Circles become.",
"bodyLearnMore": "Learn more",
"headingBuildYourOwnEconomy": "Build Your Own Economy",
Expand All @@ -469,10 +469,10 @@
"Validation": {
"bodyDoNotReset": "Do not reset your browser local storage or you will need to recover your data with your magic words.",
"bodyTrustDescription": "To receive your basic income,",
"bodyTrustDescriptionEmphasize": "three people must trust your profile.",
"bodyTrustDescriptionEmphasize": "one person must trust your profile.",
"buttonShareProfileLink": "Share Profile Link",
"headingBuildYourWebOfTrust": "Verify your account",
"tooltipLeftTrustConnections": "You need {connections} more trust connections before you can create your account"
"tooltipLeftTrustConnections": ""
},
"ValidationLock": {
"bodyThisMayTakeMinutes": "<b>Keep your wallet open!</b> Your wallet is now being created on the blockchain. This process is delicate and might take some minutes. It is important that you <b>do not close or refresh your browser</b> until this finishes. Otherwise your wallet creation will crash, and you will have to start from scratch.",
Expand Down
3 changes: 2 additions & 1 deletion src/components/ValidationStatus.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ const ValidationStatus = () => {
connector={<StepConnector classes={{ line: classes.connectorLine }} />}
>
{new Array(NEEDED_TRUST_CONNECTIONS).fill({}).map((item, index) => {
const isChecked = index <= trust.connections - 1;
// const isChecked = index <= trust.connections - 1;
llunaCreixent marked this conversation as resolved.
Show resolved Hide resolved
const isChecked = index === trust.connections;
return (
<Step className={classes.step} key={index}>
<StepIcon
Expand Down
2 changes: 1 addition & 1 deletion src/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000';

export const ISSUANCE_RATE_MONTH = process.env.ISSUANCE_RATE_MONTH || 720; // Time circles
export const PATHFINDER_HOPS_DEFAULT = 3;
export const NEEDED_TRUST_CONNECTIONS = 3;
export const NEEDED_TRUST_CONNECTIONS = 1;

export const ABOUT_URL = 'https://joincircles.net';
export const BUG_REPORTING_URL =
Expand Down
Loading