Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
Fix sepolia deployment issues (#24)
Browse files Browse the repository at this point in the history
* fix miss file access permission when deployment

* remove ether scan key from foundry.toml
  • Loading branch information
kingster-will authored Jan 24, 2024
1 parent ca16637 commit d0df7d4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
15 changes: 15 additions & 0 deletions deploy-out/deployment-11155111.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"main": {
"AccessController": "0xe48c7E55cd62585993a9048fd208290Bb1235F64",
"DisputeModule": "0xc3fFE6c3E6153E23C2347E6b543B021153588535",
"IPAccountImpl": "0xD581fb87CD232689309e805eAcc2225c4F0ED5a9",
"IPAccountRegistry": "0xFa35Ea2dbBf484a81a61E5B16fc114bFaD79E12a",
"IPMetadataResolver": "0x048c91B47230fcAa6a52B7E5BDCf5Ba66305F6aA",
"IPRecordRegistry": "0x25A9b23821D46dc8ad2996718c388A691D51af8D",
"LicenseRegistry": "0x5Cc1D16ce1Ae60E612faA4B2e1107Da1614844fB",
"ModuleRegistry": "0xc8CdAe1cB705440eE35F153934E1638b0DE6b7Eb",
"RegistrationModule": "0xd958E076F61437858Ed29B9620f4Ac7D6CD7b112",
"RoyaltyModule": "0x7E27e1D14827B69c5Bc004FF4F7D5D6a4A25442B",
"TaggingModule": "0x7a78377c90f1db070bbcE187e7998634ad410468"
}
}
4 changes: 3 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ optimizer = true
optimizer_runs = 20000
test = 'test'
solc = '0.8.23'
fs_permissions = [{ access = 'read-write', path = './deployments' }]
fs_permissions = [{ access = 'read-write', path = './deploy-out' }]

[rpc_endpoints]
# Comment out for local development (testing requires 0xSplit forks — will add Mock soon)
# pin fork by using --fork-block-number 19042069 to reduce wait time
mainnet = "https://rpc.ankr.com/eth"
sepolia = "${SEPOLIA_RPC_URL}"


# See more config options https://github.com/foundry-rs/foundry/tree/master/config

0 comments on commit d0df7d4

Please sign in to comment.