Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
a237ce4
First iteration
zerts Aug 15, 2025
aa8afe8
Upate asset history general view
zerts Aug 18, 2025
84ba81a
Add detailed view
zerts Aug 18, 2025
cf547bf
update action creators and refactor simulation view
zerts Aug 19, 2025
fa7c42d
add interpretation support
zerts Aug 19, 2025
d198c52
merge local and backend actions
zerts Aug 19, 2025
ca4eb4c
fix custom approves
zerts Aug 20, 2025
54f47c5
add update button
zerts Aug 20, 2025
6049144
add disable for refresh button
zerts Aug 20, 2025
3be3920
fix loading jumos
zerts Aug 20, 2025
13adae1
Fix style
zerts Aug 20, 2025
97c5940
fix address line
zerts Aug 20, 2025
a953216
remove refetch on focus
zerts Aug 20, 2025
ec06bc4
update refetch logic
zerts Aug 20, 2025
f0a79b6
rename back
zerts Aug 21, 2025
a919ef4
rename back 2
zerts Aug 21, 2025
3b0a53b
remove files
zerts Aug 21, 2025
600c992
rename 3
zerts Aug 21, 2025
fb9fb47
updates and refactors
zerts Aug 21, 2025
bc1870c
renames
zerts Aug 21, 2025
3b6d3dd
fix tests
zerts Aug 21, 2025
fe65a3f
update refetch policy
zerts Aug 21, 2025
616ca1e
fix analytics
zerts Aug 21, 2025
1907259
fixes
zerts Aug 21, 2025
af4e7b9
remove files
zerts Aug 21, 2025
3298c83
remove
zerts Aug 21, 2025
499cece
fix
zerts Aug 21, 2025
3daa9e8
update recipient line
zerts Aug 21, 2025
7e1d933
fix detailedf view
zerts Aug 21, 2025
9132fb5
update
zerts Aug 21, 2025
33ddd62
refactor
zerts Aug 21, 2025
e774584
fix
zerts Aug 21, 2025
ccc8b22
rename
zerts Aug 21, 2025
c7cebcb
fix
zerts Aug 21, 2025
f29e36c
fix
zerts Aug 21, 2025
819ef36
rutn on backend env for qa build
zerts Aug 21, 2025
03e5714
add title
zerts Aug 21, 2025
28070a7
fix approve and simulation convert
zerts Aug 21, 2025
a23fdec
fix detailed view
zerts Aug 21, 2025
ed5fa8f
Fix nullable acts
zerts Aug 21, 2025
c460b05
Support updated interpretation endpoint
zerts Sep 11, 2025
2ff8c6a
Fix approval form
zerts Sep 11, 2025
45bb834
fix apply custom approval logic
zerts Sep 11, 2025
809f447
Fix typed data advanced view
zerts Sep 30, 2025
d1d33e4
fixes
zerts Sep 30, 2025
3d3845f
remove workaround
zerts Oct 2, 2025
e095bfa
fixes for review comments
zerts Oct 3, 2025
0b8ed95
Fix Action NFT display
zerts Oct 18, 2025
3cfb6d8
add backend env back
zerts Oct 21, 2025
17b1761
revert backend_env
zerts Oct 22, 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 .github/workflows/pr_push_qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
DEFI_SDK_TESTNET_API_URL: ${{ github.event.inputs.DEFI_SDK_TESTNET_API_URL || 'wss://api-testnet.zerion.io/' }}
ZERION_API_URL: ${{ github.event.inputs.ZERION_API_URL || 'https://zpi.zerion.io/' }}
ZERION_TESTNET_API_URL: ${{ github.event.inputs.ZERION_TESTNET_API_URL || 'https://zpi-testnet.zerion.io/' }}
BACKEND_ENV: ${{ github.event.inputs.BACKEND_ENV || '' }}
BACKEND_ENV: ${{ github.event.inputs.BACKEND_ENV || 'actions' }}
PROXY_URL: ${{ github.event.inputs.PROXY_URL || 'https://proxy.zerion.io/' }}
DEFI_SDK_TRANSACTIONS_API_URL: ${{ github.event.inputs.DEFI_SDK_TRANSACTIONS_API_URL || 'https://transactions.zerion.io' }}
DEFI_SDK_API_TOKEN: Zerion.0JOY6zZTTw6yl5Cvz9sdmXc7d5AhzVMG
Expand Down
4 changes: 2 additions & 2 deletions src/modules/ethereum/message-signing/prepareTypedData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export function isPermit({ message }: TypedData) {
export function toTypedData(data: string | Partial<TypedData>): TypedData {
if (typeof data === 'string') {
try {
const typedData = JSON.parse(data);
return typedData as TypedData;
const typedData = JSON.parse(data) as TypedData;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The next line does the same casting. Is this necessary?

return typedData;
} catch (e) {
throw new Error('Failed to parse typedData input');
}
Expand Down
Loading
Loading