-
Notifications
You must be signed in to change notification settings - Fork 765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[VM/Common] move gas base fees to Common #806
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,26 @@ | |
"netSstoreResetClearRefund": { | ||
"v": 19800, | ||
"d": "Once per SSTORE operation for resetting to the original zero value" | ||
}, | ||
"shl": { | ||
"v": 3, | ||
"d": "Base fee of the SHL opcode" | ||
}, | ||
"shr": { | ||
"v": 3, | ||
"d": "Base fee of the SHR opcode" | ||
}, | ||
"sar": { | ||
"v": 3, | ||
"d": "Base fee of the SAR opcode" | ||
}, | ||
"extcodehash": { | ||
"v": 400, | ||
"d": "Base fee of the EXTCODEHASH opcode" | ||
}, | ||
"create2": { | ||
"v": 32000, | ||
"d": "Base fee of the CREATE2 opcode" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, |
||
} | ||
}, | ||
"vm": {}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Byzantium looks good, all opcodes included.