First-in first-served + address setup .rsk registrar

Has registration role in RSK Owner.

  • Adds an extra functionality to FIFS Registrar: Set address resolution in registration transaction.

The registration must be performed following FIFS Registrar steps, adding address resolution in the last step.

Find transferAndCall() encoder in utils/index.js, getAddrRegisterData

register method

function register(string calldata name, address nameOwner, bytes32 secret, uint duration, address addr);

Registers a .rsk name in RNS.

This method must be called after committing.

You must have previously executed approve() for the amount of tokens to be transferred.

  • name The name to register.
  • nameOwner The owner of the name to register.
  • secret The secret used to make the commitment.
  • duration Time to register in years.
  • addr Address to set as addr resolution.

Register via ERC-677

Use RIF transferAndCall method with the following encoding to perform a RIF token transfer and domain registration in a single transaction

Encoding:

parameter size offset
signature 4 bytes 0 bytes
owner 20 bytes 4 bytes
secret 32 bytes 24 bytes
duration 32 bytes 56 bytes
addr 20 bytes 88 bytes
name variable size 108 bytes

Parameters are used in the same manner as register. Use 0x5f7b99d5 as the signature.

Receive updates

Get the latest updates from the Rootstock ecosystem

Loading...