-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: refactor * chore: `black .` * fix(test): install pytest in gh workflow * chore: update lockfile * fix(test): dont use pytest asyncio plugin --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c63e5ef
commit dfcbf1a
Showing
19 changed files
with
174 additions
and
44 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
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from evmspec.data import uints | ||
from evmspec.data.main import ( | ||
Address, | ||
BlockHash, | ||
BlockNumber, | ||
HexBytes32, | ||
Nonce, | ||
TransactionHash, | ||
UnixTimestamp, | ||
Wei, | ||
uint, | ||
_decode_hook, | ||
) | ||
|
||
__all__ = [ | ||
"Address", | ||
"uint", | ||
"Wei", | ||
"HexBytes32", | ||
"TransactionHash", | ||
"BlockNumber", | ||
"BlockHash", | ||
"uints", | ||
"UnixTimestamp", | ||
"Nonce", | ||
] |
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from evmspec.structs.header import ErigonBlockHeader | ||
from evmspec.structs.receipt import FullTransactionReceipt, TransactionReceipt | ||
from evmspec.structs.trace import FilterTrace | ||
|
||
__all__ = [ | ||
# - header | ||
"ErigonBlockHeader", | ||
# - receipt | ||
"FullTransactionReceipt", | ||
"TransactionReceipt", | ||
# - trace | ||
"FilterTrace", | ||
# - transaction | ||
"Transaction", | ||
"AnyTransaction", | ||
"TransactionRLP", | ||
"TransactionLegacy", | ||
"Transaction2930", | ||
"Transaction1559", | ||
] |
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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