interface TxParamsChannelCloseSoloTx1 {
    _canIncreaseFee?: boolean;
    channelId: `ch_${string}`;
    denomination?: AE_AMOUNT_FORMATS;
    fee?: Int;
    fromId: `ak_${string}`;
    nonce: number;
    payload: `tx_${string}`;
    poi:
        | Uint8Array
        | `tx_${string}`
        | (EntParams & { tag: EntryTag.TreesPoi; });
    tag: ChannelCloseSoloTx;
    ttl?: number;
    version?: 1;
}

Hierarchy (View Summary)

Properties

_canIncreaseFee?: boolean
channelId: `ch_${string}` = ...
denomination?: AE_AMOUNT_FORMATS
fee?: Int
fromId: `ak_${string}` = ...
nonce: number = ...
payload: `tx_${string}` = ...
poi: Uint8Array | `tx_${string}` | (EntParams & { tag: EntryTag.TreesPoi; }) = entryTreesPoi
ttl?: number
version?: 1