Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

ethereum/execution-spec-tests

pdobacz created a review on a pull request on ethereum/execution-spec-tests

View on GitHub

danceratopz created a comment on a pull request on ethereum/execution-spec-tests
> I'm trying to use `evm_bytes` to generate python source code from bytecode for `gentest` (#862). The square brackets in the CLI output is not valid python code in this context. > > If the squa...

View on GitHub

pdobacz created a review comment on a pull request on ethereum/execution-spec-tests
We could, I don't think there would be any obstacles, except the "intent" of the test stems from EXTDELEGATECALL preserving value of the outer call. I can add EXTSTATICCALL and make a comment that ...

View on GitHub

pdobacz created a review on a pull request on ethereum/execution-spec-tests

View on GitHub

marioevz pushed 1 commit to gh-pages ethereum/execution-spec-tests
  • Deployed ac615f6fb9 to main with MkDocs 1.6.0 and mike 1.1.2 41c8a5e

View on GitHub

danceratopz pushed 1 commit to main ethereum/execution-spec-tests
  • feat(fw): implement `execute` to run tests on live networks (#686) Co-authored-by: danceratopz <[email protected]> ac615f6

View on GitHub

danceratopz deleted a branch ethereum/execution-spec-tests

fill-execute-modes

danceratopz closed a pull request on ethereum/execution-spec-tests
feat(fw): Implement `execute` command to run tests in live networks
## Requires #822, #823, #824, #825, #826, #827 Will stay in draft until these requirements are merged. ## ๐Ÿ—’๏ธ Description Introduces the new command `execute` that allows to run tests in l...
danceratopz created a review on a pull request on ethereum/execution-spec-tests
Let's get this merged!

View on GitHub

spencer-tb created a review on a pull request on ethereum/execution-spec-tests
LGTM!

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
Should we test `Op.EXTSTATICCALL` too in the same way?

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Small comment, thanks!

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Small comment, thanks!

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
I don't quite understand the difference between these two scenarios. What is the reserved stack?

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
Just for completeness sake, since the formula includes the target section inputs, I think we should the number of inputs as a test parameter. Perhaps we just pop the inputs at the start of the code...

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Some comments/questions. Thanks!

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Some comments/questions. Thanks!

View on GitHub

marioevz created a comment on an issue on ethereum/execution-spec-tests
> Could we just put them under the `state_tests/cancun/eip5656_mcopy`? as long as they're in the eip7692 pre-release and consumers just run everything in state_tests, and the actual target fork (`O...

View on GitHub

marioevz pushed 43 commits to fill-execute-modes ethereum/execution-spec-tests
  • fix(cli): Fix hasher, skip `.meta` (#886) e6d68b0
  • feat(pytests): OmmersRoot is EmptyOmmersRoot by default instead of 0 (#890) * put EmptyOmmersRoot in env file instea... 41c7d4e
  • refactor(ethereum_clis): move generic code from `TransitionTool` to `EthereumCLI`#894 619e7d8
  • feat(fill): emphasize that no tests were executed during a fill pytest session (#887) * feat(forks): improve languag... 0900aa8
  • fix(base_types): Allow `Bytes()`, add `sha256` method 4c95173
  • feat(base_types): Allow instantiating `Address` with a label afc45c0
  • fix(base_types): Fix `FixedSizeBytes` comparison ad0814a
  • feat(specs): Add `BlockchainTestEngine` fixup: BlockchainEngine changelog fixup(docs): BlockchainTestEngine docs C... e143011
  • feat(types,plugins): Allow `nonce` in `fund_eoa` 2bffcef
  • fix(tools): Allow `Bytes` in `Initcode` 818c87f
  • Merge pull request #888 from ethereum/pre-reqs-for-devnet-4-updates feat(fw): Changes required for Devnet-4 Tests e91a712
  • fix(github): Fix `eip7692-osaka` to also fill `tests/prague` (#897) 10860cc
  • โœจ feat(all): add application-wide configuration manager (#892) Co-authored-by: rahul <[email protected]... 3c7e745
  • ๐Ÿงน chore(docs): update dev docs navigation (#898) Co-authored-by: rahul <[email protected]> e88cb3c
  • new(tests): EOF - EIP-4750: Stack validation in CALLF (#889) Signed-off-by: Danno Ferrin <[email protected]> 6fb195b
  • โœจ feat(gentest): use jinja2 templating in `gentest` (#900) Co-authored-by: rahul <[email protected]> ... 295879d
  • fix(tests): allow multiple exceptions for trailing bytes tests 91d35de
  • new(tests): EOF - EIP-5450: RJUMP* vs CALLF tests (#833) Co-authored-by: Mario Vega <[email protected]> 7758f37
  • (WIP) fix(tests): fix operand stack limit test bec7466
  • fix(docs): fix test github actions locally commands (#909) 5a31516
  • and 23 more ...

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
```suggestion bytecode += opcode.bytecode() ``` We could add this as a method to `OpcodeWithOperands`: ```python @property def bytecode(self) -> Bytecode: """Opcode as bytecode w...

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
I'm a bit skeptical of this tbh. Which tests in `ethereum/tests` require this?

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
```suggestion while len(opcodes) > 1 and opcodes[-2].terminating and opcodes[-1].terminating: ``` I think it would be a bit cleaner to add: ```python @property def terminating(self) -> bo...

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Thanks for the changes, it's looking very good. A couple of comments.

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Thanks for the changes, it's looking very good. A couple of comments.

View on GitHub

marioevz created a review comment on a pull request on ethereum/execution-spec-tests
I think this timeout check should be within both of the while loops, otherwise we might loop forever.

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Thanks! Just one comment. And also I think a rebase is necessary due to the conflict with latest main branch.

View on GitHub

marioevz created a review on a pull request on ethereum/execution-spec-tests
Thanks! Just one comment. And also I think a rebase is necessary due to the conflict with latest main branch.

View on GitHub

marioevz pushed 1 commit to gh-pages ethereum/execution-spec-tests
  • Deployed 247c31241e to main with MkDocs 1.6.0 and mike 1.1.2 779479d

View on GitHub

marioevz deleted a branch ethereum/execution-spec-tests

exception_mapper

marioevz pushed 1 commit to main ethereum/execution-spec-tests
  • feat(exceptions,specs): class to verify exception strings (#795) * feat(exception mapper): class to verify exception... 247c312

View on GitHub

Load more