Are custom transactions possible when loading Lisk Elements from CDN?

When loading Lisk Elements in a simple webpage using the following script:
<script src="https://js.lisk.io/lisk-client-3.0.2.js"></script>

Is it possible to broadcast a custom transaction instead of a standard tx, and how would the code needed for this look like?

Hey @korben3!

The custom transactions are not included in the lisk-client.
Therefore you still need to import the custom transaction that you want to broadcast.
Based on this you can create the Transaction JSON object.
This object can be send to the desired node by utilizing lisk-client.
One example how to broadcast transaction with the Lisk-APIClient is described here: https://lisk.io/documentation/lisk-sdk/guides/app-development/broadcast.html#post

Let me know if this helps! :slight_smile: