Skip to content

Feature/foundry #3

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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

.idea
.idea

# Compiler files
cache/
out/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
4 changes: 2 additions & 2 deletions app/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const VAULT_ADDRESS = "0xF1D51901302EaF6027BeA4a7D666a1BE337ca6bb" as Add
export const CLEARING_HOUSE_ADDRESS = "0x2000d0a1c77fC54EDA12C3ae564d760F7ac7ebf2" as Address
export const ORDER_GATEWAY_V2_ADDRESS = "0xCb134B6101494b46506578324EbCbaefcAcFCE20" as Address
export const MOCK_REQUESTOR_ADDRESS = "0x7da959782170Ed107ce769e43B4d87bb1F3F6aE5" as Address
export const MOCK_TYPED_REQUESTOR_ADDRESS = "0x47D9ca8b462D1d51414a6B271743B317C98dFe5f" as Address
export const MOCK_TYPED_REQUESTOR_ADDRESS = "0x9fe5dd32684fE8B6E8666De11450B4fB862CDc63" as Address
export const UNIVERSAL_SIG_VALIDATOR_ADDRESS = "0x59799642351a51b263922fc95837Ea55A2CDc7E2" as Address
export const chain = optimismSepolia
export const sessionPrivateKey = process.env.NEXT_PUBLIC_SESSION_PRIVATE_KEY! as Hex
Expand All @@ -20,4 +20,4 @@ export const isUsingSessionKey = true
export const webAuthnMode = WebAuthnMode.Login
export const passkeyName = "passkey"
export const useAmbireSignatureValidator = false
export const serializedSessionKeyAccount = process.env.NEXT_PUBLIC_SERIALIZED_SESSION_KEY_ACCOUNT!
export const serializedSessionKeyAccount = process.env.NEXT_PUBLIC_SERIALIZED_SESSION_KEY_ACCOUNT!
210 changes: 0 additions & 210 deletions contract/EIP712Upgradeable.sol

This file was deleted.

28 changes: 0 additions & 28 deletions contract/IERC5267.sol

This file was deleted.

Loading