-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
contract_name
to DB based on deployment (#129)
* wip * feat: simplified manifest * fix: lint * fix: logging * fix: mainnet-fork * feat: new contract_name changes from boa * fix: explorer not initializing (#133) * Fix/explorer config (#134) * fix: save_abi_path * fix: remove breakpoint * Fix/explorer config 2 (#135) * fix: make formating more universal * fix: tests * fix: default network (#136) * fix: simplify abi in manifest named * fix: update version
- Loading branch information
1 parent
0cbc856
commit 254b632
Showing
26 changed files
with
427 additions
and
324 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
is_zksync = true | ||
prompt_live = false | ||
save_to_db = false | ||
live_or_staging = false | ||
is_zksync = "true" | ||
prompt_live = "false" | ||
save_to_db = "false" | ||
live_or_staging = "false" | ||
db_path = "None" |
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,4 +1,5 @@ | ||
is_zksync = false | ||
prompt_live = false | ||
save_to_db = false | ||
live_or_staging = false | ||
is_zksync = "true" | ||
prompt_live = "false" | ||
save_to_db = "false" | ||
live_or_staging = "false" | ||
db_path = "None" |
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,4 +1,5 @@ | ||
is_zksync = false | ||
prompt_live = false | ||
save_to_db = false | ||
live_or_staging = false | ||
is_zksync = "false" | ||
prompt_live = "false" | ||
save_to_db = "false" | ||
live_or_staging = "false" | ||
db_path = "None" |
Oops, something went wrong.