Skip to content

Commit 299fe67

Browse files
authored
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
1 parent 1c6bfac commit 299fe67

9 files changed

+564
-675
lines changed

.gas-snapshot

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
BundleRegistryGasUsageTest:testGasRegister() (gas: 2081200)
2-
BundleRegistryGasUsageTest:testGasTrustedRegister() (gas: 1783478)
1+
BundleRegistryGasUsageTest:testGasRegister() (gas: 1883943)
2+
BundleRegistryGasUsageTest:testGasTrustedRegister() (gas: 1748097)
33
IDRegistryGasUsageTest:testGasRegisterAndRecover() (gas: 2077004)
44
IDRegistryGasUsageTest:testGasRegisterFromTrustedCaller() (gas: 838954)
5-
NameRegistryGasUsageTest:testGasRegisterUsage() (gas: 2308274)
6-
NameRegistryGasUsageTest:testGasTrustedRegisterUsage() (gas: 1158396)
5+
NameRegistryGasUsageTest:testGasRegister() (gas: 2123149)
6+
NameRegistryGasUsageTest:testGasTrustedRegister() (gas: 1123092)

docs/docs.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ The Name Registry contract issues Farcaster names (fnames) for the Farcaster net
5959

6060
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.
6161

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.
6363

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 .
6565

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.
6767

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`.
6969

7070
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.
7171

@@ -74,7 +74,7 @@ Fnames can be registered for up to a year by paying the registration fee, simila
7474
An fname can exist in these states:
7575

7676
- `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
7878
- `registered` - the name is registered to an address
7979
- `renewable` - the name's registration has expired and it can only be renewed by the owner
8080
- `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:
8787
invitable --> registerable: disable trusted register
8888
invitable --> registered: trusted register
8989
registerable --> registered: register
90-
registered --> renewable: end(year)
90+
registered --> renewable: end(registration)
9191
renewable --> biddable: end(renewal)
9292
biddable --> registered: bid
9393
registered --> registered: transfer
9494
registered --> escrow: request recovery
9595
escrow --> recoverable: end(escrow)
96-
escrow --> renewable: end(year)
96+
escrow --> renewable: end(registration)
9797
recoverable --> registered: transfer, cancel <br> or complete recovery
98-
recoverable --> renewable: end(year)
98+
recoverable --> renewable: end(registration)
9999
renewable --> registered: renew
100100
escrow --> registered: transfer <br> cancel recovery
101101
```
@@ -116,9 +116,9 @@ The fname state transitions when users take certain actions:
116116

117117
The fname state can automatically transition when certain periods of time pass:
118118

119-
- `end(year)` - the end of the calendar year in GMT
120-
- `end(renewal)` - 31 days from the expiration at the year's end (Feb 1st)
121-
- `end(escrow)` - 3 days from the `request recovery` action
119+
- `end(registration)` - 365 days after `register` is called
120+
- `end(renewal)` - 30 days after end(registration)
121+
- `end(escrow)` - 3 days after calling `request recovery` is called
122122

123123
### Permissions
124124

0 commit comments

Comments
 (0)