increaseUndernameLimit

increaseUndernameLimit is a method on the ARIO class that increases the number of undernames an ArNS domain can support. Each domain starts with a default limit of 10 undernames and can be increased up to a maximum of 10,000 undernames.

increaseUndernameLimit requires authentication.

Examples

increaseUndernameLimit

const { id: txId } = await ario.increaseUndernameLimit({
    name: 'ar-io',
    increaseCount: 90
});

Parameters

ParameterTypeDescriptionOptional
namestringThe ArNS name to increase the undername limit forfalse
increaseCountnumber

The number of additional undername slots to purchase (up to 10,000 total)

false
fundFromstring

The source of funds: 'balance', 'stakes', 'any', or 'turbo'

true
paidBystring | string[]

Wallet address(es) that will pay for the purchase (used with fundFrom: 'turbo')

true
tagsarray

An array of GQL tag objects to attach to the transfer AO message

true

Was this page helpful?