Skip to content

Commit

Permalink
new deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
erhant committed Dec 19, 2024
1 parent 1753a64 commit 4e9d3b2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"solidity.packageDefaultDependenciesContractsDirectory": "src",
"solidity.packageDefaultDependenciesDirectory": "lib",
"editor.formatOnSave": true
"editor.formatOnSave": true,
"solidity.formatter": "forge"
}
2 changes: 1 addition & 1 deletion abis/SwanAgent.json
Original file line number Diff line number Diff line change
Expand Up @@ -621,4 +621,4 @@
}
]
}
]
]
8 changes: 4 additions & 4 deletions deployment/84532.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"implAddr": "0x71dEE43753227298727d78225977925012873B45"
},
"Swan": {
"proxyAddr": "0x6e1264f105438e447a580f904ee13a860653c349",
"implAddr": "0x83eadddc6188c68e83c39d4b767c0fe3bcc8d05e"
"proxyAddr": "0x5dc59b0316f90604070d1d4442e742116bb42445",
"implAddr": "0x3d0f291962267ea17a922a5461180b69d9f1fa94"
},
"SwanAgentFactory": {
"addr": "0x0baac4a81d52da48c0987854bc68cf8ba5a63050"
"addr": "0x348102400779c4c8f50ee9ad356c5fd8a9803795"
},
"SwanArtifactFactory": {
"addr": "0x49347ff2c7b5031d79af7ef7106afb9662ff2d12"
"addr": "0x1a69a6c3c930c381b23abe555081437815876974"
}
}
12 changes: 8 additions & 4 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,22 @@ lib = 'lib'
test = 'test'
script = 'script'
out = 'out'
cache_path = 'cache'
extra_output = ['storageLayout']
cache_path = 'cache'

# required by upgradability
# see: https://github.com/OpenZeppelin/openzeppelin-foundry-upgrades
ffi = true
ast = true
build_info = true
optimizer = true
extra_output = ["storageLayout"]

# forces recompilation, required by Upgradable contracts
force = true

# fs permissions for deployment (false by default)
fs_permissions = [
{ access = "read", path = "out" },
{ access = "read-write", path = "deployment" }
{ access = "read-write", path = "deployment" },
]

# fuzzing options
Expand Down

0 comments on commit 4e9d3b2

Please sign in to comment.