getArNSReturnedName

getArNSReturnedName is a method on the ARIO class that retrieves information about an ArNS name that has been returned to the protocol, including its auction settings and timing details.

getArNSReturnedName does not require authentication.

Examples

getArNSReturnedName

const returnedName = await ario.getArNSReturnedName({ name: 'permalink' });

Parameters

ParameterTypeDescriptionOptional
namestring

The ArNS name to retrieve returned name information for

false

Output

{
  "name": "permalink",
  "endTimestamp": 1730985241349,
  "startTimestamp": 1729775641349,
  "baseFee": 250000000,
  "demandFactor": 1.05256,
  "initiator": "GaQrvEMKBpkjofgnBi_B3IgIDmY_XYelVLB6GcRGrHc",
  "settings": {
    "durationMs": 1209600000,
    "decayRate": 0.000000000016847809193121693,
    "scalingExponent": 190,
    "startPriceMultiplier": 50
  }
}

Was this page helpful?