Skip to content

Commit

Permalink
Fixing comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
wsdt committed Jan 31, 2023
1 parent 5f580f2 commit 11f3be9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EIPS/eip-5883.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ It is a known problem that the private key of an account can be lost. If that ke
pragma solidity ^0.8.7;
interface ISocialRecovery {
function calcScore(address identityAddr_) external view returns (int256);
/// @dev Related but independent identity approves the transfer
function approveTransfer(address from_, address to_) external;
/// @dev User wants to move their onchain identity to another wallet which needs to be approved by n-nearest neighbour identities
function requestTransfer(address from_, address to_) external payable;
function addNeighbour(address neighbour_) external;
Expand Down Expand Up @@ -76,7 +76,7 @@ $n_i^{t}$ is the last timestamp (where a reward was booked on that account) of n

## Rationale

The rationale fleshes out the specification by describing what motivated the design and why particular design decisions were made. It should describe alternate designs that were considered and related work, e.g. how the feature is supported in other languages.
The formula proposed was deemed very resilient and provides a coherent incentivation structure to actually see value in the on-chain score. The formula adds weights based on scores based on time which further contributes to the fairness of the metric.


## Security Considerations
Expand Down

0 comments on commit 11f3be9

Please sign in to comment.