Skip to content

Commit c6834d3

Browse files
authoredOct 24, 2023
fix: long latex equations (celestiaorg#1174)
Resolves celestiaorg#1173
1 parent 6d093d2 commit c6834d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎developers/submit-data.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@ $\text{Total Fee} = \text{Gas Limit} \times \text{Gas Price}$
6969

7070
The gas limit for a transaction is the maximum amount of gas that a user is
7171
willing to spend on a transaction. It is determined by both a static
72-
fixed cost and a variable dynamic cost based on the size of each blob involved
72+
fixed cost (FC) and a variable dynamic cost based on the size of each blob involved
7373
in the transaction:
7474

75-
$\text{Gas Limit} = \text{Fixed Cost} + \sum_{i=1}^{n} \text{SparseSharesNeeded(Blob}_i) \times \text{Share Size} \times \text{Gas Cost Per Blob Byte}$
75+
$\text{Gas Limit} = FC + \sum_{i=1}^{n} SSN(B_i) \times SS \times GCPBB$
7676

7777
Where:
7878

79-
- $\text{Fixed Cost}$ is a static value (65,000 gas)
80-
- $\text{SparseSharesNeeded(Blob}_i)$ is the number of shares needed for the $i$th blob in the transaction
81-
- $\text{Share Size}$ is the size of each share
82-
- $\text{Gas Cost Per Blob Byte}$ is a parameter that could potentially be adjusted through the system's governance mechanisms.
79+
- $FC$ = Fixed Cost, is a static value (65,000 gas)
80+
- $\sum_{i=1}^{n} SSN(B_i)$ = SparseSharesNeeded for the $i$th Blob, is the number of shares needed for the $i$th blob in the transaction
81+
- $SS$ = Share Size, is the size of each share
82+
- $GCPBB$ = Gas Cost Per Blob Byte, is a parameter that could potentially be adjusted through the system's governance mechanisms.
8383

8484
The gas fee is set by the user when they submit a transaction. The fee is often
8585
specified by users directly. The total cost for the transaction is then

0 commit comments

Comments
 (0)
Please sign in to comment.