@arkade-os/sdk Documentation - v0.3.11
    Preparing search index...

    Type Alias TxTreeNode

    TxTreeNode is a node of the tree. It contains the transaction id, the transaction and the children. any TxTree can be serialized as a list of TxTreeNode.

    type TxTreeNode = {
        children: Record<number, string>;
        tx: string;
        txid: string;
    }
    Index

    Properties

    Properties

    children: Record<number, string>
    tx: string
    txid: string