Skip to content

Commit 516fcec

Browse files
chore: release
1 parent 021bec5 commit 516fcec

File tree

10 files changed

+774
-0
lines changed

10 files changed

+774
-0
lines changed

crates/bytecode/CHANGELOG.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-bytecode-v1.0.0) - 2024-10-09
11+
12+
### Added
13+
14+
- restructuring Part6 transaction crate ([#1814](https://github.com/bluealloy/revm/pull/1814))
15+
- Merge validation/analyzis with Bytecode ([#1793](https://github.com/bluealloy/revm/pull/1793))
16+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
17+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
18+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
19+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
20+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
21+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
22+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
23+
24+
### Fixed
25+
26+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
27+
28+
### Other
29+
30+
- fix `constants` module typo ([#1801](https://github.com/bluealloy/revm/pull/1801))
31+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
32+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
33+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
34+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
35+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
36+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
37+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
38+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
39+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
40+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
41+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
42+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
43+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
44+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
45+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
46+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
47+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
48+
- revm-precompiles to revm-precompile
49+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
50+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
51+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
52+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
53+
- typo fixes
54+
- fix readme typo
55+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
56+
- readme. debuger update
57+
- Bump revm v0.3.0. README updated
58+
- readme
59+
- Add time elapsed for tests
60+
- readme updated
61+
- Include Basefee into cost calc. readme change
62+
- Initialize precompile accounts
63+
- Status update. Taking a break
64+
- Merkle calc. Tweaks and debugging for eip158
65+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
66+
- TEMP
67+
- one tab removed
68+
- readme
69+
- README Example simplified
70+
- Gas calculation for Call/Create. Example Added
71+
- readme usage
72+
- README changes
73+
- Static gas cost added
74+
- Subroutine changelogs and reverts
75+
- Readme postulates
76+
- Spelling
77+
- Restructure project
78+
- First iteration. Machine is looking okay

crates/database/CHANGELOG.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-database-v1.0.0) - 2024-10-09
11+
12+
### Added
13+
14+
- add support for async database ([#1809](https://github.com/bluealloy/revm/pull/1809))
15+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
16+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
17+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
18+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
19+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
20+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
21+
22+
### Fixed
23+
24+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
25+
26+
### Other
27+
28+
- bump alloy to 0.4.2 ([#1817](https://github.com/bluealloy/revm/pull/1817))
29+
- *(primitives)* replace HashMap re-exports with alloy_primitives::map ([#1805](https://github.com/bluealloy/revm/pull/1805))
30+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
31+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
32+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
33+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
34+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
35+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
36+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
37+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
38+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
39+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
40+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
41+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
42+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
43+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
44+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
45+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
46+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
47+
- revm-precompiles to revm-precompile
48+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
49+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
50+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
51+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
52+
- typo fixes
53+
- fix readme typo
54+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
55+
- readme. debuger update
56+
- Bump revm v0.3.0. README updated
57+
- readme
58+
- Add time elapsed for tests
59+
- readme updated
60+
- Include Basefee into cost calc. readme change
61+
- Initialize precompile accounts
62+
- Status update. Taking a break
63+
- Merkle calc. Tweaks and debugging for eip158
64+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
65+
- TEMP
66+
- one tab removed
67+
- readme
68+
- README Example simplified
69+
- Gas calculation for Call/Create. Example Added
70+
- readme usage
71+
- README changes
72+
- Static gas cost added
73+
- Subroutine changelogs and reverts
74+
- Readme postulates
75+
- Spelling
76+
- Restructure project
77+
- First iteration. Machine is looking okay
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-database-interface-v1.0.0) - 2024-10-09
11+
12+
### Added
13+
14+
- add support for async database ([#1809](https://github.com/bluealloy/revm/pull/1809))
15+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
16+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
17+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
18+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
19+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
20+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
21+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
22+
23+
### Fixed
24+
25+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
26+
27+
### Other
28+
29+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
30+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
31+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
32+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
33+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
34+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
35+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
36+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
37+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
38+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
39+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
40+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
41+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
42+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
43+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
44+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
45+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
46+
- revm-precompiles to revm-precompile
47+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
48+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
49+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
50+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
51+
- typo fixes
52+
- fix readme typo
53+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
54+
- readme. debuger update
55+
- Bump revm v0.3.0. README updated
56+
- readme
57+
- Add time elapsed for tests
58+
- readme updated
59+
- Include Basefee into cost calc. readme change
60+
- Initialize precompile accounts
61+
- Status update. Taking a break
62+
- Merkle calc. Tweaks and debugging for eip158
63+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
64+
- TEMP
65+
- one tab removed
66+
- readme
67+
- README Example simplified
68+
- Gas calculation for Call/Create. Example Added
69+
- readme usage
70+
- README changes
71+
- Static gas cost added
72+
- Subroutine changelogs and reverts
73+
- Readme postulates
74+
- Spelling
75+
- Restructure project
76+
- First iteration. Machine is looking okay

crates/inspector/CHANGELOG.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-inspector-v1.0.0) - 2024-10-09
11+
12+
### Added
13+
14+
- restructuring Part6 transaction crate ([#1814](https://github.com/bluealloy/revm/pull/1814))
15+
- Merge validation/analyzis with Bytecode ([#1793](https://github.com/bluealloy/revm/pull/1793))
16+
- Restructuring Part3 inspector crate ([#1788](https://github.com/bluealloy/revm/pull/1788))
17+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
18+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
19+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
20+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
21+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
22+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
23+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
24+
25+
### Fixed
26+
27+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
28+
29+
### Other
30+
31+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
32+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
33+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
34+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
35+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
36+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
37+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
38+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
39+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
40+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
41+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
42+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
43+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
44+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
45+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
46+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
47+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
48+
- revm-precompiles to revm-precompile
49+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
50+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
51+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
52+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
53+
- typo fixes
54+
- fix readme typo
55+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
56+
- readme. debuger update
57+
- Bump revm v0.3.0. README updated
58+
- readme
59+
- Add time elapsed for tests
60+
- readme updated
61+
- Include Basefee into cost calc. readme change
62+
- Initialize precompile accounts
63+
- Status update. Taking a break
64+
- Merkle calc. Tweaks and debugging for eip158
65+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
66+
- TEMP
67+
- one tab removed
68+
- readme
69+
- README Example simplified
70+
- Gas calculation for Call/Create. Example Added
71+
- readme usage
72+
- README changes
73+
- Static gas cost added
74+
- Subroutine changelogs and reverts
75+
- Readme postulates
76+
- Spelling
77+
- Restructure project
78+
- First iteration. Machine is looking okay

crates/optimism/CHANGELOG.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-optimism-v1.0.0) - 2024-10-09
11+
12+
### Added
13+
14+
- restructuring Part6 transaction crate ([#1814](https://github.com/bluealloy/revm/pull/1814))
15+
- Restructuring Part3 inspector crate ([#1788](https://github.com/bluealloy/revm/pull/1788))
16+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
17+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
18+
- introducing EvmWiring, a chain-specific configuration ([#1672](https://github.com/bluealloy/revm/pull/1672))
19+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
20+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
21+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
22+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
23+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
24+
25+
### Fixed
26+
27+
- make macro crate-agnostic ([#1802](https://github.com/bluealloy/revm/pull/1802))
28+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
29+
30+
### Other
31+
32+
- *(primitives)* replace HashMap re-exports with alloy_primitives::map ([#1805](https://github.com/bluealloy/revm/pull/1805))
33+
- Test for l1 gas used and l1 fee for ecotone tx ([#1748](https://github.com/bluealloy/revm/pull/1748))
34+
- *(deps)* bump anyhow from 1.0.88 to 1.0.89 ([#1772](https://github.com/bluealloy/revm/pull/1772))
35+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
36+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
37+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
38+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
39+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
40+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
41+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
42+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
43+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
44+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
45+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
46+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
47+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
48+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
49+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
50+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
51+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
52+
- revm-precompiles to revm-precompile
53+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
54+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
55+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
56+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
57+
- typo fixes
58+
- fix readme typo
59+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
60+
- readme. debuger update
61+
- Bump revm v0.3.0. README updated
62+
- readme
63+
- Add time elapsed for tests
64+
- readme updated
65+
- Include Basefee into cost calc. readme change
66+
- Initialize precompile accounts
67+
- Status update. Taking a break
68+
- Merkle calc. Tweaks and debugging for eip158
69+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
70+
- TEMP
71+
- one tab removed
72+
- readme
73+
- README Example simplified
74+
- Gas calculation for Call/Create. Example Added
75+
- readme usage
76+
- README changes
77+
- Static gas cost added
78+
- Subroutine changelogs and reverts
79+
- Readme postulates
80+
- Spelling
81+
- Restructure project
82+
- First iteration. Machine is looking okay

0 commit comments

Comments
 (0)