Interface TxParamsAsyncChannelCreateTx2

interface TxParamsAsyncChannelCreateTx2 {
    _canIncreaseFee?: boolean;
    _expectedMineRate?: number;
    _isInternalBuild?: boolean;
    _microBlockCycle?: number;
    absoluteTtl?: boolean;
    channelReserve: Int;
    denomination?: AE_AMOUNT_FORMATS;
    fee: undefined | Int;
    initiator: `ak_${string}`;
    initiatorAmount: Int;
    initiatorDelegateIds: readonly (
        | `ch_${string}`
        | `ct_${string}`
        | `ok_${string}`
        | `ak_${string}`
        | `cm_${string}`
        | `nm_${string}`)[];
    lockPeriod: Int;
    nonce?: number;
    onNode?: Node;
    responder: `ak_${string}`;
    responderAmount: Int;
    responderDelegateIds: readonly (
        | `ch_${string}`
        | `ct_${string}`
        | `ok_${string}`
        | `ak_${string}`
        | `cm_${string}`
        | `nm_${string}`)[];
    stateHash: `st_${string}`;
    strategy?: NextNonceStrategy;
    tag: ChannelCreateTx;
    ttl: undefined | number;
    version?: 2;
}

Hierarchy (view full)

Properties

_canIncreaseFee?: boolean
_expectedMineRate?: number
_isInternalBuild?: boolean
_microBlockCycle?: number
absoluteTtl?: boolean
channelReserve: Int = uInt
denomination?: AE_AMOUNT_FORMATS
fee: undefined | Int
initiator: `ak_${string}` = ...
initiatorAmount: Int = uInt
initiatorDelegateIds: readonly (
    | `ch_${string}`
    | `ct_${string}`
    | `ok_${string}`
    | `ak_${string}`
    | `cm_${string}`
    | `nm_${string}`)[] = ...
lockPeriod: Int = uInt
nonce?: number = ...
onNode?: Node
responder: `ak_${string}` = ...
responderAmount: Int = uInt
responderDelegateIds: readonly (
    | `ch_${string}`
    | `ct_${string}`
    | `ok_${string}`
    | `ak_${string}`
    | `cm_${string}`
    | `nm_${string}`)[] = ...
stateHash: `st_${string}` = ...
tag: ChannelCreateTx = ...
ttl: undefined | number
version