github.com/theQRL/go-zond@v0.1.1/cmd/evm/testdata/8/readme.md (about) 1 ## EIP-2930 testing 2 3 This test contains testcases for EIP-2930, which uses transactions with access lists. 4 5 ### Prestate 6 7 The alloc portion contains one contract (`0x000000000000000000000000000000000000aaaa`), containing the 8 following code: `0x5854505854`: `PC ;SLOAD; POP; PC; SLOAD`. 9 10 Essentially, this contract does `SLOAD(0)` and `SLOAD(3)`. 11 12 The alloc also contains some funds on `0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b`. 13 14 ## Transactions 15 16 There are three transactions, each invokes the contract above. 17 18 1. ACL-transaction, which contains some non-used slots 19 2. Regular transaction 20 3. ACL-transaction, which contains the slots `1` and `3` in `0x000000000000000000000000000000000000aaaa` 21 22 ## Execution 23 24 Running it yields: 25 ``` 26 dir=./testdata/8 && ./evm t8n --state.fork=Berlin --input.alloc=$dir/alloc.json --input.txs=$dir/txs.json --input.env=$dir/env.json --trace 2>/dev/null && cat trace-* | grep SLOAD 27 {"pc":1,"op":84,"gas":"0x484be","gasCost":"0x834","memSize":0,"stack":["0x0"],"depth":1,"refund":0,"opName":"SLOAD"} 28 {"pc":4,"op":84,"gas":"0x47c86","gasCost":"0x834","memSize":0,"stack":["0x3"],"depth":1,"refund":0,"opName":"SLOAD"} 29 {"pc":1,"op":84,"gas":"0x49cf6","gasCost":"0x834","memSize":0,"stack":["0x0"],"depth":1,"refund":0,"opName":"SLOAD"} 30 {"pc":4,"op":84,"gas":"0x494be","gasCost":"0x834","memSize":0,"stack":["0x3"],"depth":1,"refund":0,"opName":"SLOAD"} 31 {"pc":1,"op":84,"gas":"0x484be","gasCost":"0x64","memSize":0,"stack":["0x0"],"depth":1,"refund":0,"opName":"SLOAD"} 32 {"pc":4,"op":84,"gas":"0x48456","gasCost":"0x64","memSize":0,"stack":["0x3"],"depth":1,"refund":0,"opName":"SLOAD"} 33 ``` 34 35 Simlarly, we can provide the input transactions via `stdin` instead of as file: 36 37 ``` 38 $ dir=./testdata/8 \ 39 && cat $dir/txs.json | jq "{txs: .}" \ 40 | ./evm t8n --state.fork=Berlin \ 41 --input.alloc=$dir/alloc.json \ 42 --input.txs=stdin \ 43 --input.env=$dir/env.json \ 44 --trace \ 45 2>/dev/null \ 46 && cat trace-* | grep SLOAD 47 {"pc":1,"op":84,"gas":"0x484be","gasCost":"0x834","memSize":0,"stack":["0x0"],"depth":1,"refund":0,"opName":"SLOAD"} 48 {"pc":4,"op":84,"gas":"0x47c86","gasCost":"0x834","memSize":0,"stack":["0x3"],"depth":1,"refund":0,"opName":"SLOAD"} 49 {"pc":1,"op":84,"gas":"0x49cf6","gasCost":"0x834","memSize":0,"stack":["0x0"],"depth":1,"refund":0,"opName":"SLOAD"} 50 {"pc":4,"op":84,"gas":"0x494be","gasCost":"0x834","memSize":0,"stack":["0x3"],"depth":1,"refund":0,"opName":"SLOAD"} 51 {"pc":1,"op":84,"gas":"0x484be","gasCost":"0x64","memSize":0,"stack":["0x0"],"depth":1,"refund":0,"opName":"SLOAD"} 52 {"pc":4,"op":84,"gas":"0x48456","gasCost":"0x64","memSize":0,"stack":["0x3"],"depth":1,"refund":0,"opName":"SLOAD"} 53 ``` 54 55 If we try to execute it on older rules: 56 ``` 57 $ dir=./testdata/8 && ./evm t8n --state.fork=Istanbul --input.alloc=$dir/alloc.json --input.txs=$dir/txs.json --input.env=$dir/env.json 58 ERROR(10): failed signing transactions: ERROR(10): tx 0: failed to sign tx: transaction type not supported 59 ```