@matchain/matchid-sdk-react 0.1.42-alpha.4 → 0.1.42-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/icon/index.d.mts +133 -0
- package/dist/assets/icon/index.d.ts +133 -0
- package/dist/components/index.d.mts +5 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/config/chains/index.d.mts +2 -0
- package/dist/config/chains/index.d.ts +2 -0
- package/dist/hooks/api/index.d.mts +5 -0
- package/dist/hooks/api/index.d.ts +5 -0
- package/dist/hooks/index.d.mts +7 -0
- package/dist/hooks/index.d.ts +7 -0
- package/dist/index--yBVwkf9.d.ts +98 -0
- package/dist/index-BxS06a5O.d.ts +50 -0
- package/dist/index-CGpyQlbI.d.mts +98 -0
- package/dist/index-Ca9nh_8s.d.ts +65 -0
- package/dist/index-DFZpfAfc.d.mts +65 -0
- package/dist/index-DKMrpRJC.d.ts +137 -0
- package/dist/index-DXRGMAbv.d.mts +83 -0
- package/dist/index-DXRGMAbv.d.ts +83 -0
- package/dist/index-q5XDobUF.d.mts +50 -0
- package/dist/index-sOVSnYF4.d.mts +137 -0
- package/dist/index.d.mts +37 -0
- package/dist/index.d.ts +37 -0
- package/dist/mpc-CTbBWHld.d.mts +20 -0
- package/dist/mpc-CTbBWHld.d.ts +20 -0
- package/dist/types/index.d.mts +3 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types-CVwZEgQ0.d.mts +244 -0
- package/dist/types-CVwZEgQ0.d.ts +244 -0
- package/package.json +1 -1
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React, { CSSProperties } from 'react';
|
|
3
|
+
import { s as IconProps$1 } from '../../types-CVwZEgQ0.mjs';
|
|
4
|
+
|
|
5
|
+
declare function BackIcon({ color, size, className, style }: {
|
|
6
|
+
color?: string;
|
|
7
|
+
size?: number;
|
|
8
|
+
style?: CSSProperties;
|
|
9
|
+
className?: string;
|
|
10
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare function CloseIcon({ color, size, style }: {
|
|
13
|
+
color?: string;
|
|
14
|
+
size?: number;
|
|
15
|
+
style?: CSSProperties;
|
|
16
|
+
}): react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare function XIcon({ size }: {
|
|
19
|
+
size?: number;
|
|
20
|
+
}): react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare function GoogleIcon({ size }: {
|
|
23
|
+
size?: number;
|
|
24
|
+
}): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare function WalletIcon({ size, }: {
|
|
27
|
+
size?: number;
|
|
28
|
+
}): react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare function TelegramIcon({ size, }: {
|
|
31
|
+
size?: number;
|
|
32
|
+
}): react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare function EmailIcon({ size, }: {
|
|
35
|
+
size?: number;
|
|
36
|
+
}): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare function ArrowRightIcon({ color, size, className, style }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare function CloseRoundIcon({ size, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
interface LoadingIconProps {
|
|
43
|
+
size?: number;
|
|
44
|
+
className?: string;
|
|
45
|
+
color?: string;
|
|
46
|
+
}
|
|
47
|
+
declare const LoadingIcon: React.FC<LoadingIconProps>;
|
|
48
|
+
|
|
49
|
+
declare function EmailLineIcon({ size, color, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
50
|
+
|
|
51
|
+
declare const UnLoginIcon: React.FC<IconProps$1>;
|
|
52
|
+
|
|
53
|
+
declare const LoginIcon: React.FC<IconProps$1>;
|
|
54
|
+
|
|
55
|
+
declare function CheckRoundIcon({ size, color, ...props }: Omit<IconProps$1, 'width' | 'height'>): react_jsx_runtime.JSX.Element;
|
|
56
|
+
|
|
57
|
+
declare function PasswordRoundIcon(): react_jsx_runtime.JSX.Element;
|
|
58
|
+
|
|
59
|
+
type IconProps = {
|
|
60
|
+
color?: string,
|
|
61
|
+
height?: string|number,
|
|
62
|
+
width?: string|number,
|
|
63
|
+
className?: string
|
|
64
|
+
size?: number
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
type IconSizeColorProps = Omit<IconProps, 'height' |'width'>
|
|
68
|
+
|
|
69
|
+
type IconSizeProps = Omit<IconProps, 'color'|'height'|'width'>
|
|
70
|
+
|
|
71
|
+
declare function CloseEyeIcon({ size, color }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
72
|
+
|
|
73
|
+
declare function OpenEyeIcon({ size, color }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
74
|
+
|
|
75
|
+
declare function DeleteRoundIcon({ height, width, color, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
76
|
+
|
|
77
|
+
declare function FacebookIcon({ size }: {
|
|
78
|
+
size?: number | string;
|
|
79
|
+
}): react_jsx_runtime.JSX.Element;
|
|
80
|
+
|
|
81
|
+
declare function ArrowLeftIcon({ color, width, height, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
82
|
+
|
|
83
|
+
declare function GithubIcon({ size }: {
|
|
84
|
+
size?: number | string;
|
|
85
|
+
}): react_jsx_runtime.JSX.Element;
|
|
86
|
+
|
|
87
|
+
declare function DiscordIcon({ size }: {
|
|
88
|
+
size?: number | string;
|
|
89
|
+
}): react_jsx_runtime.JSX.Element;
|
|
90
|
+
|
|
91
|
+
declare function CheckIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
92
|
+
|
|
93
|
+
declare function CopyIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
94
|
+
|
|
95
|
+
declare function LinkedinIcon({ size, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
96
|
+
|
|
97
|
+
declare function YoutubeIcon({ size, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
98
|
+
|
|
99
|
+
declare function BTCDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
101
|
+
declare function BTCLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
102
|
+
|
|
103
|
+
declare function EVMDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
104
|
+
|
|
105
|
+
declare function EVMLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
106
|
+
|
|
107
|
+
declare function SOLDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
108
|
+
|
|
109
|
+
declare function SOLLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
|
|
111
|
+
declare function TRXDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
112
|
+
|
|
113
|
+
declare function TRXLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
114
|
+
|
|
115
|
+
declare function ArrowDownIcon({ width, height, color, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
declare function LeatherIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
118
|
+
|
|
119
|
+
declare function UnisatIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
|
|
121
|
+
declare function XverseIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
122
|
+
|
|
123
|
+
declare function TronLinkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
124
|
+
|
|
125
|
+
declare function OKXIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
126
|
+
|
|
127
|
+
declare function BitgetIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
128
|
+
|
|
129
|
+
declare function TonLightIcon$1({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
130
|
+
|
|
131
|
+
declare function TonLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
132
|
+
|
|
133
|
+
export { ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, BTCDarkIcon, BTCLightIcon, BackIcon, BitgetIcon, CheckIcon, CheckRoundIcon, CloseEyeIcon, CloseIcon, CloseRoundIcon, CopyIcon, DeleteRoundIcon, DiscordIcon, EVMDarkIcon, EVMLightIcon, EmailIcon, EmailLineIcon, FacebookIcon, GithubIcon, GoogleIcon, LeatherIcon, LinkedinIcon, LoadingIcon, LoginIcon, OKXIcon, OpenEyeIcon, PasswordRoundIcon, SOLDarkIcon, SOLLightIcon, TRXDarkIcon, TRXLightIcon, TelegramIcon, TonLightIcon$1 as TonDarkIcon, TonLightIcon, TronLinkIcon, UnLoginIcon, UnisatIcon, WalletIcon, XIcon, XverseIcon, YoutubeIcon };
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React, { CSSProperties } from 'react';
|
|
3
|
+
import { s as IconProps$1 } from '../../types-CVwZEgQ0.js';
|
|
4
|
+
|
|
5
|
+
declare function BackIcon({ color, size, className, style }: {
|
|
6
|
+
color?: string;
|
|
7
|
+
size?: number;
|
|
8
|
+
style?: CSSProperties;
|
|
9
|
+
className?: string;
|
|
10
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare function CloseIcon({ color, size, style }: {
|
|
13
|
+
color?: string;
|
|
14
|
+
size?: number;
|
|
15
|
+
style?: CSSProperties;
|
|
16
|
+
}): react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare function XIcon({ size }: {
|
|
19
|
+
size?: number;
|
|
20
|
+
}): react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare function GoogleIcon({ size }: {
|
|
23
|
+
size?: number;
|
|
24
|
+
}): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare function WalletIcon({ size, }: {
|
|
27
|
+
size?: number;
|
|
28
|
+
}): react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare function TelegramIcon({ size, }: {
|
|
31
|
+
size?: number;
|
|
32
|
+
}): react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare function EmailIcon({ size, }: {
|
|
35
|
+
size?: number;
|
|
36
|
+
}): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare function ArrowRightIcon({ color, size, className, style }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare function CloseRoundIcon({ size, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
interface LoadingIconProps {
|
|
43
|
+
size?: number;
|
|
44
|
+
className?: string;
|
|
45
|
+
color?: string;
|
|
46
|
+
}
|
|
47
|
+
declare const LoadingIcon: React.FC<LoadingIconProps>;
|
|
48
|
+
|
|
49
|
+
declare function EmailLineIcon({ size, color, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
50
|
+
|
|
51
|
+
declare const UnLoginIcon: React.FC<IconProps$1>;
|
|
52
|
+
|
|
53
|
+
declare const LoginIcon: React.FC<IconProps$1>;
|
|
54
|
+
|
|
55
|
+
declare function CheckRoundIcon({ size, color, ...props }: Omit<IconProps$1, 'width' | 'height'>): react_jsx_runtime.JSX.Element;
|
|
56
|
+
|
|
57
|
+
declare function PasswordRoundIcon(): react_jsx_runtime.JSX.Element;
|
|
58
|
+
|
|
59
|
+
type IconProps = {
|
|
60
|
+
color?: string,
|
|
61
|
+
height?: string|number,
|
|
62
|
+
width?: string|number,
|
|
63
|
+
className?: string
|
|
64
|
+
size?: number
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
type IconSizeColorProps = Omit<IconProps, 'height' |'width'>
|
|
68
|
+
|
|
69
|
+
type IconSizeProps = Omit<IconProps, 'color'|'height'|'width'>
|
|
70
|
+
|
|
71
|
+
declare function CloseEyeIcon({ size, color }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
72
|
+
|
|
73
|
+
declare function OpenEyeIcon({ size, color }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
74
|
+
|
|
75
|
+
declare function DeleteRoundIcon({ height, width, color, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
76
|
+
|
|
77
|
+
declare function FacebookIcon({ size }: {
|
|
78
|
+
size?: number | string;
|
|
79
|
+
}): react_jsx_runtime.JSX.Element;
|
|
80
|
+
|
|
81
|
+
declare function ArrowLeftIcon({ color, width, height, ...props }: IconProps$1): react_jsx_runtime.JSX.Element;
|
|
82
|
+
|
|
83
|
+
declare function GithubIcon({ size }: {
|
|
84
|
+
size?: number | string;
|
|
85
|
+
}): react_jsx_runtime.JSX.Element;
|
|
86
|
+
|
|
87
|
+
declare function DiscordIcon({ size }: {
|
|
88
|
+
size?: number | string;
|
|
89
|
+
}): react_jsx_runtime.JSX.Element;
|
|
90
|
+
|
|
91
|
+
declare function CheckIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
92
|
+
|
|
93
|
+
declare function CopyIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
94
|
+
|
|
95
|
+
declare function LinkedinIcon({ size, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
96
|
+
|
|
97
|
+
declare function YoutubeIcon({ size, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
98
|
+
|
|
99
|
+
declare function BTCDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
101
|
+
declare function BTCLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
102
|
+
|
|
103
|
+
declare function EVMDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
104
|
+
|
|
105
|
+
declare function EVMLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
106
|
+
|
|
107
|
+
declare function SOLDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
108
|
+
|
|
109
|
+
declare function SOLLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
|
|
111
|
+
declare function TRXDarkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
112
|
+
|
|
113
|
+
declare function TRXLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
114
|
+
|
|
115
|
+
declare function ArrowDownIcon({ width, height, color, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
declare function LeatherIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
118
|
+
|
|
119
|
+
declare function UnisatIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
|
|
121
|
+
declare function XverseIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
122
|
+
|
|
123
|
+
declare function TronLinkIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
124
|
+
|
|
125
|
+
declare function OKXIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
126
|
+
|
|
127
|
+
declare function BitgetIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
128
|
+
|
|
129
|
+
declare function TonLightIcon$1({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
130
|
+
|
|
131
|
+
declare function TonLightIcon({ size, ...props }: IconSizeProps): react_jsx_runtime.JSX.Element;
|
|
132
|
+
|
|
133
|
+
export { ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, BTCDarkIcon, BTCLightIcon, BackIcon, BitgetIcon, CheckIcon, CheckRoundIcon, CloseEyeIcon, CloseIcon, CloseRoundIcon, CopyIcon, DeleteRoundIcon, DiscordIcon, EVMDarkIcon, EVMLightIcon, EmailIcon, EmailLineIcon, FacebookIcon, GithubIcon, GoogleIcon, LeatherIcon, LinkedinIcon, LoadingIcon, LoginIcon, OKXIcon, OpenEyeIcon, PasswordRoundIcon, SOLDarkIcon, SOLLightIcon, TRXDarkIcon, TRXLightIcon, TelegramIcon, TonLightIcon$1 as TonDarkIcon, TonLightIcon, TronLinkIcon, UnLoginIcon, UnisatIcon, WalletIcon, XIcon, XverseIcon, YoutubeIcon };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { g as BTCModal, B as Button, E as EmailModal, F as Field, I as Input, L as LoginBox, b as LoginButton, d as LoginModal, c as LoginPanel, M as Modal, a as ModalWithHeader, O as Overlay, e as PasswordModal, P as Popover, S as SOLModal, f as TONModal, T as TRONModal, U as UsernameModal } from '../index-CGpyQlbI.mjs';
|
|
2
|
+
import 'react/jsx-runtime';
|
|
3
|
+
import '../types-CVwZEgQ0.mjs';
|
|
4
|
+
import 'react';
|
|
5
|
+
import '../mpc-CTbBWHld.mjs';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { g as BTCModal, B as Button, E as EmailModal, F as Field, I as Input, L as LoginBox, b as LoginButton, d as LoginModal, c as LoginPanel, M as Modal, a as ModalWithHeader, O as Overlay, e as PasswordModal, P as Popover, S as SOLModal, f as TONModal, T as TRONModal, U as UsernameModal } from '../index--yBVwkf9.js';
|
|
2
|
+
import 'react/jsx-runtime';
|
|
3
|
+
import '../types-CVwZEgQ0.js';
|
|
4
|
+
import 'react';
|
|
5
|
+
import '../mpc-CTbBWHld.js';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { c as useCopyClipboard, d as useLayout, a as useMatchEvents, u as useUserInfo, b as useWallet } from '../index-sOVSnYF4.mjs';
|
|
2
|
+
import '../types-CVwZEgQ0.mjs';
|
|
3
|
+
import 'react';
|
|
4
|
+
import 'viem';
|
|
5
|
+
import '../mpc-CTbBWHld.mjs';
|
|
6
|
+
import 'viem/types/misc';
|
|
7
|
+
import 'abitype';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { c as useCopyClipboard, d as useLayout, a as useMatchEvents, u as useUserInfo, b as useWallet } from '../index-DKMrpRJC.js';
|
|
2
|
+
import '../types-CVwZEgQ0.js';
|
|
3
|
+
import 'react';
|
|
4
|
+
import 'viem';
|
|
5
|
+
import '../mpc-CTbBWHld.js';
|
|
6
|
+
import 'viem/types/misc';
|
|
7
|
+
import 'abitype';
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { E as EmailModalProps, b as InputProps, B as ButtonProps, M as ModalProps, c as ModalWithHeaderProps, P as PopoverProps, d as LoginBoxProps, O as OtherLoginMethodType, R as RecommendLoginMethodType, e as WalletType, f as PopoverPositionType, g as PopoverTypeType, h as LoginPanelProps, i as LoginModalProps } from './types-CVwZEgQ0.js';
|
|
3
|
+
import { ReactNode, PropsWithChildren } from 'react';
|
|
4
|
+
import { C as ChainType, R as RecoveryType } from './mpc-CTbBWHld.js';
|
|
5
|
+
|
|
6
|
+
declare function EmailModal({ isOpen, width, onClose, onBack, onLogin }: EmailModalProps): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare function Field({ label, children, error, required, className }: {
|
|
9
|
+
label: ReactNode;
|
|
10
|
+
error?: ReactNode;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
className?: string;
|
|
13
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
14
|
+
|
|
15
|
+
declare function Input({ onChange, type, after, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
|
|
17
|
+
declare function Button({ size, disabled, loading, children, onClick, highlight, block, type, rounded, className, style }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
18
|
+
|
|
19
|
+
declare function Modal({ children, isOpen, width, zIndex, className }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
20
|
+
declare function ModalWithHeader({ children, onBack, onClose, title, showBorder, showClose, ...props }: ModalWithHeaderProps): react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare function Popover({ children, content, position, type, className, gap }: PopoverProps): false | "" | 0 | react_jsx_runtime.JSX.Element | null | undefined;
|
|
23
|
+
|
|
24
|
+
declare function LoginBox({ recommendMethods, methods, walletMethods, inModal }: LoginBoxProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare function LoginButton({ loginRender, methods, recommendMethods, onLoginClick, popoverPosition, popoverType, popoverGap, walletMethods, ...props }: Omit<ButtonProps, 'onClick' | 'highlight'> & {
|
|
27
|
+
loginRender?: ReactNode;
|
|
28
|
+
methods?: OtherLoginMethodType[];
|
|
29
|
+
recommendMethods?: RecommendLoginMethodType[];
|
|
30
|
+
walletMethods?: WalletType[];
|
|
31
|
+
onLoginClick?: () => void;
|
|
32
|
+
popoverPosition?: PopoverPositionType;
|
|
33
|
+
popoverType?: PopoverTypeType;
|
|
34
|
+
popoverGap?: number | string;
|
|
35
|
+
}): react_jsx_runtime.JSX.Element;
|
|
36
|
+
|
|
37
|
+
declare function LoginPanel({ header, onClose, ...props }: LoginPanelProps): react_jsx_runtime.JSX.Element;
|
|
38
|
+
|
|
39
|
+
declare function LoginModal({ isOpen, width, ...props }: LoginModalProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
|
|
41
|
+
declare function UsernameModal({ title, isOpen, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
42
|
+
onSuccess?: () => void;
|
|
43
|
+
}): react_jsx_runtime.JSX.Element;
|
|
44
|
+
|
|
45
|
+
declare function PasswordModal({ title, isOpen, onSuccess, chainType, recoveryType, ...props }: ModalWithHeaderProps & {
|
|
46
|
+
onSuccess?: () => void;
|
|
47
|
+
chainType?: `${ChainType}`;
|
|
48
|
+
recoveryType?: `${RecoveryType}`;
|
|
49
|
+
}): react_jsx_runtime.JSX.Element;
|
|
50
|
+
|
|
51
|
+
declare function SOLModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
52
|
+
type?: 'login' | 'bind' | '';
|
|
53
|
+
onSuccess?: () => void;
|
|
54
|
+
}): react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
declare function TRONModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
57
|
+
type?: 'login' | 'bind' | '';
|
|
58
|
+
onSuccess?: () => void;
|
|
59
|
+
}): react_jsx_runtime.JSX.Element;
|
|
60
|
+
|
|
61
|
+
declare function TONModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
62
|
+
type?: 'login' | 'bind' | '';
|
|
63
|
+
onSuccess?: () => void;
|
|
64
|
+
}): react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
declare function BTCModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
67
|
+
type?: 'login' | 'bind' | '';
|
|
68
|
+
onSuccess?: () => void;
|
|
69
|
+
}): react_jsx_runtime.JSX.Element;
|
|
70
|
+
|
|
71
|
+
declare function Overlay({ isOpen, children, zIndex, }: {
|
|
72
|
+
isOpen?: boolean;
|
|
73
|
+
zIndex?: number;
|
|
74
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare const index_BTCModal: typeof BTCModal;
|
|
77
|
+
declare const index_Button: typeof Button;
|
|
78
|
+
declare const index_EmailModal: typeof EmailModal;
|
|
79
|
+
declare const index_Field: typeof Field;
|
|
80
|
+
declare const index_Input: typeof Input;
|
|
81
|
+
declare const index_LoginBox: typeof LoginBox;
|
|
82
|
+
declare const index_LoginButton: typeof LoginButton;
|
|
83
|
+
declare const index_LoginModal: typeof LoginModal;
|
|
84
|
+
declare const index_LoginPanel: typeof LoginPanel;
|
|
85
|
+
declare const index_Modal: typeof Modal;
|
|
86
|
+
declare const index_ModalWithHeader: typeof ModalWithHeader;
|
|
87
|
+
declare const index_Overlay: typeof Overlay;
|
|
88
|
+
declare const index_PasswordModal: typeof PasswordModal;
|
|
89
|
+
declare const index_Popover: typeof Popover;
|
|
90
|
+
declare const index_SOLModal: typeof SOLModal;
|
|
91
|
+
declare const index_TONModal: typeof TONModal;
|
|
92
|
+
declare const index_TRONModal: typeof TRONModal;
|
|
93
|
+
declare const index_UsernameModal: typeof UsernameModal;
|
|
94
|
+
declare namespace index {
|
|
95
|
+
export { index_BTCModal as BTCModal, index_Button as Button, index_EmailModal as EmailModal, index_Field as Field, index_Input as Input, index_LoginBox as LoginBox, index_LoginButton as LoginButton, index_LoginModal as LoginModal, index_LoginPanel as LoginPanel, index_Modal as Modal, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_PasswordModal as PasswordModal, index_Popover as Popover, index_SOLModal as SOLModal, index_TONModal as TONModal, index_TRONModal as TRONModal, index_UsernameModal as UsernameModal };
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export { Button as B, EmailModal as E, Field as F, Input as I, LoginBox as L, Modal as M, Overlay as O, Popover as P, SOLModal as S, TRONModal as T, UsernameModal as U, ModalWithHeader as a, LoginButton as b, LoginPanel as c, LoginModal as d, PasswordModal as e, TONModal as f, BTCModal as g, index as i };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { A as AuthParams, C as ChainType, E as EmbeddedWalletsParams, R as RecoveryType } from './mpc-CTbBWHld.js';
|
|
2
|
+
import { A as AnyObject, m as BindInfoType, n as BindItemType, o as BindWalletParam, B as ButtonProps, C as CEXType, D as DeepPartial, p as DrawerProps, E as EmailModalProps, a as IEnvConfigType, q as IEnvName, r as ILoginWalletReq, I as IMatchEvents, j as ISocialLoginMethod, s as IconProps, b as InputProps, L as LocaleType, d as LoginBoxProps, l as LoginMethodType, i as LoginModalProps, h as LoginPanelProps, t as MessageType, M as ModalProps, c as ModalWithHeaderProps, O as OtherLoginMethodType, k as OverviewInfo, u as PohItemType, v as PohZkpassParams, f as PopoverPositionType, P as PopoverProps, g as PopoverTypeType, R as RecommendLoginMethodType, T as ThemeType, U as UserPopoverProps, W as WalletConfigType, w as WalletPanelProps, x as WalletReceiveMessageType, e as WalletType } from './types-CVwZEgQ0.js';
|
|
3
|
+
|
|
4
|
+
declare const index_AnyObject: typeof AnyObject;
|
|
5
|
+
declare const index_AuthParams: typeof AuthParams;
|
|
6
|
+
declare const index_BindInfoType: typeof BindInfoType;
|
|
7
|
+
declare const index_BindItemType: typeof BindItemType;
|
|
8
|
+
declare const index_BindWalletParam: typeof BindWalletParam;
|
|
9
|
+
declare const index_ButtonProps: typeof ButtonProps;
|
|
10
|
+
declare const index_CEXType: typeof CEXType;
|
|
11
|
+
declare const index_ChainType: typeof ChainType;
|
|
12
|
+
declare const index_DeepPartial: typeof DeepPartial;
|
|
13
|
+
declare const index_DrawerProps: typeof DrawerProps;
|
|
14
|
+
declare const index_EmailModalProps: typeof EmailModalProps;
|
|
15
|
+
declare const index_EmbeddedWalletsParams: typeof EmbeddedWalletsParams;
|
|
16
|
+
declare const index_IEnvConfigType: typeof IEnvConfigType;
|
|
17
|
+
declare const index_IEnvName: typeof IEnvName;
|
|
18
|
+
declare const index_ILoginWalletReq: typeof ILoginWalletReq;
|
|
19
|
+
declare const index_IMatchEvents: typeof IMatchEvents;
|
|
20
|
+
declare const index_ISocialLoginMethod: typeof ISocialLoginMethod;
|
|
21
|
+
declare const index_IconProps: typeof IconProps;
|
|
22
|
+
declare const index_InputProps: typeof InputProps;
|
|
23
|
+
declare const index_LocaleType: typeof LocaleType;
|
|
24
|
+
declare const index_LoginBoxProps: typeof LoginBoxProps;
|
|
25
|
+
declare const index_LoginMethodType: typeof LoginMethodType;
|
|
26
|
+
declare const index_LoginModalProps: typeof LoginModalProps;
|
|
27
|
+
declare const index_LoginPanelProps: typeof LoginPanelProps;
|
|
28
|
+
declare const index_MessageType: typeof MessageType;
|
|
29
|
+
declare const index_ModalProps: typeof ModalProps;
|
|
30
|
+
declare const index_ModalWithHeaderProps: typeof ModalWithHeaderProps;
|
|
31
|
+
declare const index_OtherLoginMethodType: typeof OtherLoginMethodType;
|
|
32
|
+
declare const index_OverviewInfo: typeof OverviewInfo;
|
|
33
|
+
declare const index_PohItemType: typeof PohItemType;
|
|
34
|
+
declare const index_PohZkpassParams: typeof PohZkpassParams;
|
|
35
|
+
declare const index_PopoverPositionType: typeof PopoverPositionType;
|
|
36
|
+
declare const index_PopoverProps: typeof PopoverProps;
|
|
37
|
+
declare const index_PopoverTypeType: typeof PopoverTypeType;
|
|
38
|
+
declare const index_RecommendLoginMethodType: typeof RecommendLoginMethodType;
|
|
39
|
+
declare const index_RecoveryType: typeof RecoveryType;
|
|
40
|
+
declare const index_ThemeType: typeof ThemeType;
|
|
41
|
+
declare const index_UserPopoverProps: typeof UserPopoverProps;
|
|
42
|
+
declare const index_WalletConfigType: typeof WalletConfigType;
|
|
43
|
+
declare const index_WalletPanelProps: typeof WalletPanelProps;
|
|
44
|
+
declare const index_WalletReceiveMessageType: typeof WalletReceiveMessageType;
|
|
45
|
+
declare const index_WalletType: typeof WalletType;
|
|
46
|
+
declare namespace index {
|
|
47
|
+
export { index_AnyObject as AnyObject, index_AuthParams as AuthParams, index_BindInfoType as BindInfoType, index_BindItemType as BindItemType, index_BindWalletParam as BindWalletParam, index_ButtonProps as ButtonProps, index_CEXType as CEXType, index_ChainType as ChainType, index_DeepPartial as DeepPartial, index_DrawerProps as DrawerProps, index_EmailModalProps as EmailModalProps, index_EmbeddedWalletsParams as EmbeddedWalletsParams, index_IEnvConfigType as IEnvConfigType, index_IEnvName as IEnvName, index_ILoginWalletReq as ILoginWalletReq, index_IMatchEvents as IMatchEvents, index_ISocialLoginMethod as ISocialLoginMethod, index_IconProps as IconProps, index_InputProps as InputProps, index_LocaleType as LocaleType, index_LoginBoxProps as LoginBoxProps, index_LoginMethodType as LoginMethodType, index_LoginModalProps as LoginModalProps, index_LoginPanelProps as LoginPanelProps, index_MessageType as MessageType, index_ModalProps as ModalProps, index_ModalWithHeaderProps as ModalWithHeaderProps, index_OtherLoginMethodType as OtherLoginMethodType, index_OverviewInfo as OverviewInfo, index_PohItemType as PohItemType, index_PohZkpassParams as PohZkpassParams, index_PopoverPositionType as PopoverPositionType, index_PopoverProps as PopoverProps, index_PopoverTypeType as PopoverTypeType, index_RecommendLoginMethodType as RecommendLoginMethodType, index_RecoveryType as RecoveryType, index_ThemeType as ThemeType, index_UserPopoverProps as UserPopoverProps, index_WalletConfigType as WalletConfigType, index_WalletPanelProps as WalletPanelProps, index_WalletReceiveMessageType as WalletReceiveMessageType, index_WalletType as WalletType };
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export { index as i };
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { E as EmailModalProps, b as InputProps, B as ButtonProps, M as ModalProps, c as ModalWithHeaderProps, P as PopoverProps, d as LoginBoxProps, O as OtherLoginMethodType, R as RecommendLoginMethodType, e as WalletType, f as PopoverPositionType, g as PopoverTypeType, h as LoginPanelProps, i as LoginModalProps } from './types-CVwZEgQ0.mjs';
|
|
3
|
+
import { ReactNode, PropsWithChildren } from 'react';
|
|
4
|
+
import { C as ChainType, R as RecoveryType } from './mpc-CTbBWHld.mjs';
|
|
5
|
+
|
|
6
|
+
declare function EmailModal({ isOpen, width, onClose, onBack, onLogin }: EmailModalProps): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare function Field({ label, children, error, required, className }: {
|
|
9
|
+
label: ReactNode;
|
|
10
|
+
error?: ReactNode;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
className?: string;
|
|
13
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
14
|
+
|
|
15
|
+
declare function Input({ onChange, type, after, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
|
|
17
|
+
declare function Button({ size, disabled, loading, children, onClick, highlight, block, type, rounded, className, style }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
18
|
+
|
|
19
|
+
declare function Modal({ children, isOpen, width, zIndex, className }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
20
|
+
declare function ModalWithHeader({ children, onBack, onClose, title, showBorder, showClose, ...props }: ModalWithHeaderProps): react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare function Popover({ children, content, position, type, className, gap }: PopoverProps): false | "" | 0 | react_jsx_runtime.JSX.Element | null | undefined;
|
|
23
|
+
|
|
24
|
+
declare function LoginBox({ recommendMethods, methods, walletMethods, inModal }: LoginBoxProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare function LoginButton({ loginRender, methods, recommendMethods, onLoginClick, popoverPosition, popoverType, popoverGap, walletMethods, ...props }: Omit<ButtonProps, 'onClick' | 'highlight'> & {
|
|
27
|
+
loginRender?: ReactNode;
|
|
28
|
+
methods?: OtherLoginMethodType[];
|
|
29
|
+
recommendMethods?: RecommendLoginMethodType[];
|
|
30
|
+
walletMethods?: WalletType[];
|
|
31
|
+
onLoginClick?: () => void;
|
|
32
|
+
popoverPosition?: PopoverPositionType;
|
|
33
|
+
popoverType?: PopoverTypeType;
|
|
34
|
+
popoverGap?: number | string;
|
|
35
|
+
}): react_jsx_runtime.JSX.Element;
|
|
36
|
+
|
|
37
|
+
declare function LoginPanel({ header, onClose, ...props }: LoginPanelProps): react_jsx_runtime.JSX.Element;
|
|
38
|
+
|
|
39
|
+
declare function LoginModal({ isOpen, width, ...props }: LoginModalProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
|
|
41
|
+
declare function UsernameModal({ title, isOpen, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
42
|
+
onSuccess?: () => void;
|
|
43
|
+
}): react_jsx_runtime.JSX.Element;
|
|
44
|
+
|
|
45
|
+
declare function PasswordModal({ title, isOpen, onSuccess, chainType, recoveryType, ...props }: ModalWithHeaderProps & {
|
|
46
|
+
onSuccess?: () => void;
|
|
47
|
+
chainType?: `${ChainType}`;
|
|
48
|
+
recoveryType?: `${RecoveryType}`;
|
|
49
|
+
}): react_jsx_runtime.JSX.Element;
|
|
50
|
+
|
|
51
|
+
declare function SOLModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
52
|
+
type?: 'login' | 'bind' | '';
|
|
53
|
+
onSuccess?: () => void;
|
|
54
|
+
}): react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
declare function TRONModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
57
|
+
type?: 'login' | 'bind' | '';
|
|
58
|
+
onSuccess?: () => void;
|
|
59
|
+
}): react_jsx_runtime.JSX.Element;
|
|
60
|
+
|
|
61
|
+
declare function TONModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
62
|
+
type?: 'login' | 'bind' | '';
|
|
63
|
+
onSuccess?: () => void;
|
|
64
|
+
}): react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
declare function BTCModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
67
|
+
type?: 'login' | 'bind' | '';
|
|
68
|
+
onSuccess?: () => void;
|
|
69
|
+
}): react_jsx_runtime.JSX.Element;
|
|
70
|
+
|
|
71
|
+
declare function Overlay({ isOpen, children, zIndex, }: {
|
|
72
|
+
isOpen?: boolean;
|
|
73
|
+
zIndex?: number;
|
|
74
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare const index_BTCModal: typeof BTCModal;
|
|
77
|
+
declare const index_Button: typeof Button;
|
|
78
|
+
declare const index_EmailModal: typeof EmailModal;
|
|
79
|
+
declare const index_Field: typeof Field;
|
|
80
|
+
declare const index_Input: typeof Input;
|
|
81
|
+
declare const index_LoginBox: typeof LoginBox;
|
|
82
|
+
declare const index_LoginButton: typeof LoginButton;
|
|
83
|
+
declare const index_LoginModal: typeof LoginModal;
|
|
84
|
+
declare const index_LoginPanel: typeof LoginPanel;
|
|
85
|
+
declare const index_Modal: typeof Modal;
|
|
86
|
+
declare const index_ModalWithHeader: typeof ModalWithHeader;
|
|
87
|
+
declare const index_Overlay: typeof Overlay;
|
|
88
|
+
declare const index_PasswordModal: typeof PasswordModal;
|
|
89
|
+
declare const index_Popover: typeof Popover;
|
|
90
|
+
declare const index_SOLModal: typeof SOLModal;
|
|
91
|
+
declare const index_TONModal: typeof TONModal;
|
|
92
|
+
declare const index_TRONModal: typeof TRONModal;
|
|
93
|
+
declare const index_UsernameModal: typeof UsernameModal;
|
|
94
|
+
declare namespace index {
|
|
95
|
+
export { index_BTCModal as BTCModal, index_Button as Button, index_EmailModal as EmailModal, index_Field as Field, index_Input as Input, index_LoginBox as LoginBox, index_LoginButton as LoginButton, index_LoginModal as LoginModal, index_LoginPanel as LoginPanel, index_Modal as Modal, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_PasswordModal as PasswordModal, index_Popover as Popover, index_SOLModal as SOLModal, index_TONModal as TONModal, index_TRONModal as TRONModal, index_UsernameModal as UsernameModal };
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export { Button as B, EmailModal as E, Field as F, Input as I, LoginBox as L, Modal as M, Overlay as O, Popover as P, SOLModal as S, TRONModal as T, UsernameModal as U, ModalWithHeader as a, LoginButton as b, LoginPanel as c, LoginModal as d, PasswordModal as e, TONModal as f, BTCModal as g, index as i };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
+
import { UseQueryOptions } from '@tanstack/react-query/src/types';
|
|
3
|
+
import { v as PohZkpassParams, n as BindItemType, m as BindInfoType, u as PohItemType } from './types-CVwZEgQ0.js';
|
|
4
|
+
|
|
5
|
+
interface MyResponseType<T> {
|
|
6
|
+
code: number;
|
|
7
|
+
data: T;
|
|
8
|
+
message: string;
|
|
9
|
+
success: boolean;
|
|
10
|
+
fail: boolean;
|
|
11
|
+
result: T;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare const bindCexApi: (data: {
|
|
15
|
+
cex: string;
|
|
16
|
+
api_key: string;
|
|
17
|
+
api_secret: string;
|
|
18
|
+
api_passphrase?: string;
|
|
19
|
+
}) => Promise<MyResponseType<any>>;
|
|
20
|
+
declare const unBindApi: ({ type }: {
|
|
21
|
+
type: string;
|
|
22
|
+
}) => Promise<MyResponseType<any>>;
|
|
23
|
+
declare const unBindWalletApi: ({ address }: {
|
|
24
|
+
address: string;
|
|
25
|
+
}) => Promise<MyResponseType<any>>;
|
|
26
|
+
declare const verifyPohApi: ({ taskId, schemaId, publicFields, allocatorAddress, publicFieldsHash, allocatorSignature, uHash, validatorAddress, validatorSignature }: PohZkpassParams) => Promise<MyResponseType<any>>;
|
|
27
|
+
declare const chooseIdentityApi: ({ identity }: {
|
|
28
|
+
identity: string;
|
|
29
|
+
}) => Promise<MyResponseType<any>>;
|
|
30
|
+
declare const mintPassportNftApi: () => Promise<MyResponseType<any>>;
|
|
31
|
+
|
|
32
|
+
declare function useBindList(options?: Partial<Omit<UseQueryOptions<BindItemType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<BindItemType[], Error>;
|
|
33
|
+
declare function useBindInfo(options?: Partial<Omit<UseQueryOptions<BindInfoType>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<BindInfoType, Error>;
|
|
34
|
+
|
|
35
|
+
declare const bind_bindCexApi: typeof bindCexApi;
|
|
36
|
+
declare const bind_unBindApi: typeof unBindApi;
|
|
37
|
+
declare const bind_unBindWalletApi: typeof unBindWalletApi;
|
|
38
|
+
declare const bind_useBindInfo: typeof useBindInfo;
|
|
39
|
+
declare const bind_useBindList: typeof useBindList;
|
|
40
|
+
declare namespace bind {
|
|
41
|
+
export { bind_bindCexApi as bindCexApi, bind_unBindApi as unBindApi, bind_unBindWalletApi as unBindWalletApi, bind_useBindInfo as useBindInfo, bind_useBindList as useBindList };
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
declare function usePohList(options?: Partial<Omit<UseQueryOptions<PohItemType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<PohItemType[], Error>;
|
|
45
|
+
|
|
46
|
+
declare const poh_usePohList: typeof usePohList;
|
|
47
|
+
declare const poh_verifyPohApi: typeof verifyPohApi;
|
|
48
|
+
declare namespace poh {
|
|
49
|
+
export { poh_usePohList as usePohList, poh_verifyPohApi as verifyPohApi };
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
declare const user_chooseIdentityApi: typeof chooseIdentityApi;
|
|
53
|
+
declare const user_mintPassportNftApi: typeof mintPassportNftApi;
|
|
54
|
+
declare namespace user {
|
|
55
|
+
export { user_chooseIdentityApi as chooseIdentityApi, user_mintPassportNftApi as mintPassportNftApi };
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
declare const index_bind: typeof bind;
|
|
59
|
+
declare const index_poh: typeof poh;
|
|
60
|
+
declare const index_user: typeof user;
|
|
61
|
+
declare namespace index {
|
|
62
|
+
export { index_bind as bind, index_poh as poh, index_user as user };
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export { bind as b, index as i, poh as p, user as u };
|