transfer all balance #182
Unanswered
alphered789375639
asked this question in
Q&A
Replies: 2 comments 10 replies
|
You can do something like this: utxos = chain_context.utxos(str(current_address))
builder = TransactionBuilder(chain_context)
for utxo in utxos:
builder.add_input(utxo)
signed_tx = builder.build_and_sign(signing_keys=[your_signing_key], change_address=new_address) |
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello, I hope you are well.
I have been working on a project for some time
I want to transfer my entire account balance minus fee to another account using pycardano but I don't know how?
I tried some methods but I encountered various errors
Is this workable? If yes, how?
I've been trying for a long time and didn't get the result.. Please help
All reactions