-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Goals of PR merge 0.4.1-alpha.1 Notes: no Related Issues: no
- Loading branch information
Showing
39 changed files
with
2,734 additions
and
2,019 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,7 @@ use ( | |
./batch-submitter | ||
./bss-core | ||
./l2geth | ||
./tss | ||
./metrics | ||
./fraud-proof | ||
) |
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
Large diffs are not rendered by default.
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
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
Large diffs are not rendered by default.
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
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,6 @@ | ||
go 1.18 | ||
|
||
use ( | ||
./bss-core | ||
./gas-oracle | ||
) |
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 |
---|---|---|
@@ -1,23 +1,19 @@ | ||
go 1.18 | ||
|
||
use ( | ||
./batch-submitter | ||
./bss-core | ||
./fraud-proof | ||
./gas-oracle | ||
./integration-tests/go-tests | ||
./l2geth | ||
./l2geth-exporter | ||
./mt-batcher | ||
./mt-challenger | ||
./proxyd | ||
./state-surgery | ||
./subsidy | ||
./tss | ||
metrics | ||
replace ( | ||
github.com/Layr-Labs/datalayr/common v0.0.0 => ./datalayr/common | ||
github.com/Layr-Labs/datalayr/lib/merkzg v0.0.0 => ./datalayr/lib/merkzg | ||
github.com/ethereum/go-ethereum v1.10.21 => github.com/ethereum-mantle/reference-optimistic-geth v0.0.0-20220803173305-1c9d4cc76a6e | ||
github.com/mantlenetworkio/mantle/bss-core v0.0.0 => ./bss-core | ||
github.com/mantlenetworkio/mantle/fraud-proof v0.0.0 => ./fraud-proof | ||
github.com/mantlenetworkio/mantle/gas-oracle v0.0.0 => ./gas-oracle | ||
github.com/mantlenetworkio/mantle/l2geth v0.0.0 => ./l2geth | ||
github.com/mantlenetworkio/mantle/metrics v0.0.0 => ./metrics | ||
github.com/mantlenetworkio/mantle/mt-batcher v0.0.0 => ./mt-batcher | ||
github.com/mantlenetworkio/mantle/mt-challenger v0.0.0 => ./mt-challenger | ||
github.com/mantlenetworkio/mantle/subsidy v0.0.0 => ./subsidy | ||
github.com/mantlenetworkio/mantle/tss v0.0.0 => ./tss | ||
) | ||
|
||
replace github.com/ethereum/go-ethereum v1.10.21 => github.com/ethereum-mantle/reference-optimistic-geth v0.0.0-20220803173305-1c9d4cc76a6e | ||
|
||
// For local debugging: | ||
//replace github.com/ethereum/go-ethereum v1.10.21 => ../go-ethereum |
Oops, something went wrong.