I want to add forward_payload, but when I pass bytes to this method, the data isn't sent correctly.
This is my code
body = JettonWallet().create_transfer_body(
to_address=Address(RECEIVER_JETTON_ADDRESS),
jetton_amount=int(0.01 * (10 ** JETTON_DECIMALS)),
response_address=Address(our_main_address),
forward_amount=to_nano("0.04", "ton"),
forward_payload="122333".encode("utf-8")
)