github.com/ethereum/go-ethereum@v1.14.4-0.20240516095835-473ee8fc07a3/cmd/evm/testdata/29/readme.md (about) 1 ## EIP 4788 2 3 This test contains testcases for EIP-4788. The 4788-contract is 4 located at address `0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02`, and this test executes a simple transaction. It also 5 implicitly invokes the system tx, which sets calls the contract and sets the 6 storage values 7 8 ``` 9 $ dir=./testdata/29/ && go run . t8n --state.fork=Cancun --input.alloc=$dir/alloc.json --input.txs=$dir/txs.json --input.env=$dir/env.json --output.alloc=stdout 10 INFO [09-27|15:34:53.049] Trie dumping started root=19a4f8..01573c 11 INFO [09-27|15:34:53.049] Trie dumping complete accounts=2 elapsed="192.759µs" 12 INFO [09-27|15:34:53.050] Wrote file file=result.json 13 { 14 "alloc": { 15 "0x000f3df6d732807ef1319fb7b8bb8522d0beac02": { 16 "code": "0x3373fffffffffffffffffffffffffffffffffffffffe14604457602036146024575f5ffd5b620180005f350680545f35146037575f5ffd5b6201800001545f5260205ff35b6201800042064281555f359062018000015500", 17 "storage": { 18 "0x000000000000000000000000000000000000000000000000000000000000079e": "0x000000000000000000000000000000000000000000000000000000000000079e", 19 "0x000000000000000000000000000000000000000000000000000000000001879e": "0x0000beac00beac00beac00beac00beac00beac00beac00beac00beac00beac00" 20 }, 21 "balance": "0x1" 22 }, 23 "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b": { 24 "balance": "0x16345785d871db8", 25 "nonce": "0x1" 26 } 27 } 28 } 29 ```