You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As i known ,fees are constructed around two constants (a and b). The formula for calculating minimal fees for a transaction (tx) is a * size(tx) + b, where:
a/b are protocol parameters
size(tx) is the transaction size in bytes
Here,i want to get the size of the tx.So that ,i can estimate the fee.
I searched the dev docs and found the cli cammand below
As i known ,fees are constructed around two constants (a and b). The formula for calculating minimal fees for a transaction (tx) is a * size(tx) + b, where:
a/b are protocol parameters
size(tx) is the transaction size in bytes
Here,i want to get the size of the tx.So that ,i can estimate the fee.
I searched the dev docs and found the cli cammand below
This is what i need, and i want to know is there any method can implement the similar function with this js framework?
The text was updated successfully, but these errors were encountered: