Skip to content

Commit

Permalink
improve style
Browse files Browse the repository at this point in the history
  • Loading branch information
0xstepit committed Jul 31, 2024
1 parent e1f1eca commit b22e931
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/develop/smart-contracts/custom-improvement-proposals.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ Each opcode is defined by specifying the logic that has to be executed when it
is called inside the EVM, its relationship with the memory, and the gas cost
associated with it. More specifically, an opcode is completely defined by:

- `SetExecute` update the execution logic for the opcode.
- `SetExecute`: update the execution logic for the opcode.

- `SetConstantGas` update the value used for the constant gas cost.
- `SetConstantGas`: update the value used for the constant gas cost.

- `SetDynamicGas` update the function used to compute the dynamic gas cost.
- `SetDynamicGas`: update the function used to compute the dynamic gas cost.

- `SetMinStack` update the minimum number of items in the stack required to
- `SetMinStack`: update the minimum number of items in the stack required to
execute the operation.

- `SetMaxStack` update the maximum number of items that will be in the stack
- `SetMaxStack`: update the maximum number of items that will be in the stack
after executing the operation.

- `SetMemorySize` the memory size required by the operation.
- `SetMemorySize`: the memory size required by the operation.

Within the evmOS framework, developers can modify any of the previous properties.

Expand Down

0 comments on commit b22e931

Please sign in to comment.