Coda by Ian Macalinao
    Preparing search index...

    Interface SolAmountTypeNode<TNumber>

    A SOL amount expressed in lamports under the wrapped numeric type.

    interface SolAmountTypeNode<
        TNumber extends
            NestedTypeNode<NumberTypeNode> = NestedTypeNode<NumberTypeNode>,
    > {
        kind: "solAmountTypeNode";
        number: TNumber;
    }

    Type Parameters

    Index
    kind: "solAmountTypeNode"
    number: TNumber

    The numeric type used to serialise the lamport amount.