Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add berachain swap scaffolding #1

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/openzeppelin-foundry-upgrades"]
path = lib/openzeppelin-foundry-upgrades
url = https://github.com/OpenZeppelin/openzeppelin-foundry-upgrades
[submodule "lib/solidity-stringutils"]
path = lib/solidity-stringutils
url = https://github.com/Arachnid/solidity-stringutils
[submodule "lib/openzeppelin-contracts-upgradeable"]
path = lib/openzeppelin-contracts-upgradeable
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
26,889 changes: 313 additions & 26,576 deletions app/src/generated/graphql-env.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/src/lib/components/navigation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Navigation from "./navigation.svelte"
const routes = {
transfer: { draft: false, path: "/transfer" },
// WIP:
// swap: { draft: false, path: "/swap" },
swap: { draft: false, path: "/swap" },
faucet: { draft: false, path: "/faucet" },
explorer: { draft: false, path: "/explorer" },
transfers: { draft: true, path: "/transfers" }
Expand Down
Loading