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

Feat/oeth withdrawal #149

Merged
merged 42 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
3c28e0f
feat adapt oeth redeem routes, request screen, update vault abi
toniocodo Jul 9, 2024
ae0ea9f
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Jul 9, 2024
f150a61
feat: split sign update, use callback before reset
toniocodo Jul 9, 2024
a4618cb
feat: add withdrawal request modal
toniocodo Jul 9, 2024
4e4fdce
feat: add claim view, plug to squid 999, update schema WIP🚧
toniocodo Jul 10, 2024
030781a
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Jul 10, 2024
0ab9fa2
feat: add gas loading state
toniocodo Jul 10, 2024
84944bf
fix: route selection update
toniocodo Jul 10, 2024
d787b02
style: fix spacing
toniocodo Jul 10, 2024
024f34b
feat: add waiting in modal, add color to meta
toniocodo Jul 11, 2024
288cc83
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Jul 11, 2024
0d29727
feat: add 30 min delay for claiming withdrawal requests
toniocodo Jul 11, 2024
0314395
style: update fontweight and variant
toniocodo Jul 11, 2024
65d48cb
style: increase action link spacing
toniocodo Jul 11, 2024
0525783
style: update label text color
toniocodo Jul 11, 2024
4bce5ef
feat: add split gas price
toniocodo Jul 11, 2024
f84b1d3
feat: add tx hash for redeem requests
toniocodo Jul 11, 2024
3fe45ab
chore: use withdrawal vnet
toniocodo Jul 11, 2024
0b86e5c
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Jul 23, 2024
062caa4
chore: update rpc, locale, gql
toniocodo Jul 23, 2024
15ad061
feat: update withdraw delay
toniocodo Jul 23, 2024
6892951
feat: refresh claims after wait, locales
toniocodo Jul 24, 2024
73c91bb
feat: time based delay check, switch width fix
toniocodo Jul 25, 2024
059fee6
fix: remove logging
toniocodo Jul 25, 2024
1a4affa
fix: slider switch width
toniocodo Jul 25, 2024
c9f9f67
feat: add refresher hook for long lived processes
toniocodo Jul 25, 2024
7774e1e
feat: use refresher for oeth redeems
toniocodo Jul 25, 2024
7707a2e
feat: add onSettled callback
toniocodo Jul 26, 2024
42dc1df
chore: linting, locales, gql
toniocodo Jul 26, 2024
5e6c41e
feat: update withdrawal layout and misc info
toniocodo Jul 29, 2024
40918fc
feat: refresh claims on madal close
toniocodo Jul 29, 2024
3ac2f06
feat: small color updates
toniocodo Jul 29, 2024
5c5f83b
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Jul 30, 2024
52034fb
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Aug 1, 2024
cfafdf9
feat: add ARM route, missing mainnet address WIP 🚧
toniocodo Aug 1, 2024
085c19b
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Aug 2, 2024
f506249
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Aug 2, 2024
68a5678
feat: remove tenderly test urls, use prod squid url
toniocodo Aug 2, 2024
df579a2
Merge branch 'next' into feat/oeth-withdrawal
toniocodo Aug 2, 2024
a72da9c
feat: oeth withdrawal
apexearth Aug 12, 2024
c1a5bb6
feat: oeth withdrawal
apexearth Aug 12, 2024
2a69f00
feat: oeth withdrawal
apexearth Aug 12, 2024
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
5 changes: 5 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# TODO remove after tenderly testing
# graphql Subsquid endpoint
VITE_SUBSQUID_URL="https://origin.squids.live/origin-squid/graphql"

# graphql Snapshot endpoint
VITE_SNAPSHOT_URL="https://hub.snapshot.org/graphql"

# Alchemy rpc url
VITE_ALCHEMY_RPC="https://eth-mainnet.g.alchemy.com/v2/"

# Alchemy arbitrum rpc url
VITE_ALCHEMY_ARBITRUM_RPC="https://arb-mainnet.g.alchemy.com/v2/"

# Nx 18 enables using plugins to infer targets by default
# This is disabled for existing workspaces to maintain compatibility
# For more info, see: https://nx.dev/concepts/inferred-tasks
Expand Down
3 changes: 2 additions & 1 deletion apps/defi/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Set this to any custom RPC to override public endpoint
# Set these to any custom RPC to override public endpoint
VITE_CUSTOM_RPC=
VITE_CUSTOM_ARBITRUM_RPC=

# Wallet Connect v2 project id
VITE_WALLET_CONNECT_PROJECT_ID=
Expand Down
Loading