Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion Stellar-contract-config-setting.x
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,17 @@ enum ContractCostType {
// Cost of performing BN254 pairing operation
Bn254Pairing = 78,
// Cost of converting a BN254 scalar element from U256
Bn254FrFromU256 = 79
Bn254FrFromU256 = 79,
// Cost of converting a BN254 scalar element to U256
Bn254FrToU256 = 80,
// // Cost of performing BN254 scalar element addition/subtraction
Bn254FrAddSub = 81,
// Cost of performing BN254 scalar element multiplication
Bn254FrMul = 82,
// Cost of performing BN254 scalar element exponentiation
Bn254FrPow = 83,
// Cost of performing BN254 scalar element inversion
Bn254FrInv = 84
};

struct ContractCostParamEntry {
Expand Down