Skip to content

Commit a90217d

Browse files
committed
feat: update the proxy contract
1 parent 672543f commit a90217d

File tree

688 files changed

+125755
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

688 files changed

+125755
-0
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Compiler files
2+
cache/
3+
out/
4+
5+
# Ignores development broadcast logs
6+
broadcast/
7+
8+
# Docs
9+
docs/
10+
11+
# Dotenv file
12+
.env

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "lib/forge-std"]
2+
path = lib/forge-std
3+
url = https://github.com/foundry-rs/forge-std
4+
[submodule "lib/openzeppelin-contracts"]
5+
path = lib/openzeppelin-contracts
6+
url = https://github.com/openzeppelin/openzeppelin-contracts

Assistant.png

305 KB
Loading

Logo.png

7.39 KB
Loading

Preview.png

428 KB
Loading

build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
forge script script/Main.s.sol --rpc-url sepolia --broadcast -vvvv

foundry.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[profile.default]
2+
src = "src"
3+
out = "out"
4+
libs = ["lib"]
5+
6+
[rpc_endpoints]
7+
sepolia = 'https://eth-sepolia.g.alchemy.com/v2/demo'
8+
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
9+
10+
[etherscan]
11+
mainnet = { key = "${ETHERSCAN_API_KEY}" }

img/Assistant.png

305 KB
Loading

img/Logo.png

7.39 KB
Loading

img/Preview.png

428 KB
Loading

0 commit comments

Comments
 (0)