type TranasctionOptions = { metadata?: { image?: string; name?: string }; mode: "transaction"; transaction: PreparedTransaction;};
Customize the display of the PayEmbed UI.
type metadata = { image?: string; name?: string };
type mode = "transaction";
The transaction to be executed.
type transaction = PreparedTransaction;