estimateTransactionByteLength(transaction): number
Estimates transaction byte length
Context:
Multi-sig transaction byte length increases by adding signatures
which causes the incorrect fee estimation because the fee value is set while creating unsigned transaction
Single-sig transaction byte length remain same due to empty message signature which allocates the space for signature
Estimates transaction byte length Context: