Controller
This section documents the parts of the RegistrarController relevant to implementers of tools that interact with it. Functionality exclusive to the registrar owner is omitted for brevity.
The controller works exclusively with plaintext labels (eg, 'alice' for 'alice.pls').
To prevent frontrunning, the RegistrarController requires a commit/reveal process for new name registrations (but not for renewals). To register a name, the user must:
Generate a commitment hash from the name they want to register and a secret value.
Submit the commitment hash from #1 to the controller.
Wait for at least 1 minute, but no longer than 24 hours.
Submit a registration request for the name, along with the secret value from #1.
This process ensures that registrations cannot be frontrun unless the attacker is able to censor the user's transactions for at least 1 minute.
Deployed RegistrarController addresses
Mainnet:
0xEDE92828a143cFC966a47d60604825655f7c79e8
.Testnet (v4):
0xE35059d08fA35d42bb8f397F5BD6DCBAa8F37832
.
Examples
Name Registration
The below example demonstrates the steps required to register a name.
For clarity, this example is written using async rather than callbacks. As a result, this example works in web3 1.0.x; note that it will not work in the web3 injected by MetaMask, as this presently is an older version lacking async support.
Read Operations
Get Minimum Commitment Age
This public constant provides the minimum commitment age, in seconds. A commitment can only be revealed after at least this many seconds have passed since it was mined.
DApps should fetch this constant rather than hardcoding the current value, as it's possible it will change with future releases.
Get Maximum Commitment Age
This public constant provides the maximum commitment age, in seconds. A commitment that was mined more than this number of seconds ago is no longer valid, and cannot be used to register a name.
DApps should fetch this constant rather than hardcoding the current value, as it's possible it will change with future releases.
Get Minimum Registration Duration
This public constant provides the minimum registration duration, in seconds. Registrations for less than this duration will be rejected.
DApps should fetch this constant rather than hardcoding the current value, as it's possible it will change with future releases.
Get Commitment Timestamp
commitments
stores a mapping from each submitted to commitment to the timestamp at which it was made. Callers wishing to validate that a commitment is valid before submitting a registration transaction should check this map first.
Get Rent Price
rentPrice
returns the cost, in wei, to register or renew the provided name for the provided duration, in seconds. Callers should note that this price may vary over time, particularly if the pricing oracle is relying on a fiat price conversion.
Callers should use this function to obtain registration costs to display to the user rather than calculating them internally, as future changes to the pricing oracle may result in different pricing schemes, with registration cost-per-year depending on name length, registration duration, or other variables.
Check Name Validity
valid
returns true iff name is valid for registration with this controller (eg, it meets length requirements).
Check Name Availability
available
returns true iff the name is both valid and available for registration by this controller. Under the hood, this call uses the valid
function (above) and the available
function on the registrar contract, which checks for availability in both the legacy PNS registrar and current PNS registrar.
Callers should use this function to check if a name is available for registration, rather than the available
function on the registrar contract, which does not check name length.
Calculate Commitment Hash
makeCommitment
generates and returns a commitment hash from a name label (eg, 'myname', not 'myname.pls') owner, and secret value.
Write Operations
Submit Commitment
commit
submits a precommitment generated by calling makeCommitment.
Register Name
register
registers a name. A valid registration request must meet the following criteria:
available(name) == true
.duration >= MIN_REGISTRATION_DURATION
.secret
identifies a valid commitment (eg,commitments[makeCommitment(name, secret)]
exists and is between 1 minute and 24 hours old.msg.value >= rentPrice(name, duration)
.
Because the rent price may vary over time, callers are recommended to send slightly more than the value returned by rentPrice
- a premium of 5-10% will likely be sufficient. Any excess funds are returned to the caller.
Emits the following event on a successful call:
A successful call also results in the Registrar emitting a Name Registered Event, and the ENS registry emitting a New Owner Event.
Extend Name Registration
renew
renews a name, extending the name's expiration by duration
seconds. This function can be called by anyone, as long as sufficient funds are provided. Because the rent price may vary over time, callers are recommended to send slightly more than the value returned by rentPrice
- a premium of 5-10% will likely be sufficient. Any excess funds are returned to the caller.
Emits the following event on a successful call:
A successful call also results in the Registrar emitting a Name Renewed Event.
Last updated