0.0.2 • Published 3 years ago

@demox-labs/aleo-wallet-adapter v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@demox-labs/aleo-wallet-adapter

Modular TypeScript wallet adapters and components for Aleo applications.

Install

Install these dependencies:

yarn add @demox-labs/aleo-wallet-adapter && yarn add react

Usage

import { useWallet, WalletNotConnectedError, LeoWalletAdapter } from '@demox-labs/aleo-wallet-adapter';
import React, { FC, useCallback } from 'react';

export const SignMessageForAleo: FC = () => {
    const { publicKey, wallet } = useWallet();

    const onClick = async () => {
        if (!publicKey) throw new WalletNotConnectedError();
        
        const message = "I'm a message!";
        const messageBytes = new TextEncoder().encode(message);

        const signatureBytes = await (wallet?.adapter as LeoWalletAdapter).signMessage(messageBytes);
        const signature = new TextDecoder().decode(signatureBytes);

        console.log(signature);
    };

    return (
        <button onClick={onClick} disabled={!publicKey}>
            Sign a message!
        </button>
    );
};