forked from Dapp-Learning-DAO/Dapp-Learning
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
187 additions
and
55 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
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,67 @@ | ||
# Brownie Configuration File | ||
project_structure: | ||
build: build | ||
contracts: contracts | ||
interfaces: interfaces | ||
reports: reports | ||
scripts: scripts | ||
tests: tests | ||
|
||
networks: | ||
default: development | ||
development: | ||
gas_limit: max | ||
gas_buffer: 1 | ||
gas_price: 0 | ||
max_fee: null | ||
priority_fee: null | ||
reverting_tx_gas_limit: max | ||
default_contract_owner: true | ||
cmd_settings: null | ||
live: | ||
gas_limit: auto | ||
gas_buffer: 1.1 | ||
gas_price: auto | ||
max_fee: null | ||
priority_fee: null | ||
reverting_tx_gas_limit: false | ||
default_contract_owner: false | ||
|
||
compiler: | ||
evm_version: null | ||
solc: | ||
version: null | ||
optimizer: | ||
enabled: true | ||
runs: 200 | ||
remappings: null | ||
vyper: | ||
version: null | ||
|
||
console: | ||
show_colors: true | ||
color_style: monokai | ||
auto_suggest: true | ||
completions: true | ||
editing_mode: emacs | ||
|
||
reports: | ||
exclude_paths: null | ||
exclude_contracts: null | ||
only_include_project: true | ||
|
||
hypothesis: | ||
deadline: null | ||
max_examples: 50 | ||
report_multiple_bugs: False | ||
stateful_step_count: 10 | ||
phases: | ||
explicit: true | ||
reuse: true | ||
generate: true | ||
target: true | ||
shrink: true | ||
|
||
autofetch_sources: false | ||
dependencies: null | ||
dev_deployment_artifacts: false |
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
2 changes: 1 addition & 1 deletion
2
basic/19-brownie/brownie_test/tests/exchange/test_investment.py
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,4 @@ | ||
from brownie import accounts | ||
from brownie import (accounts, web3) | ||
import brownie | ||
|
||
|
||
|
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,4 @@ | ||
from brownie import accounts | ||
from brownie import (accounts, web3) | ||
|
||
|
||
def test_initial_state(HAY_token): | ||
|
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
Oops, something went wrong.