Determine fees for a transaction
from kujuaOnChain.Client import inputs, functions
fees = functions.calculate_fees(inputs.dummy.amount,
inputs.node.node_url,
inputs.dummy.recipient_address)
print(fees)
We use the on chain method by importing kujuaOnChain. Meaning the functions run directly on the node and return results. Off chain will be available with the full Github release. You can find the code for kujuaOnChain on GitHub