Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

feat: FIAT currencies #114

Merged
merged 54 commits into from
Oct 20, 2023
Merged
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
3380c5c
Change modal templates namespace
dzbo Oct 12, 2023
3135cb1
Autofocus amount
dzbo Oct 12, 2023
cbc0baa
Cleanup unused util
dzbo Oct 12, 2023
6f9bde4
Modal wip
dzbo Oct 12, 2023
d324954
Allow to select assets
dzbo Oct 12, 2023
c2527c4
Types simplification
dzbo Oct 13, 2023
787dac0
Add icon click in nav
dzbo Oct 16, 2023
8f43f6c
Loaded profile flag
dzbo Oct 16, 2023
024142d
Update web components
dzbo Oct 16, 2023
abcc139
Fix opening send page
dzbo Oct 16, 2023
1938eb8
Adjust asset selection modal
dzbo Oct 16, 2023
aca285b
Adjust asset cards
dzbo Oct 16, 2023
89b188c
Fix input value update
dzbo Oct 16, 2023
d29c194
send LSP7
dzbo Oct 16, 2023
2599dbe
Fix unit display
dzbo Oct 16, 2023
7ea0935
Change logout time, remove default gas prices
dzbo Oct 16, 2023
594ab39
Move storeToRefs to auto imports
dzbo Oct 16, 2023
d831620
Fix decimal places issue
dzbo Oct 17, 2023
c1bc25c
Send LSP8
dzbo Oct 17, 2023
4103992
Truncate long amounts
dzbo Oct 17, 2023
a0e969e
Fix container width
dzbo Oct 17, 2023
00320dd
Add typechain types
dzbo Oct 17, 2023
c5feab2
Change icon redirect
dzbo Oct 17, 2023
4afe0ac
Show balance in details
dzbo Oct 17, 2023
ffa9f22
Fix types
dzbo Oct 17, 2023
a07a9c6
Swap back to number decimals
dzbo Oct 17, 2023
87e9df8
Non divisible token amount validation
dzbo Oct 18, 2023
fdad1c0
Switch back to contract based interface check
dzbo Oct 18, 2023
5413915
Upgrade erc725js package
dzbo Oct 18, 2023
9756e02
Block body scroll when modal is open
dzbo Oct 18, 2023
b3ab48a
Add scroll to token modal
dzbo Oct 18, 2023
4800737
Add send buttons from asset details
dzbo Oct 18, 2023
38ed678
Image optimizations
dzbo Oct 18, 2023
b2b8bbe
Types restructure
dzbo Oct 18, 2023
141eb7b
Cleanup
dzbo Oct 18, 2023
4fe38f1
Use decimals
dzbo Oct 18, 2023
361dc4d
Merge branch 'develop' of github.com:lukso-network/wallet.universalpr…
dzbo Oct 18, 2023
55b9c92
Fix checksum profile issue
dzbo Oct 18, 2023
e85fac4
Comment
dzbo Oct 18, 2023
293b218
Make creator clickable
dzbo Oct 18, 2023
d0860c7
Change how tw config is loaded
dzbo Oct 19, 2023
03891ce
WIP
dzbo Oct 19, 2023
84096ce
Change how tw config is loaded
dzbo Oct 19, 2023
1af2ff7
Update snapshots
dzbo Oct 19, 2023
2df1e81
Bump up content width
dzbo Oct 19, 2023
b8240ad
Fix how we match selected asset
dzbo Oct 19, 2023
3bbc85d
Fetch currencies
dzbo Oct 19, 2023
b76431b
Merge branch 'feat/send-lsp7-lsp8-DEV-2723' of github.com:lukso-netwo…
dzbo Oct 19, 2023
02376ed
Unify const names
dzbo Oct 19, 2023
0ab38ba
Fix comment
dzbo Oct 19, 2023
a4322d0
Fix warning
dzbo Oct 19, 2023
561939e
Merge branch 'develop' of github.com:lukso-network/wallet.universalpr…
dzbo Oct 20, 2023
3270e25
Update snapshot
dzbo Oct 20, 2023
d928eb6
Fix issue with getting currencies on initial load
dzbo Oct 20, 2023
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
Prev Previous commit
Next Next commit
Fix container width
  • Loading branch information
dzbo committed Oct 17, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a0e969e88e56a4c7f2a55c82ca5f69d1b00bcf12
2 changes: 1 addition & 1 deletion pages/[profileAddress]/index.vue
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ const showProfileDetails = computed(
<template>
<div class="relative">
<div
class="max-w-[835px] py-20 px-4 mx-auto relative transition-opacity duration-300"
class="max-w-content py-20 px-4 mx-auto relative transition-opacity duration-300"
:class="{
'opacity-0': status.isAssetLoading || status.isProfileLoading,
'opacity-100': !status.isAssetLoading && !status.isProfileLoading,
4 changes: 2 additions & 2 deletions pages/[profileAddress]/lyx-details.vue
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ const handleSendLyx = () => {
'opacity-0': profileStatus.isAssetLoading,
'opacity-100': !profileStatus.isAssetLoading,
}"
class="max-w-[835px] py-20 px-4 mx-auto relative grid grid-cols-[1fr,2fr] gap-12 transition-opacity duration-300"
class="max-w-content py-20 px-4 mx-auto relative grid grid-cols-[1fr,2fr] gap-12 transition-opacity duration-300"
>
<div>
<lukso-card is-full-width size="small">
@@ -56,7 +56,7 @@ const handleSendLyx = () => {
:profile="connectedProfile"
:amount="viewedProfile.balance"
:symbol="currentNetwork.token.symbol"
:decimals="18"
:decimals="ASSET_LYX_DECIMALS"
/>

<lukso-button is-full-width class="mt-4" @click="handleSendLyx">{{
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ watchEffect(() => {
'opacity-0': profileStatus.isAssetLoading,
'opacity-100': !profileStatus.isAssetLoading,
}"
class="max-w-[835px] py-20 px-4 mx-auto relative grid grid-cols-[1fr,2fr] gap-12 transition-opacity duration-300"
class="max-w-content py-20 px-4 mx-auto relative grid grid-cols-[1fr,2fr] gap-12 transition-opacity duration-300"
>
<div>
<lukso-card size="small" is-full-width
7 changes: 6 additions & 1 deletion pages/[profileAddress]/token/[tokenAddress].vue
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ const tokenSupply = computed(() => {
'opacity-0': profileStatus.isAssetLoading,
'opacity-100': !profileStatus.isAssetLoading,
}"
class="max-w-[835px] py-20 px-4 mx-auto relative grid grid-cols-[1fr,2fr] gap-12 transition-opacity duration-300"
class="max-w-content py-20 px-4 mx-auto relative grid grid-cols-[1fr,2fr] gap-12 transition-opacity duration-300"
>
<div>
<lukso-card is-full-width size="small">
@@ -69,6 +69,11 @@ const tokenSupply = computed(() => {
<div>
<div class="heading-apax-24-medium pb-8">{{ token?.name }}</div>
<AssetAddress v-if="token?.address" :address="token.address" />
<AssetSupply
v-if="token?.amount"
:supply="token.amount"
:symbol="token?.symbol || ''"
/>
<AssetSupply :supply="tokenSupply" :symbol="token?.symbol || ''" />
<AssetLinks
v-if="token?.links && token.links.length > 0"