Skip to content

Commit

Permalink
annotate
Browse files Browse the repository at this point in the history
  • Loading branch information
aljo242 committed Jun 3, 2024
1 parent 4c802cc commit 8f83a9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions INTEGRATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,21 +64,21 @@ The calculation for a transaction's fee is: `gasLimit` * `gasPrice`. End users

The actual amount that will be deducted from a user's account is:

```
```text
deducted = gasConsumed * gasPrice
```

Users can also optionally add a `tip` to their transaction which will be paid to the block proposer as well as increase their transactions' priority. In Cosmos, the priority of your Tx is the entire `fee` provided. Transactions with higher fees are always ordered higher than others with lower fees in blocks.

A fee with a tip is as follows:

```
```text
feeWithTip = tip + (gasLimit * gasPrice)
```

The deducted amount after a transaction will be:

```
```text
deducted = tip + (gasConsumed * gasPrice)
```

Expand Down

0 comments on commit 8f83a9f

Please sign in to comment.