Helius SDK - v2.2.2
    Preparing search index...

    Interface SendSmartTxSenderDeps

    Internal dependencies for sendTransactionWithSender.

    interface SendSmartTxSenderDeps {
        createSmartTransactionWithTip: (
            i: CreateSmartTxWithTipInput,
        ) => Promise<
            Readonly<
                {
                    base64: string;
                    lifetime: BlockhashLifetime;
                    message: Readonly<{}> & TransactionMessageWithFeePayer<string>;
                    priorityFee: number;
                    signed: FullySignedTransaction & TransactionWithinSizeLimit & Readonly<
                        {},
                    > & TransactionWithLifetime;
                    units: number;
                },
            >,
        >;
        raw: Rpc<SolanaRpcApi>;
    }
    Index

    Properties

    createSmartTransactionWithTip: (
        i: CreateSmartTxWithTipInput,
    ) => Promise<
        Readonly<
            {
                base64: string;
                lifetime: BlockhashLifetime;
                message: Readonly<{}> & TransactionMessageWithFeePayer<string>;
                priorityFee: number;
                signed: FullySignedTransaction & TransactionWithinSizeLimit & Readonly<
                    {},
                > & TransactionWithLifetime;
                units: number;
            },
        >,
    >
    raw: Rpc<SolanaRpcApi>