-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
116 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
export const bannedOpCodes = new Set(['GASPRICE', 'GASLIMIT', 'DIFFICULTY', 'TIMESTAMP', 'BASEFEE', 'BLOCKHASH', 'NUMBER', 'ORIGIN', 'GAS', 'COINBASE', 'SELFDESTRUCT', 'RANDOM', 'PREVRANDAO', 'INVALID']) | ||
export const bannedOpCodes = new Set( | ||
[ | ||
'GASPRICE', | ||
'GASLIMIT', | ||
'DIFFICULTY', | ||
'TIMESTAMP', | ||
'BASEFEE', | ||
'BLOCKHASH', | ||
'NUMBER', | ||
'ORIGIN', | ||
'COINBASE', | ||
'SELFDESTRUCT', | ||
'RANDOM', | ||
'PREVRANDAO', | ||
'INVALID' | ||
] | ||
) | ||
// opcodes allowed in staked entities [OP-080] | ||
export const opcodesOnlyInStakedEntities = new Set(['BALANCE', 'SELFBALANCE']) | ||
export const opcodesOnlyInStakedEntities = new Set( | ||
[ | ||
'BALANCE', | ||
'SELFBALANCE' | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters