0.0.5 • Published 2 years ago

@douganderson444/svelte-solana-name-service v0.0.5

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Solana Name Service - Svelte Component

<script lang="ts">
	import { SNSWrapper } from '@douganderson444/svelte-solana-name-service';

	export let handle = 'DougAnderson444';
	export let pubKey;

</script>

<!-- Pass in handle, get pubKey back  -->
<SNSWrapper {handle} bind:pubKey />

{handle}'s  pubKey is: {pubKey}