Skip to content

Commit

Permalink
chore: init repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanycw committed Jun 26, 2023
1 parent a17df64 commit 89b98fe
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
MNEMONIC=<your-mnemonic>
PRIVATE_KEY=<your-private-key>
ALCHEMEY_KEY=<your-alchemy-key>
ETHERSCAN_API_KEY=<your-etherscan-api-key>
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Harvest Non-fungible Position Vault
16 changes: 13 additions & 3 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
solc_version = '0.8.17'
optimizer = false
fs_permissions = [{ access = "read-write", path = "./"}]

[profile.optimized]
optimizer = true
optimizer_runs = 10000
fs_permissions = [{ access = "read-write", path = "./"}]

[fmt]
line_length=130
tab_width=4
func_attrs_with_params_multiline=true

# See more config options https://github.com/foundry-rs/foundry/tree/master/config
5 changes: 5 additions & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ds-test/=lib/forge-std/lib/ds-test/src/
erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/
forge-std/=lib/forge-std/src/
openzeppelin-contracts/=lib/openzeppelin-contracts/
openzeppelin/=lib/openzeppelin-contracts/contracts/

0 comments on commit 89b98fe

Please sign in to comment.