Interface Alias

Alias

An alias is arbitrary mutable on-chain data.

This essentially allows one piece of text to be substituted for another, so that keywords or keyphrases can be used to represent other things – names, telephone numbers, physical addresses, web sites, account numbers, email addresses, product SKU codes... almost anything you can think of.

interface Alias {
    account: string;
    accountRS: string;
    alias: string;
    aliasName: string;
    aliasURI: string;
    buyer?: string;
    numberOfAlias?: number;
    priceNQT?: string;
    timestamp: number;
    tld?: string;
    tldName?: string;
}

Properties

account: string
accountRS: string
alias: string
aliasName: string
aliasURI: string

This is the arbitrary content, up to 1000 chars

buyer?: string

If given then this alias is on sale to that specific account

numberOfAlias?: number

Numbers of aliases within the namespace/ top level domain.

priceNQT?: string

If given, then this is account is on sale

timestamp: number
tld?: string

The id of the Top Level Domain (tld) aka namespace for this alias. Default is '0', which points to 'signum'

tldName?: string

The name of the Top Level Domain (tld) aka namespace for this alias. Default is 'signum'