/// @notice Example of invoking function of msig DeBot. Allows to transfer tons from msig wallet to recipient address.
    function invokeTransaction(address sender, address recipient, uint128 amount, bool bounce, TvmCell payload) public {
        //TODO: implement certain DeBot scenario.
    }
    /// @notice Allows to create internal message to invoke `invokeTransaction` DeBot function. 
    /// The message can be sent to DeBot by external app or other DeBots to run certain scenario.
    /// Parameters: define arguments for your invoke function.
    /// Returns: return internal message packed to Cell.
    function getInvokeMessage(address sender, address recipient, uint128 amount, bool bounce, TvmCell payload) public pure
        returns(TvmCell message) {
        TvmCell body = tvm.encodeBody(MsigDebot.invokeTransaction, sender, recipient, amount, bounce, payload);
        TvmBuilder message_;
        // Pack internal message header (see TON blockchain spec for TLB-scheme).
        message_.store(false, true, true, false, address(0), address(this));
        message_.storeTons(0);
        message_.storeUnsigned(0, 1);
        message_.storeTons(0);
        message_.storeTons(0);
        message_.store(uint64(0));
        message_.store(uint32(0));
        message_.storeUnsigned(0, 1); //init: nothing$0
        message_.storeUnsigned(1, 1); //body: right$1
        // Pack encoded message body
        message_.store(body);
        message = message_.toCell();
    }
Write and make a public function in DeBot that can be invoked by other DeBots or by DeBot Browser and that will accept all necessary parameters for certain scenario.
Write and implement a get-method in DeBot that will accept values for required parameters of invoke function (defined in Step 1) and pack them into internal message to DeBot.
Note: get-method must return message argument of type cell
Save message argument returned by this method and recode it as base64url **to be compatible with URL scheme.
Use link template:
<https://uri.ever.surf/debot?address=><address>&message=<message>
address — address of DeBot.
message — message to DeBot.
Open link in Browser or generate QRCode for it and scan it by TON Surf.