@undrground/auth
Version:
Web3 Lukso authentication for NextJS. Built by the undrground team
13 lines (10 loc) • 424 B
TypeScript
import * as React from 'react';
interface ConnectButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
provider: "up" | "eoa";
setState: ({}: {}) => React.Dispatch<{
address: string;
chainId: number;
}>;
}
declare const ConnectButton: React.ForwardRefExoticComponent<ConnectButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { ConnectButton, type ConnectButtonProps };