TxInput: {
    txHashHex: string;
    outputIndex: number;
    path: BIP32Path | null;
}

Describes single transaction input (i.e. UTxO)

See

Transaction

Type declaration

  • txHashHex: string

    UTxO's hash of the transaction

  • outputIndex: number

    UTxO's transaction output index

  • path: BIP32Path | null

    Describes path used for witnessing this UTxO. The API will sign transaction with this path.

    Note: null indicates we don't want to sign this utxo. This is highly non-standard and the only use case so far is pool registration as owner. We therefore don't mark it as optional so that people won't forget specifying it

    Note: Device has no ability to really check whether path is correct witnessing path for this UTxO.

Generated using TypeDoc