cardano-python icon indicating copy to clipboard operation
cardano-python copied to clipboard

Python module for handling Cardano cryptocurrency

Results 7 cardano-python issues
Sort by recently updated
recently updated
newest added

Using this python api, I know that you can estimate the fee (using the `estimate_fee` function), for a given txn but can the fee be adjusted (increased) for the txn,...

There is a situation where KeyError is raised: if a wallet has a single (non-ADA) asset, then if all UTXOs containing that asset are consumed in a transaction, calling wallet.assets()...

An example minting command from cardano-cli would be ``` cardano-cli transaction build-raw \ --fee $fee \ --tx-in $tx_in \ --tx-out $FROM_ADDRESS+$output+"$TOKEN_COUNT $POLLICY_ID.$TOKEN_NAME" \ --mint="$TOKEN_COUNT $POLLICY_ID.$TOKEN_NAME" \ --minting-script-file policy/policy_2.script \ --metadata-json-file...

I have been using Daedalus as my cardano-wallet provider. Daedalus uses HTTPS with custom CA and client certificates. In order to be able to use them properly, we need to...

The unstable API is described here: https://input-output-hk.github.io/cardano-wallet/api/edge/#tag/Transactions-New Our top-level API could consist of: * `Wallet.transfer()` accepts `brodacast=True` argument, which preserves current behavior by default * `Transaction.body` can hold the serialized...

enhancement

Hi :) Thanks for the library.. Is there a way to generate more than the default number of addresses? Also Once an address gets used are more generated automatically? I...

My only ask is to be compatible with python3. I see you had used python 2 style class declarations ``` class WalletService(object): .... ``` My order of preference would be...