@particle-network/auth-core-modal
Version:
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
14 lines (13 loc) • 395 B
TypeScript
import { AuthType } from '@particle-network/auth-core';
import React from 'react';
export declare const getAccountList: (params: any) => {
type: AuthType;
icon: string;
name: any;
value: any;
id: any;
isOriginal: boolean;
}[];
export declare const encryptValue: (value: string) => string;
declare const LoginAccount: () => React.JSX.Element;
export default LoginAccount;