prepareTxsForSigningImpl method

  1. @override
Future<TxSigningBundle> prepareTxsForSigningImpl(
  1. String walletBech32Address,
  2. String drepCredential,
  3. String constitutionalCommitteeColdCredential,
  4. String constitutionalCommitteeHotCredential,
  5. NetworkId networkId,
  6. List<CardanoTransaction> txs,
  7. List<Utxo> utxos,
)
override

Implementation

@override
Future<TxSigningBundle> prepareTxsForSigningImpl(
  String walletBech32Address,
  String drepCredential,
  String constitutionalCommitteeColdCredential,
  String constitutionalCommitteeHotCredential,
  NetworkId networkId,
  List<CardanoTransaction> txs,
  List<Utxo> utxos,
) => execute(
  (w) => w.prepareTxsForSigningImpl(
    walletBech32Address,
    drepCredential,
    constitutionalCommitteeColdCredential,
    constitutionalCommitteeHotCredential,
    networkId,
    txs,
    utxos,
  ),
);