- Template dApp
-
- The sdk-dapp starter project for any dApp{' '}
+ Template dApp
+
+ The{' '}
+
+ sdk-dapp
+ {' '}
+ starter project for any dApp{' '}
- built on the MultiversX blockchain.
-
+ built on the{' '}
+
+ MultiversX
+ {' '}
+ blockchain.
+
diff --git a/src/pages/Home/Transaction/Transaction.tsx b/src/pages/Home/Transaction/Transaction.tsx
index fa946e28..416dee0e 100644
--- a/src/pages/Home/Transaction/Transaction.tsx
+++ b/src/pages/Home/Transaction/Transaction.tsx
@@ -1,6 +1,7 @@
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { TRANSACTIONS_ENDPOINT } from '@multiversx/sdk-dapp/apiCalls/endpoints';
+import { Label } from 'components/Label';
import { ExplorerLink } from 'components/sdkDappComponents';
import { useGetNetworkConfig } from 'hooks';
import { getTransactionUrl, useTransactionOutcome } from './helpers';
@@ -16,17 +17,25 @@ export const Transaction = () => {
Send transaction
- {txData.status &&
Transaction status: {txData.status}
}
- {txData.address &&
Sender: {txData.address}
}
+ {txData.status && (
+
+ {txData.status}
+
+ )}
+ {txData.address && (
+
+ {txData.address}
+
+ )}
{txData.txHash && (
- Hash:{' '}
+
{
const { pathname } = useLocation();
return (
-
-
+
+
+
-
Page not found
-
{pathname}
+
+
Page not found
+ {pathname}
+
+
);
};
diff --git a/src/pages/Unlock/Unlock.tsx b/src/pages/Unlock/Unlock.tsx
index 7bede402..409e61ea 100644
--- a/src/pages/Unlock/Unlock.tsx
+++ b/src/pages/Unlock/Unlock.tsx
@@ -36,11 +36,18 @@ export const Unlock = () => {
className='flex flex-col p-6 items-center justify-center gap-4 rounded-xl bg-[#f6f8fa]'
data-testid='unlockPage'
>
-
Login
+
+
Login
-
Pick a login method
+
Choose a login method
+
+
+
{
data-testid='webWalletLoginBtn'
{...commonProps}
/>
-
-
diff --git a/src/types/index.ts b/src/types/index.ts
index b5e4bb2b..f237351a 100644
--- a/src/types/index.ts
+++ b/src/types/index.ts
@@ -1 +1,2 @@
export * from './sdkDappTypes';
+export * from './profile.types';
diff --git a/src/types/profile.types.ts b/src/types/profile.types.ts
new file mode 100644
index 00000000..be303819
--- /dev/null
+++ b/src/types/profile.types.ts
@@ -0,0 +1,7 @@
+export type ProfileType = {
+ address: string;
+ username: string;
+ balance: string;
+ nonce: number;
+ shard: number;
+};