interface NameUpdateTx {
    accountId: string;
    clientTtl: number;
    fee: bigint;
    nameId: string;
    nameTtl: number;
    nonce?: number;
    pointers: NamePointer[];
    ttl?: number;
}

Properties

accountId: string

Base58Check encoded tagged pubkey

clientTtl: number
fee: bigint
nameId: string

Base58Check encoded tagged value

nameTtl: number
nonce?: number
pointers: NamePointer[]
ttl?: number