Closed andredif closed 2 weeks ago
I downgraded from solana==0.35 to 0.34 and code works
For legacy transactions, you need to use
https://michaelhly.com/solana-py/rpc/api/#solana.rpc.api.Client.send_legacy_transaction
instead of send_transaction
.
Or you can migrate from from solana.transaction import Transaction
to from solders.transaction import Transaction
HI, I can't successfully create a
The error is always Cannot convert 'Transaction' object to bytes, it happens in the send_transaction function of the client. Is it a bug?