27 lines
662 B
TOML
27 lines
662 B
TOML
[profile.default]
|
|
src = "src"
|
|
out = "out"
|
|
libs = ["lib", "dependencies"]
|
|
solc_version = "0.8.20"
|
|
|
|
optimizer = true
|
|
optimizer_runs = 4294967295
|
|
|
|
remappings = [
|
|
"@openzeppelin-contracts/=dependencies/@openzeppelin-contracts-5.3.0/",
|
|
"forge-std-1.9.2/=dependencies/forge-std-1.9.2/",
|
|
]
|
|
fs_permissions = [{ access = "read", path = "./broadcast"}]
|
|
allow_internal_expect_revert = true
|
|
|
|
[dependencies]
|
|
forge-std = "1.9.7"
|
|
"@openzeppelin-contracts" = "5.3.0"
|
|
|
|
[rpc_endpoints]
|
|
anvil-localnet = "http://127.0.0.1:8545"
|
|
sepolia-testnet = "${SEPOLIA_TEST_RPC_URL}"
|
|
|
|
[etherscan]
|
|
sepolia-testnet = { key = "${SEPOLIA_TEST_API_KEY}", url = "${SEPOLIA_TEST_ENDPOINT}" }
|