getRegistrationFees

getRegistrationFees is a method on the ARIO class that retrieves the current registration fee structure for ArNS names, including base fees and any applicable multipliers.

getRegistrationFees does not require authentication.

Examples

getRegistrationFees

const fees = await ario.getRegistrationFees();

Parameters

The getRegistrationFees method does not accept any parameters.

Output

{
  "lease": {
    "1": 500000000,      // 1 year lease cost in mARIO
    "2": 400000000,      // 2 year lease cost in mARIO
    "3": 300000000,      // 3 year lease cost in mARIO
    "4": 200000000,      // 4 year lease cost in mARIO
    "5": 100000000       // 5 year lease cost in mARIO
  },
  "permabuy": 2500000000  // Permanent ownership cost in mARIO
}

Was this page helpful?