useSolanaSigner

1const useSolanaSigner: (opts?) => null | SolanaSigner;

Defined in: account-kit/react/dist/types/hooks/useSolanaSigner.d.ts:26

This hook is used to create a SolanaSigner instance. It is used to sign transactions and messages for the Solana blockchain.

Parameters

ParameterTypeDescription

opts?

{ signerSet?: SignerSet; }

The options for the useSolanaSigner hook.

opts.signerSet?

SignerSet

The signer set to use.

Returns

null | SolanaSigner

A SolanaSigner instance.