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
refactor(NameRegistry): registrations last for one year (#125)
* test(NameRegistry): fix failure when alice==bob
* refactor(NameRegistry): replace currYearFee with fee
* refactor(NameRegistry): register should register an fname for 365 days
* refactor(NameRegistry): rename GRACE_PERIOD, YEARS_IN_DAYS
* refactor(NameRegistry): reclaim should extend registration only when close to expiry
* refactor(NameRegistry): trustedRegister should register an fname for 365 days
* refactor(NameRegistry): renew should extend registration by 365 days
* refactor(NameRegistry): bid should extend registration by 365 days
* refactor: remove unused functions, variables, errors
* test(NameRegistry): rewrite upgrade tests
* test(NameRegistry): refactor gas usage tests to be simpler
* test(BundleRegistry): refactor BundleRegistry tests
* test(NameRegistry): refactor constants
* feat(NameRegistry): change renewal period from 31 days to 30 days
* docs: update
* docs: update comments
Copy file name to clipboardexpand all lines: docs/docs.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -59,13 +59,13 @@ The Name Registry contract issues Farcaster names (fnames) for the Farcaster net
59
59
60
60
An `fname` is an ERC-721 token that represents a unique name like @alice. An fname can have up to 16 characters that include lowercase letters, numbers or hyphens. It should that match the regular expression `^[a-zA-Z0-9-]{1,16}$`. The address that owns an fname is known as the `custody address`. The contract implements a [recovery system](#3-recovery-system) that protects users if they lose access to this address. Similar to IDs, Farcaster Names also begin in the invitable state, where they can only be registered by a pre-determined address. The owner can disable trusted registration which then allows anyone to register an fname.
61
61
62
-
Fnames can be registered for up to a year by paying the registration fee, similar to domain names. Unlike most ERC-721 tokens, minting the token does not imply permanent ownership. Registration uses a two-phase commit reveal system to prevent frontrunning.
62
+
Fnames can be registered for one year by paying the registration fee, similar to domain names. Unlike most ERC-721 tokens, minting the token does not imply permanent ownership. Registration uses a two-phase commit reveal system to prevent frontrunning.
63
63
64
-
1. When a new fname is registered, the user must pay the yearly fee, and the token enters the `registered` state and remains there until the end of the calendar year. The fee pair is pro-rated by the amount of time left until the year's end.
64
+
1. When a new fname is registered, the user must pay the yearly fee, and the token enters the `registered` state. and remains for one year, or more specifically after .
65
65
66
-
2.All fnames move from `registered` to `renewable` on Jan 1st 0:00:00 GMT every year. Owners have until Feb 1st 0:00:00 GMT to renew the fname by paying a full year's fee to the contract.
66
+
2.After `365 days`, the fname moves from `registered` to `renewable`. Owners have `30 days` to renew the fname by paying a full year's fee to the contract.
67
67
68
-
3.All fnames that have not been renewed become `biddable` on Feb 1st and move into a [dutch auction](https://en.wikipedia.org/wiki/Dutch_auction). The initial bid is set to a premium of 1,000 ETH plus the pro-rated fee for the remainder of the year. The premium is reduced by ~10% every hour until it reaches zero. An fname can remain indefinitely in this state until it is bid on and becomes `registered`.
68
+
3.If the fname is not renewed within this 30 day window, it becomes `biddable`and moves into a [dutch auction](https://en.wikipedia.org/wiki/Dutch_auction). The initial bid is set to a premium of 1,000 ETH plus the fee for the remainder of the year. The premium is reduced by ~10% every hour until it reaches zero. An fname can remain indefinitely in this state until it is bid on and becomes `registered`.
69
69
70
70
4. If an fname is expired (`renewable` or `biddable`) the `ownerOf` function will return the zero address, while the `balanceOf` function will include expired names in its count.
71
71
@@ -74,7 +74,7 @@ Fnames can be registered for up to a year by paying the registration fee, simila
74
74
An fname can exist in these states:
75
75
76
76
-`invitable` - the name has never been minted, and can only be minted by the trusted caller
77
-
-`registerable` - the name has never been minted and can be minted by anone
77
+
-`registerable` - the name has never been minted and can be minted by anyone
78
78
-`registered` - the name is registered to an address
79
79
-`renewable` - the name's registration has expired and it can only be renewed by the owner
80
80
-`biddable` - the name's registration has expired and it can be bid on by anyone
@@ -87,15 +87,15 @@ An fname can exist in these states:
0 commit comments