minor
This commit is contained in:
parent
fa5764c303
commit
7cd7506e1d
@ -1,6 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { connectWallet } from '$lib/services/wallet/wallet';
|
import { connectWallet } from '$lib/services/wallet/wallet';
|
||||||
|
import WalletConnect from '$lib/WalletConnect.svelte';
|
||||||
|
|
||||||
// export let id;
|
// export let id;
|
||||||
export let store;
|
export let store;
|
||||||
@ -14,9 +15,12 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
PkpWallet
|
PkpWallet
|
||||||
{#if $store.pkpWallet}
|
{#if $store.pkpWallet}
|
||||||
<div class="mb-4 text-lg font-medium">
|
<div class="mb-4 text-lg font-medium">
|
||||||
PKP Wallet: <span class="text-blue-600">{$store.pkpWallet.address}</span>
|
PKP Wallet: <span class="text-blue-600">{$store.pkpWallet.address}</span>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
<WalletConnect />
|
||||||
|
</div>
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Composite from '$lib/core/Composite.svelte';
|
import Composite from '$lib/core/Composite.svelte';
|
||||||
import type { PageData } from './$houdini';
|
// import type { PageData } from './$houdini';
|
||||||
export let data: PageData;
|
// export let data: PageData;
|
||||||
|
|
||||||
$: ({ queryTest } = data);
|
// $: ({ queryTest } = data);
|
||||||
|
|
||||||
let composite = {
|
let composite = {
|
||||||
id: 'test',
|
id: 'test',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user