@verified-network/verified-custody 0.3.4 → 0.3.6
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/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -25,6 +25,7 @@ interface VerifiedCustodyProps {
|
|
|
25
25
|
title?: string;
|
|
26
26
|
chainId?: number;
|
|
27
27
|
txData?: VerifiedWalletTx;
|
|
28
|
+
txToSign?: any;
|
|
28
29
|
reqVaultData?: VerifiedWalletVault;
|
|
29
30
|
delayPageElement?: React.JSX.Element;
|
|
30
31
|
delayPageStyle?: React.CSSProperties;
|
|
@@ -43,6 +44,11 @@ interface VerifiedCustodyProps {
|
|
|
43
44
|
setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;
|
|
44
45
|
[key: string]: any;
|
|
45
46
|
}>;
|
|
47
|
+
signTxElement?: React.ComponentType<{
|
|
48
|
+
setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;
|
|
49
|
+
txToSign: any;
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
}>;
|
|
46
52
|
}
|
|
47
53
|
interface VerifiedCustodyHelpers {
|
|
48
54
|
sendCoSignerInvitation: (channel: "sms" | "email", cosigerId: string, cretorId: string, hashedCretorPin: string) => Promise<boolean>;
|
|
@@ -91,6 +97,7 @@ declare const EnterPinPage: (props: {
|
|
|
91
97
|
hashedVaultId: string;
|
|
92
98
|
encrptedPk: string;
|
|
93
99
|
vaultAddress: string;
|
|
100
|
+
regAddress?: string;
|
|
94
101
|
vaultChannel: "sms" | "email";
|
|
95
102
|
actionText?: string;
|
|
96
103
|
title?: string;
|
|
@@ -100,6 +107,8 @@ declare const EnterPinPage: (props: {
|
|
|
100
107
|
action?: string;
|
|
101
108
|
reqVaultData?: any;
|
|
102
109
|
reqTxData?: any;
|
|
110
|
+
signTxElement?: any;
|
|
111
|
+
txToSign?: any;
|
|
103
112
|
setIsLoading: (isLoading: boolean) => void;
|
|
104
113
|
setShowDashboard?: (showDashboard: boolean) => void;
|
|
105
114
|
setShowCompleteVault?: (showDashboard: boolean) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ interface VerifiedCustodyProps {
|
|
|
25
25
|
title?: string;
|
|
26
26
|
chainId?: number;
|
|
27
27
|
txData?: VerifiedWalletTx;
|
|
28
|
+
txToSign?: any;
|
|
28
29
|
reqVaultData?: VerifiedWalletVault;
|
|
29
30
|
delayPageElement?: React.JSX.Element;
|
|
30
31
|
delayPageStyle?: React.CSSProperties;
|
|
@@ -43,6 +44,11 @@ interface VerifiedCustodyProps {
|
|
|
43
44
|
setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;
|
|
44
45
|
[key: string]: any;
|
|
45
46
|
}>;
|
|
47
|
+
signTxElement?: React.ComponentType<{
|
|
48
|
+
setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;
|
|
49
|
+
txToSign: any;
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
}>;
|
|
46
52
|
}
|
|
47
53
|
interface VerifiedCustodyHelpers {
|
|
48
54
|
sendCoSignerInvitation: (channel: "sms" | "email", cosigerId: string, cretorId: string, hashedCretorPin: string) => Promise<boolean>;
|
|
@@ -91,6 +97,7 @@ declare const EnterPinPage: (props: {
|
|
|
91
97
|
hashedVaultId: string;
|
|
92
98
|
encrptedPk: string;
|
|
93
99
|
vaultAddress: string;
|
|
100
|
+
regAddress?: string;
|
|
94
101
|
vaultChannel: "sms" | "email";
|
|
95
102
|
actionText?: string;
|
|
96
103
|
title?: string;
|
|
@@ -100,6 +107,8 @@ declare const EnterPinPage: (props: {
|
|
|
100
107
|
action?: string;
|
|
101
108
|
reqVaultData?: any;
|
|
102
109
|
reqTxData?: any;
|
|
110
|
+
signTxElement?: any;
|
|
111
|
+
txToSign?: any;
|
|
103
112
|
setIsLoading: (isLoading: boolean) => void;
|
|
104
113
|
setShowDashboard?: (showDashboard: boolean) => void;
|
|
105
114
|
setShowCompleteVault?: (showDashboard: boolean) => void;
|