interface TxParamsChannelCreateTx2 {
    _canIncreaseFee?: 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;
    responder: `ak_${string}`;
    responderAmount: Int;
    responderDelegateIds: readonly (
        | `ch_${string}`
        | `ct_${string}`
        | `ok_${string}`
        | `ak_${string}`
        | `cm_${string}`
        | `nm_${string}`)[];
    stateHash: `st_${string}`;
    tag: ChannelCreateTx;
    ttl: undefined | number;
    version?: 2;
}

Hierarchy (view full)

Properties

_canIncreaseFee?: 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 = ...
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