-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from sablier-labs/iaro/mint-and-burn-limitation
- Loading branch information
Showing
13 changed files
with
222 additions
and
121 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 |
---|---|---|
@@ -1,43 +1,43 @@ | ||
# Full reference https://github.com/foundry-rs/foundry/tree/master/crates/config | ||
|
||
[profile.default] | ||
auto_detect_solc = false | ||
block_timestamp = 1717200000 # June 1, 2024 at 00:00 GMT | ||
bytecode_hash = "none" | ||
evm_version = "shanghai" | ||
fuzz = { runs = 1_000 } | ||
gas_reports = ["SRF20"] | ||
optimizer = true | ||
optimizer_runs = 10_000 | ||
out = "out" | ||
script = "script" | ||
solc = "0.8.26" | ||
src = "src" | ||
test = "test" | ||
auto_detect_solc = false | ||
block_timestamp = 1717200000 # June 1, 2024 at 00:00 GMT | ||
bytecode_hash = "none" | ||
evm_version = "shanghai" | ||
fuzz = { runs = 1_000 } | ||
gas_reports = ["SRF20"] | ||
optimizer = true | ||
optimizer_runs = 10_000 | ||
out = "out" | ||
script = "script" | ||
solc = "0.8.26" | ||
src = "src" | ||
test = "test" | ||
|
||
[profile.ci] | ||
fuzz = { runs = 10_000 } | ||
verbosity = 4 | ||
fuzz = { runs = 10_000 } | ||
verbosity = 4 | ||
|
||
# Speed up compilation and tests during development | ||
[profile.lite] | ||
optimizer = false | ||
optimizer = false | ||
|
||
[doc] | ||
ignore = ["**/*.t.sol"] | ||
out = "docs" | ||
repository = "https://github.com/sablier-labs/stdlib" | ||
ignore = ["**/*.t.sol"] | ||
out = "docs" | ||
repository = "https://github.com/sablier-labs/stdlib" | ||
|
||
[fmt] | ||
bracket_spacing = true | ||
int_types = "long" | ||
line_length = 120 | ||
multiline_func_header = "all" | ||
number_underscore = "thousands" | ||
quote_style = "double" | ||
tab_width = 4 | ||
wrap_comments = true | ||
bracket_spacing = true | ||
int_types = "long" | ||
line_length = 120 | ||
multiline_func_header = "all" | ||
number_underscore = "thousands" | ||
quote_style = "double" | ||
tab_width = 4 | ||
wrap_comments = true | ||
|
||
[rpc_endpoints] | ||
localhost = "http://localhost:8545" | ||
sepolia = "https://sepolia.infura.io/v3/${API_KEY_INFURA}" | ||
localhost = "http://localhost:8545" | ||
sepolia = "https://sepolia.infura.io/v3/${API_KEY_INFURA}" |
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 was deleted.
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
Oops, something went wrong.