From 8f83a9f330114174e4c3439739a17ff93b164c54 Mon Sep 17 00:00:00 2001 From: aljo242 Date: Mon, 3 Jun 2024 16:02:46 -0400 Subject: [PATCH] annotate --- INTEGRATIONS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/INTEGRATIONS.md b/INTEGRATIONS.md index 2f06beb..8084c4b 100644 --- a/INTEGRATIONS.md +++ b/INTEGRATIONS.md @@ -64,7 +64,7 @@ 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 ``` @@ -72,13 +72,13 @@ Users can also optionally add a `tip` to their transaction which will be paid to 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) ```