Documentation
    Preparing search index...

    Interface SendTransactionRequestWithItems

    interface SendTransactionRequestWithItems {
        from?: string;
        items: StructuredItem[];
        messages?: undefined;
        network?: string;
        validUntil: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    from?: string

    The sender address in ':' format from which DApp intends to send the transaction. Current account.address by default.

    Structured transaction items. The wallet constructs the BoC for each item.

    messages?: undefined
    network?: string

    The network (mainnet or testnet) where DApp intends to send the transaction. If not set, the transaction is sent to the network currently set in the wallet, but this is not safe and DApp should always strive to set the network. If the network parameter is set, but the wallet has a different network set, the wallet should show an alert and DO NOT ALLOW TO SEND this transaction.

    validUntil: number

    Sending transaction deadline in unix epoch seconds.