0.2.2
Compat cardano-wallet@
v2020-10-13
.
What's new:
- breaking change in the payments argument for creating transaction, payment fee and coin selection, allowing to send multi-address transactions to the same address:
# was:
payments = {"addr1" => 1, "addr2" => 2}
# is:
payments = [{"addr1" => 1}, {"addr2" => 2}]
CardanoWallet.new.shelley.transactions.create(wid, passphrase, payments)
CardanoWallet.new.shelley.transactions.payment_fees(wid, payments)
CardanoWallet.new.shelley.coin_selections.random(wid, payments)
CardanoWallet.new.byron.transactions.create(wid, passphrase, payments)
CardanoWallet.new.byron.transactions.payment_fees(wid, payments)
CardanoWallet.new.byron.coin_selections.random(wid, payments)