Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b2ba712
feat[ZUP-88]: add support for ethereum mainnet
RyanHolanda Apr 4, 2025
b98ff0c
chore: add slippage check error message
RyanHolanda Apr 5, 2025
6123b8e
fix: images not loading on web
RyanHolanda Apr 5, 2025
eb0641b
fix: image not updating when changing the url
RyanHolanda Apr 5, 2025
2f6ad59
feat: add tvl info in the pool && min tvl filter
RyanHolanda Apr 10, 2025
6f117c8
chore: bump flutter bootstrap version
RyanHolanda Apr 10, 2025
abdc5da
ci: update install dependencies command
RyanHolanda Apr 10, 2025
686d1e1
ci: remove make commands from CI
RyanHolanda Apr 10, 2025
06fccdd
Merge branch 'main' into staging
RyanHolanda Apr 17, 2025
74a219c
docs: add instructions to add a new network in readme
RyanHolanda Apr 17, 2025
d9da377
feat: add scroll mainnet
RyanHolanda Apr 28, 2025
3f6e195
feat: add network to the deposit page path
RyanHolanda Apr 29, 2025
79261a4
feat: add privacy policy + terms and coditions
RyanHolanda Apr 29, 2025
46c7b33
fix: tests
RyanHolanda Apr 29, 2025
2050e71
Merge branch 'main' into staging
RyanHolanda Apr 30, 2025
e1e73a1
feat: add cookies consent
RyanHolanda Apr 30, 2025
175d4d0
Merge branch 'main' into staging
RyanHolanda May 13, 2025
58bbeac
feat: allow crosschain search
RyanHolanda May 16, 2025
0539501
feat: does not allow search by address in all networks
RyanHolanda May 17, 2025
326b85b
fix: user token amount not updating correctly when changing yields
RyanHolanda May 18, 2025
c933415
feat: add base network
RyanHolanda May 20, 2025
7ba9fa6
Merge branch 'main' into staging
RyanHolanda May 23, 2025
afad225
feat: calculate USD price of input asset
RyanHolanda May 26, 2025
b8a83cd
feat: allow uniswap v4
RyanHolanda Jun 11, 2025
396eae9
Update flutter version on CI
RyanHolanda Jun 24, 2025
1827998
fix: wrong token amount appearing when connecting wallet with tokens …
RyanHolanda Jul 6, 2025
a9f3dfd
chore: remove base support
RyanHolanda Jul 14, 2025
1da6c94
bump version
RyanHolanda Jul 14, 2025
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
2 changes: 1 addition & 1 deletion .fvmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"flutter": "3.29.2"
"flutter": "3.32.2"
}
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.29.2
flutter-version: 3.32.2
- name: Install dependencies
run: flutter pub get && dart run build_runner build --delete-conflicting-outputs && flutter gen-l10n && dart run routefly && dart run web3kit:generate_abis
- name: Run tests
Expand Down
9 changes: 9 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"flutterMode": "release",
"toolArgs": [
"--dart-define=env=local",
],
"args": [
"--web-experimental-hot-reload"
]
},
{
Expand All @@ -21,6 +24,9 @@
"flutterMode": "debug",
"toolArgs": [
"--dart-define=env=local",
],
"args": [
"--web-experimental-hot-reload"
]
},
{
Expand All @@ -31,6 +37,9 @@
"program": "./lib/main.dart",
"toolArgs": [
"--dart-define=env=local",
],
"args": [
"--web-experimental-hot-reload"
]
},
]
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"dart.flutterSdkPath": ".fvm/versions/3.29.2",
"dart.flutterSdkPath": ".fvm/versions/3.32.2",
"dart.lineLength": 120
}
12 changes: 12 additions & 0 deletions assets/icons/text.document.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/logos/unichain.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions lib/abis/uniswap_permit2.abi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
},
{
"internalType": "address",
"name": "",
"type": "address"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint160",
"name": "amount",
"type": "uint160"
},
{
"internalType": "uint48",
"name": "expiration",
"type": "uint48"
},
{
"internalType": "uint48",
"name": "nonce",
"type": "uint48"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint160",
"name": "amount",
"type": "uint160"
},
{
"internalType": "uint48",
"name": "expiration",
"type": "uint48"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
20 changes: 20 additions & 0 deletions lib/abis/uniswap_v4_position_manager.abi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[
{
"type": "function",
"name": "modifyLiquidities",
"inputs": [
{
"name": "unlockData",
"type": "bytes",
"internalType": "bytes"
},
{
"name": "deadline",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "payable"
}
]
Loading
Loading