interface AensUpdateOptions {
    _expectedMineRate?: number;
    _isInternalBuild?: boolean;
    _microBlockCycle?: number;
    absoluteTtl?: boolean;
    aeppOrigin?: string;
    aeppRpcClientId?: string;
    authData?: AuthData | ((tx) => Promise<AuthData>);
    blocks?: number;
    clientTtl?: number;
    confirm?: number | boolean;
    extendPointers?: boolean;
    fee: undefined | Int;
    innerTx?: boolean;
    interval?: number;
    nameTtl?: number;
    networkId?: string;
    nonce?: number;
    onAccount: AccountBase;
    onCompiler?: CompilerBase;
    onNode: Node;
    strategy?: NextNonceStrategy;
    ttl: undefined | number;
    verify?: boolean;
    version?: 2 | 1;
    waitMined?: boolean;
}

Hierarchy (view full)

Properties

_expectedMineRate?: number
_isInternalBuild?: boolean
_microBlockCycle?: number
absoluteTtl?: boolean
aeppOrigin?: string
aeppRpcClientId?: string
authData?: AuthData | ((tx) => Promise<AuthData>)

Type declaration

blocks?: number
clientTtl?: number

a suggestion as to how long any clients should cache this information

confirm?: number | boolean

Number of micro blocks that should be mined after tx get included

extendPointers?: boolean

Get the pointers from the node and merge with provided ones. Pointers with the same key will be overwritten.

fee: undefined | Int
innerTx?: boolean
interval?: number
nameTtl?: number

Name ttl represented in number of blocks (Max value is 50000 blocks)

networkId?: string
nonce?: number = ...
onAccount: AccountBase

Account to use

onCompiler?: CompilerBase
onNode: Node

Node to use

ttl: undefined | number
verify?: boolean

Verify transaction before broadcast, throw error if not

version?: 2 | 1
waitMined?: boolean

Ensure that transaction get into block

Generated using TypeDoc