@account-kit/react-native-signer 4.31.1 → 4.32.0
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/lib/typescript/commonjs/src/client.d.ts +32 -12
- package/lib/typescript/commonjs/src/client.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/signer.d.ts +84 -32
- package/lib/typescript/commonjs/src/signer.d.ts.map +1 -1
- package/lib/typescript/module/src/client.d.ts +32 -12
- package/lib/typescript/module/src/client.d.ts.map +1 -1
- package/lib/typescript/module/src/signer.d.ts +84 -32
- package/lib/typescript/module/src/signer.d.ts.map +1 -1
- package/package.json +4 -5
|
@@ -3,7 +3,7 @@ import "./utils/mmkv-localstorage-polyfill.js";
|
|
|
3
3
|
import { BaseSignerClient, type AlchemySignerClientEvents, type AuthenticatingEventMetadata, type CreateAccountParams, type EmailAuthParams, type GetWebAuthnAttestationResult, type MfaFactor, type OauthConfig, type OauthParams, type OtpParams, type SignupResponse, type User, type SubmitOtpCodeResponse } from "@account-kit/signer";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
export declare const RNSignerClientParamsSchema: z.ZodObject<{
|
|
6
|
-
connection: z.ZodType<{
|
|
6
|
+
connection: z.ZodType<({
|
|
7
7
|
apiKey: string;
|
|
8
8
|
rpcUrl?: undefined;
|
|
9
9
|
jwt?: undefined;
|
|
@@ -19,7 +19,9 @@ export declare const RNSignerClientParamsSchema: z.ZodObject<{
|
|
|
19
19
|
rpcUrl: string;
|
|
20
20
|
jwt: string;
|
|
21
21
|
apiKey?: undefined;
|
|
22
|
-
}
|
|
22
|
+
}) & {
|
|
23
|
+
chainAgnosticUrl?: string | undefined;
|
|
24
|
+
}, z.ZodTypeDef, ({
|
|
23
25
|
apiKey: string;
|
|
24
26
|
rpcUrl?: undefined;
|
|
25
27
|
jwt?: undefined;
|
|
@@ -35,47 +37,65 @@ export declare const RNSignerClientParamsSchema: z.ZodObject<{
|
|
|
35
37
|
rpcUrl: string;
|
|
36
38
|
jwt: string;
|
|
37
39
|
apiKey?: undefined;
|
|
40
|
+
}) & {
|
|
41
|
+
chainAgnosticUrl?: string | undefined;
|
|
38
42
|
}>;
|
|
39
43
|
rootOrgId: z.ZodOptional<z.ZodString>;
|
|
40
44
|
oauthCallbackUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
41
45
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
connection: {
|
|
46
|
+
connection: ({
|
|
43
47
|
apiKey: string;
|
|
44
48
|
rpcUrl?: undefined;
|
|
45
49
|
jwt?: undefined;
|
|
46
|
-
}
|
|
50
|
+
} & {
|
|
51
|
+
chainAgnosticUrl?: string | undefined;
|
|
52
|
+
}) | ({
|
|
47
53
|
jwt: string;
|
|
48
54
|
rpcUrl?: undefined;
|
|
49
55
|
apiKey?: undefined;
|
|
50
|
-
}
|
|
56
|
+
} & {
|
|
57
|
+
chainAgnosticUrl?: string | undefined;
|
|
58
|
+
}) | ({
|
|
51
59
|
rpcUrl: string;
|
|
52
60
|
apiKey?: undefined;
|
|
53
61
|
jwt?: undefined;
|
|
54
|
-
}
|
|
62
|
+
} & {
|
|
63
|
+
chainAgnosticUrl?: string | undefined;
|
|
64
|
+
}) | ({
|
|
55
65
|
rpcUrl: string;
|
|
56
66
|
jwt: string;
|
|
57
67
|
apiKey?: undefined;
|
|
58
|
-
}
|
|
68
|
+
} & {
|
|
69
|
+
chainAgnosticUrl?: string | undefined;
|
|
70
|
+
});
|
|
59
71
|
oauthCallbackUrl: string;
|
|
60
72
|
rootOrgId?: string | undefined;
|
|
61
73
|
}, {
|
|
62
|
-
connection: {
|
|
74
|
+
connection: ({
|
|
63
75
|
apiKey: string;
|
|
64
76
|
rpcUrl?: undefined;
|
|
65
77
|
jwt?: undefined;
|
|
66
|
-
}
|
|
78
|
+
} & {
|
|
79
|
+
chainAgnosticUrl?: string | undefined;
|
|
80
|
+
}) | ({
|
|
67
81
|
jwt: string;
|
|
68
82
|
rpcUrl?: undefined;
|
|
69
83
|
apiKey?: undefined;
|
|
70
|
-
}
|
|
84
|
+
} & {
|
|
85
|
+
chainAgnosticUrl?: string | undefined;
|
|
86
|
+
}) | ({
|
|
71
87
|
rpcUrl: string;
|
|
72
88
|
apiKey?: undefined;
|
|
73
89
|
jwt?: undefined;
|
|
74
|
-
}
|
|
90
|
+
} & {
|
|
91
|
+
chainAgnosticUrl?: string | undefined;
|
|
92
|
+
}) | ({
|
|
75
93
|
rpcUrl: string;
|
|
76
94
|
jwt: string;
|
|
77
95
|
apiKey?: undefined;
|
|
78
|
-
}
|
|
96
|
+
} & {
|
|
97
|
+
chainAgnosticUrl?: string | undefined;
|
|
98
|
+
});
|
|
79
99
|
rootOrgId?: string | undefined;
|
|
80
100
|
oauthCallbackUrl?: string | undefined;
|
|
81
101
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AACpC,OAAO,uCAAuC,CAAC;AAI/C,OAAO,EACL,gBAAgB,EAGhB,KAAK,yBAAyB,EAC9B,KAAK,2BAA2B,EAChC,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,SAAS,EACd,KAAK,WAAW,EAChB,KAAK,WAAW,EAChB,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,IAAI,EACT,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AACpC,OAAO,uCAAuC,CAAC;AAI/C,OAAO,EACL,gBAAgB,EAGhB,KAAK,yBAAyB,EAC9B,KAAK,2BAA2B,EAChC,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,SAAS,EACd,KAAK,WAAW,EAChB,KAAK,WAAW,EAChB,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,IAAI,EACT,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOrC,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAG9E,qBAAa,cAAe,SAAQ,gBAAgB,CAAC,SAAS,CAAC;IAC7D,OAAO,CAAC,OAAO,CAAoB;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,CAAC,wBAAwB,CAI9B;gBAEU,MAAM,EAAE,oBAAoB;IAazB,aAAa,CAC1B,IAAI,EAAE,IAAI,CAAC,SAAS,EAAE,iBAAiB,CAAC,GACvC,OAAO,CAAC,qBAAqB,CAAC;IAmClB,aAAa,CAC1B,MAAM,EAAE,mBAAmB,GAC1B,OAAO,CAAC,cAAc,CAAC;IAoBX,aAAa,CAC1B,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,iBAAiB,CAAC,GAC/C,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,SAAS,EAAE,CAAA;KAAE,CAAC;IAuB1D,sBAAsB,CAAC,MAAM,EAAE;QAC5C,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE,MAAM,CAAC;QACd,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;QACpD,kBAAkB,EAAE,2BAA2B,CAAC,MAAM,CAAC,CAAC;QACxD,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBR,iBAAiB,SAClB,OAAO,CAAC,WAAW,EAAE;QAAE,IAAI,EAAE,UAAU,CAAA;KAAE,CAAC,KAC/C,OAAO,CAAC,IAAI,CAAC,CAuDd;IAEO,cAAc,CACrB,KAAK,EAAE,OAAO,CAAC,WAAW,EAAE;QAAE,IAAI,EAAE,OAAO,CAAA;KAAE,CAAC,GAC7C,OAAO,CAAC,IAAI,CAAC;IAID,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAKjC,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAGhD,qBAAqB,CAAC,KAAK,CAAC,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAIlD,eAAe,IAAI,OAAO,CAAC,MAAM,CAAC;cAIxB,sBAAsB,CACvC,QAAQ,EAAE,yBAAyB,EACnC,YAAY,CAAC,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAA;KAAE,GAClC,OAAO,CAAC,4BAA4B,CAAC;IAIxC,UAAmB,cAAc,QAAa,OAAO,CAAC,WAAW,CAAC,CAKhE;CACH"}
|
|
@@ -3,7 +3,7 @@ import { z } from "zod";
|
|
|
3
3
|
import { RNSignerClient } from "./client.js";
|
|
4
4
|
declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
5
5
|
client: z.ZodUnion<[z.ZodType<RNSignerClient, z.ZodTypeDef, RNSignerClient>, z.ZodObject<{
|
|
6
|
-
connection: z.ZodType<{
|
|
6
|
+
connection: z.ZodType<({
|
|
7
7
|
apiKey: string;
|
|
8
8
|
rpcUrl?: undefined;
|
|
9
9
|
jwt?: undefined;
|
|
@@ -19,7 +19,9 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
19
19
|
rpcUrl: string;
|
|
20
20
|
jwt: string;
|
|
21
21
|
apiKey?: undefined;
|
|
22
|
-
}
|
|
22
|
+
}) & {
|
|
23
|
+
chainAgnosticUrl?: string | undefined;
|
|
24
|
+
}, z.ZodTypeDef, ({
|
|
23
25
|
apiKey: string;
|
|
24
26
|
rpcUrl?: undefined;
|
|
25
27
|
jwt?: undefined;
|
|
@@ -35,47 +37,65 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
35
37
|
rpcUrl: string;
|
|
36
38
|
jwt: string;
|
|
37
39
|
apiKey?: undefined;
|
|
40
|
+
}) & {
|
|
41
|
+
chainAgnosticUrl?: string | undefined;
|
|
38
42
|
}>;
|
|
39
43
|
rootOrgId: z.ZodOptional<z.ZodString>;
|
|
40
44
|
oauthCallbackUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
41
45
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
connection: {
|
|
46
|
+
connection: ({
|
|
43
47
|
apiKey: string;
|
|
44
48
|
rpcUrl?: undefined;
|
|
45
49
|
jwt?: undefined;
|
|
46
|
-
}
|
|
50
|
+
} & {
|
|
51
|
+
chainAgnosticUrl?: string | undefined;
|
|
52
|
+
}) | ({
|
|
47
53
|
jwt: string;
|
|
48
54
|
rpcUrl?: undefined;
|
|
49
55
|
apiKey?: undefined;
|
|
50
|
-
}
|
|
56
|
+
} & {
|
|
57
|
+
chainAgnosticUrl?: string | undefined;
|
|
58
|
+
}) | ({
|
|
51
59
|
rpcUrl: string;
|
|
52
60
|
apiKey?: undefined;
|
|
53
61
|
jwt?: undefined;
|
|
54
|
-
}
|
|
62
|
+
} & {
|
|
63
|
+
chainAgnosticUrl?: string | undefined;
|
|
64
|
+
}) | ({
|
|
55
65
|
rpcUrl: string;
|
|
56
66
|
jwt: string;
|
|
57
67
|
apiKey?: undefined;
|
|
58
|
-
}
|
|
68
|
+
} & {
|
|
69
|
+
chainAgnosticUrl?: string | undefined;
|
|
70
|
+
});
|
|
59
71
|
oauthCallbackUrl: string;
|
|
60
72
|
rootOrgId?: string | undefined;
|
|
61
73
|
}, {
|
|
62
|
-
connection: {
|
|
74
|
+
connection: ({
|
|
63
75
|
apiKey: string;
|
|
64
76
|
rpcUrl?: undefined;
|
|
65
77
|
jwt?: undefined;
|
|
66
|
-
}
|
|
78
|
+
} & {
|
|
79
|
+
chainAgnosticUrl?: string | undefined;
|
|
80
|
+
}) | ({
|
|
67
81
|
jwt: string;
|
|
68
82
|
rpcUrl?: undefined;
|
|
69
83
|
apiKey?: undefined;
|
|
70
|
-
}
|
|
84
|
+
} & {
|
|
85
|
+
chainAgnosticUrl?: string | undefined;
|
|
86
|
+
}) | ({
|
|
71
87
|
rpcUrl: string;
|
|
72
88
|
apiKey?: undefined;
|
|
73
89
|
jwt?: undefined;
|
|
74
|
-
}
|
|
90
|
+
} & {
|
|
91
|
+
chainAgnosticUrl?: string | undefined;
|
|
92
|
+
}) | ({
|
|
75
93
|
rpcUrl: string;
|
|
76
94
|
jwt: string;
|
|
77
95
|
apiKey?: undefined;
|
|
78
|
-
}
|
|
96
|
+
} & {
|
|
97
|
+
chainAgnosticUrl?: string | undefined;
|
|
98
|
+
});
|
|
79
99
|
rootOrgId?: string | undefined;
|
|
80
100
|
oauthCallbackUrl?: string | undefined;
|
|
81
101
|
}>]>;
|
|
@@ -93,43 +113,59 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
93
113
|
}>>;
|
|
94
114
|
}, "strip", z.ZodTypeAny, {
|
|
95
115
|
client: ({
|
|
96
|
-
connection: {
|
|
116
|
+
connection: ({
|
|
97
117
|
apiKey: string;
|
|
98
118
|
rpcUrl?: undefined;
|
|
99
119
|
jwt?: undefined;
|
|
100
|
-
}
|
|
120
|
+
} & {
|
|
121
|
+
chainAgnosticUrl?: string | undefined;
|
|
122
|
+
}) | ({
|
|
101
123
|
jwt: string;
|
|
102
124
|
rpcUrl?: undefined;
|
|
103
125
|
apiKey?: undefined;
|
|
104
|
-
}
|
|
126
|
+
} & {
|
|
127
|
+
chainAgnosticUrl?: string | undefined;
|
|
128
|
+
}) | ({
|
|
105
129
|
rpcUrl: string;
|
|
106
130
|
apiKey?: undefined;
|
|
107
131
|
jwt?: undefined;
|
|
108
|
-
}
|
|
132
|
+
} & {
|
|
133
|
+
chainAgnosticUrl?: string | undefined;
|
|
134
|
+
}) | ({
|
|
109
135
|
rpcUrl: string;
|
|
110
136
|
jwt: string;
|
|
111
137
|
apiKey?: undefined;
|
|
112
|
-
}
|
|
138
|
+
} & {
|
|
139
|
+
chainAgnosticUrl?: string | undefined;
|
|
140
|
+
});
|
|
113
141
|
oauthCallbackUrl: string;
|
|
114
142
|
rootOrgId?: string | undefined;
|
|
115
143
|
} | RNSignerClient) & ({
|
|
116
|
-
connection: {
|
|
144
|
+
connection: ({
|
|
117
145
|
apiKey: string;
|
|
118
146
|
rpcUrl?: undefined;
|
|
119
147
|
jwt?: undefined;
|
|
120
|
-
}
|
|
148
|
+
} & {
|
|
149
|
+
chainAgnosticUrl?: string | undefined;
|
|
150
|
+
}) | ({
|
|
121
151
|
jwt: string;
|
|
122
152
|
rpcUrl?: undefined;
|
|
123
153
|
apiKey?: undefined;
|
|
124
|
-
}
|
|
154
|
+
} & {
|
|
155
|
+
chainAgnosticUrl?: string | undefined;
|
|
156
|
+
}) | ({
|
|
125
157
|
rpcUrl: string;
|
|
126
158
|
apiKey?: undefined;
|
|
127
159
|
jwt?: undefined;
|
|
128
|
-
}
|
|
160
|
+
} & {
|
|
161
|
+
chainAgnosticUrl?: string | undefined;
|
|
162
|
+
}) | ({
|
|
129
163
|
rpcUrl: string;
|
|
130
164
|
jwt: string;
|
|
131
165
|
apiKey?: undefined;
|
|
132
|
-
}
|
|
166
|
+
} & {
|
|
167
|
+
chainAgnosticUrl?: string | undefined;
|
|
168
|
+
});
|
|
133
169
|
oauthCallbackUrl: string;
|
|
134
170
|
rootOrgId?: string | undefined;
|
|
135
171
|
} | RNSignerClient | undefined);
|
|
@@ -139,43 +175,59 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
139
175
|
} | undefined;
|
|
140
176
|
}, {
|
|
141
177
|
client: ({
|
|
142
|
-
connection: {
|
|
178
|
+
connection: ({
|
|
143
179
|
apiKey: string;
|
|
144
180
|
rpcUrl?: undefined;
|
|
145
181
|
jwt?: undefined;
|
|
146
|
-
}
|
|
182
|
+
} & {
|
|
183
|
+
chainAgnosticUrl?: string | undefined;
|
|
184
|
+
}) | ({
|
|
147
185
|
jwt: string;
|
|
148
186
|
rpcUrl?: undefined;
|
|
149
187
|
apiKey?: undefined;
|
|
150
|
-
}
|
|
188
|
+
} & {
|
|
189
|
+
chainAgnosticUrl?: string | undefined;
|
|
190
|
+
}) | ({
|
|
151
191
|
rpcUrl: string;
|
|
152
192
|
apiKey?: undefined;
|
|
153
193
|
jwt?: undefined;
|
|
154
|
-
}
|
|
194
|
+
} & {
|
|
195
|
+
chainAgnosticUrl?: string | undefined;
|
|
196
|
+
}) | ({
|
|
155
197
|
rpcUrl: string;
|
|
156
198
|
jwt: string;
|
|
157
199
|
apiKey?: undefined;
|
|
158
|
-
}
|
|
200
|
+
} & {
|
|
201
|
+
chainAgnosticUrl?: string | undefined;
|
|
202
|
+
});
|
|
159
203
|
rootOrgId?: string | undefined;
|
|
160
204
|
oauthCallbackUrl?: string | undefined;
|
|
161
205
|
} | RNSignerClient) & ({
|
|
162
|
-
connection: {
|
|
206
|
+
connection: ({
|
|
163
207
|
apiKey: string;
|
|
164
208
|
rpcUrl?: undefined;
|
|
165
209
|
jwt?: undefined;
|
|
166
|
-
}
|
|
210
|
+
} & {
|
|
211
|
+
chainAgnosticUrl?: string | undefined;
|
|
212
|
+
}) | ({
|
|
167
213
|
jwt: string;
|
|
168
214
|
rpcUrl?: undefined;
|
|
169
215
|
apiKey?: undefined;
|
|
170
|
-
}
|
|
216
|
+
} & {
|
|
217
|
+
chainAgnosticUrl?: string | undefined;
|
|
218
|
+
}) | ({
|
|
171
219
|
rpcUrl: string;
|
|
172
220
|
apiKey?: undefined;
|
|
173
221
|
jwt?: undefined;
|
|
174
|
-
}
|
|
222
|
+
} & {
|
|
223
|
+
chainAgnosticUrl?: string | undefined;
|
|
224
|
+
}) | ({
|
|
175
225
|
rpcUrl: string;
|
|
176
226
|
jwt: string;
|
|
177
227
|
apiKey?: undefined;
|
|
178
|
-
}
|
|
228
|
+
} & {
|
|
229
|
+
chainAgnosticUrl?: string | undefined;
|
|
230
|
+
});
|
|
179
231
|
rootOrgId?: string | undefined;
|
|
180
232
|
oauthCallbackUrl?: string | undefined;
|
|
181
233
|
} | RNSignerClient | undefined);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"signer.d.ts","sourceRoot":"","sources":["../../../../src/signer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAElB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAA8B,MAAM,aAAa,CAAC;AAEzE,QAAA,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"signer.d.ts","sourceRoot":"","sources":["../../../../src/signer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAElB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAA8B,MAAM,aAAa,CAAC;AAEzE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAKb,EAAG,UAAU,CAAC,EAAE,SAAS;iBACtC,EAAG,QAAQ,EACZ,EAAA,UAAM,CAAC,EAAE,OACd,uCAGY,EAAG,OAAO,UAAS,EAAI,UAAS;0BAE7C,EAAC,UAAU,CAAE,EAAC,SAAS;gBAAe,EAAE,OAAO,0DAA2B,EAAG,UACxE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EALD,CAAC;AAEL,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,qBAAa,wBAAyB,SAAQ,iBAAiB,CAAC,cAAc,CAAC;IAC7E,OAAO,CAAC,MAAM,CAAC,QAAQ,CAA2B;IAElD,OAAO;WAwBO,WAAW,CAAC,MAAM,EAAE,qBAAqB;CAMxD;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,qBAAqB,4BAI5D;AAED,MAAM,MAAM,mBAAmB,GAAG,wBAAwB,CAAC"}
|
|
@@ -3,7 +3,7 @@ import "./utils/mmkv-localstorage-polyfill.js";
|
|
|
3
3
|
import { BaseSignerClient, type AlchemySignerClientEvents, type AuthenticatingEventMetadata, type CreateAccountParams, type EmailAuthParams, type GetWebAuthnAttestationResult, type MfaFactor, type OauthConfig, type OauthParams, type OtpParams, type SignupResponse, type User, type SubmitOtpCodeResponse } from "@account-kit/signer";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
export declare const RNSignerClientParamsSchema: z.ZodObject<{
|
|
6
|
-
connection: z.ZodType<{
|
|
6
|
+
connection: z.ZodType<({
|
|
7
7
|
apiKey: string;
|
|
8
8
|
rpcUrl?: undefined;
|
|
9
9
|
jwt?: undefined;
|
|
@@ -19,7 +19,9 @@ export declare const RNSignerClientParamsSchema: z.ZodObject<{
|
|
|
19
19
|
rpcUrl: string;
|
|
20
20
|
jwt: string;
|
|
21
21
|
apiKey?: undefined;
|
|
22
|
-
}
|
|
22
|
+
}) & {
|
|
23
|
+
chainAgnosticUrl?: string | undefined;
|
|
24
|
+
}, z.ZodTypeDef, ({
|
|
23
25
|
apiKey: string;
|
|
24
26
|
rpcUrl?: undefined;
|
|
25
27
|
jwt?: undefined;
|
|
@@ -35,47 +37,65 @@ export declare const RNSignerClientParamsSchema: z.ZodObject<{
|
|
|
35
37
|
rpcUrl: string;
|
|
36
38
|
jwt: string;
|
|
37
39
|
apiKey?: undefined;
|
|
40
|
+
}) & {
|
|
41
|
+
chainAgnosticUrl?: string | undefined;
|
|
38
42
|
}>;
|
|
39
43
|
rootOrgId: z.ZodOptional<z.ZodString>;
|
|
40
44
|
oauthCallbackUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
41
45
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
connection: {
|
|
46
|
+
connection: ({
|
|
43
47
|
apiKey: string;
|
|
44
48
|
rpcUrl?: undefined;
|
|
45
49
|
jwt?: undefined;
|
|
46
|
-
}
|
|
50
|
+
} & {
|
|
51
|
+
chainAgnosticUrl?: string | undefined;
|
|
52
|
+
}) | ({
|
|
47
53
|
jwt: string;
|
|
48
54
|
rpcUrl?: undefined;
|
|
49
55
|
apiKey?: undefined;
|
|
50
|
-
}
|
|
56
|
+
} & {
|
|
57
|
+
chainAgnosticUrl?: string | undefined;
|
|
58
|
+
}) | ({
|
|
51
59
|
rpcUrl: string;
|
|
52
60
|
apiKey?: undefined;
|
|
53
61
|
jwt?: undefined;
|
|
54
|
-
}
|
|
62
|
+
} & {
|
|
63
|
+
chainAgnosticUrl?: string | undefined;
|
|
64
|
+
}) | ({
|
|
55
65
|
rpcUrl: string;
|
|
56
66
|
jwt: string;
|
|
57
67
|
apiKey?: undefined;
|
|
58
|
-
}
|
|
68
|
+
} & {
|
|
69
|
+
chainAgnosticUrl?: string | undefined;
|
|
70
|
+
});
|
|
59
71
|
oauthCallbackUrl: string;
|
|
60
72
|
rootOrgId?: string | undefined;
|
|
61
73
|
}, {
|
|
62
|
-
connection: {
|
|
74
|
+
connection: ({
|
|
63
75
|
apiKey: string;
|
|
64
76
|
rpcUrl?: undefined;
|
|
65
77
|
jwt?: undefined;
|
|
66
|
-
}
|
|
78
|
+
} & {
|
|
79
|
+
chainAgnosticUrl?: string | undefined;
|
|
80
|
+
}) | ({
|
|
67
81
|
jwt: string;
|
|
68
82
|
rpcUrl?: undefined;
|
|
69
83
|
apiKey?: undefined;
|
|
70
|
-
}
|
|
84
|
+
} & {
|
|
85
|
+
chainAgnosticUrl?: string | undefined;
|
|
86
|
+
}) | ({
|
|
71
87
|
rpcUrl: string;
|
|
72
88
|
apiKey?: undefined;
|
|
73
89
|
jwt?: undefined;
|
|
74
|
-
}
|
|
90
|
+
} & {
|
|
91
|
+
chainAgnosticUrl?: string | undefined;
|
|
92
|
+
}) | ({
|
|
75
93
|
rpcUrl: string;
|
|
76
94
|
jwt: string;
|
|
77
95
|
apiKey?: undefined;
|
|
78
|
-
}
|
|
96
|
+
} & {
|
|
97
|
+
chainAgnosticUrl?: string | undefined;
|
|
98
|
+
});
|
|
79
99
|
rootOrgId?: string | undefined;
|
|
80
100
|
oauthCallbackUrl?: string | undefined;
|
|
81
101
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AACpC,OAAO,uCAAuC,CAAC;AAI/C,OAAO,EACL,gBAAgB,EAGhB,KAAK,yBAAyB,EAC9B,KAAK,2BAA2B,EAChC,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,SAAS,EACd,KAAK,WAAW,EAChB,KAAK,WAAW,EAChB,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,IAAI,EACT,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AACpC,OAAO,uCAAuC,CAAC;AAI/C,OAAO,EACL,gBAAgB,EAGhB,KAAK,yBAAyB,EAC9B,KAAK,2BAA2B,EAChC,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,SAAS,EACd,KAAK,WAAW,EAChB,KAAK,WAAW,EAChB,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,IAAI,EACT,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOrC,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAG9E,qBAAa,cAAe,SAAQ,gBAAgB,CAAC,SAAS,CAAC;IAC7D,OAAO,CAAC,OAAO,CAAoB;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,CAAC,wBAAwB,CAI9B;gBAEU,MAAM,EAAE,oBAAoB;IAazB,aAAa,CAC1B,IAAI,EAAE,IAAI,CAAC,SAAS,EAAE,iBAAiB,CAAC,GACvC,OAAO,CAAC,qBAAqB,CAAC;IAmClB,aAAa,CAC1B,MAAM,EAAE,mBAAmB,GAC1B,OAAO,CAAC,cAAc,CAAC;IAoBX,aAAa,CAC1B,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,iBAAiB,CAAC,GAC/C,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,SAAS,EAAE,CAAA;KAAE,CAAC;IAuB1D,sBAAsB,CAAC,MAAM,EAAE;QAC5C,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE,MAAM,CAAC;QACd,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;QACpD,kBAAkB,EAAE,2BAA2B,CAAC,MAAM,CAAC,CAAC;QACxD,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBR,iBAAiB,SAClB,OAAO,CAAC,WAAW,EAAE;QAAE,IAAI,EAAE,UAAU,CAAA;KAAE,CAAC,KAC/C,OAAO,CAAC,IAAI,CAAC,CAuDd;IAEO,cAAc,CACrB,KAAK,EAAE,OAAO,CAAC,WAAW,EAAE;QAAE,IAAI,EAAE,OAAO,CAAA;KAAE,CAAC,GAC7C,OAAO,CAAC,IAAI,CAAC;IAID,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAKjC,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAGhD,qBAAqB,CAAC,KAAK,CAAC,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAIlD,eAAe,IAAI,OAAO,CAAC,MAAM,CAAC;cAIxB,sBAAsB,CACvC,QAAQ,EAAE,yBAAyB,EACnC,YAAY,CAAC,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAA;KAAE,GAClC,OAAO,CAAC,4BAA4B,CAAC;IAIxC,UAAmB,cAAc,QAAa,OAAO,CAAC,WAAW,CAAC,CAKhE;CACH"}
|
|
@@ -3,7 +3,7 @@ import { z } from "zod";
|
|
|
3
3
|
import { RNSignerClient } from "./client.js";
|
|
4
4
|
declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
5
5
|
client: z.ZodUnion<[z.ZodType<RNSignerClient, z.ZodTypeDef, RNSignerClient>, z.ZodObject<{
|
|
6
|
-
connection: z.ZodType<{
|
|
6
|
+
connection: z.ZodType<({
|
|
7
7
|
apiKey: string;
|
|
8
8
|
rpcUrl?: undefined;
|
|
9
9
|
jwt?: undefined;
|
|
@@ -19,7 +19,9 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
19
19
|
rpcUrl: string;
|
|
20
20
|
jwt: string;
|
|
21
21
|
apiKey?: undefined;
|
|
22
|
-
}
|
|
22
|
+
}) & {
|
|
23
|
+
chainAgnosticUrl?: string | undefined;
|
|
24
|
+
}, z.ZodTypeDef, ({
|
|
23
25
|
apiKey: string;
|
|
24
26
|
rpcUrl?: undefined;
|
|
25
27
|
jwt?: undefined;
|
|
@@ -35,47 +37,65 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
35
37
|
rpcUrl: string;
|
|
36
38
|
jwt: string;
|
|
37
39
|
apiKey?: undefined;
|
|
40
|
+
}) & {
|
|
41
|
+
chainAgnosticUrl?: string | undefined;
|
|
38
42
|
}>;
|
|
39
43
|
rootOrgId: z.ZodOptional<z.ZodString>;
|
|
40
44
|
oauthCallbackUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
41
45
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
connection: {
|
|
46
|
+
connection: ({
|
|
43
47
|
apiKey: string;
|
|
44
48
|
rpcUrl?: undefined;
|
|
45
49
|
jwt?: undefined;
|
|
46
|
-
}
|
|
50
|
+
} & {
|
|
51
|
+
chainAgnosticUrl?: string | undefined;
|
|
52
|
+
}) | ({
|
|
47
53
|
jwt: string;
|
|
48
54
|
rpcUrl?: undefined;
|
|
49
55
|
apiKey?: undefined;
|
|
50
|
-
}
|
|
56
|
+
} & {
|
|
57
|
+
chainAgnosticUrl?: string | undefined;
|
|
58
|
+
}) | ({
|
|
51
59
|
rpcUrl: string;
|
|
52
60
|
apiKey?: undefined;
|
|
53
61
|
jwt?: undefined;
|
|
54
|
-
}
|
|
62
|
+
} & {
|
|
63
|
+
chainAgnosticUrl?: string | undefined;
|
|
64
|
+
}) | ({
|
|
55
65
|
rpcUrl: string;
|
|
56
66
|
jwt: string;
|
|
57
67
|
apiKey?: undefined;
|
|
58
|
-
}
|
|
68
|
+
} & {
|
|
69
|
+
chainAgnosticUrl?: string | undefined;
|
|
70
|
+
});
|
|
59
71
|
oauthCallbackUrl: string;
|
|
60
72
|
rootOrgId?: string | undefined;
|
|
61
73
|
}, {
|
|
62
|
-
connection: {
|
|
74
|
+
connection: ({
|
|
63
75
|
apiKey: string;
|
|
64
76
|
rpcUrl?: undefined;
|
|
65
77
|
jwt?: undefined;
|
|
66
|
-
}
|
|
78
|
+
} & {
|
|
79
|
+
chainAgnosticUrl?: string | undefined;
|
|
80
|
+
}) | ({
|
|
67
81
|
jwt: string;
|
|
68
82
|
rpcUrl?: undefined;
|
|
69
83
|
apiKey?: undefined;
|
|
70
|
-
}
|
|
84
|
+
} & {
|
|
85
|
+
chainAgnosticUrl?: string | undefined;
|
|
86
|
+
}) | ({
|
|
71
87
|
rpcUrl: string;
|
|
72
88
|
apiKey?: undefined;
|
|
73
89
|
jwt?: undefined;
|
|
74
|
-
}
|
|
90
|
+
} & {
|
|
91
|
+
chainAgnosticUrl?: string | undefined;
|
|
92
|
+
}) | ({
|
|
75
93
|
rpcUrl: string;
|
|
76
94
|
jwt: string;
|
|
77
95
|
apiKey?: undefined;
|
|
78
|
-
}
|
|
96
|
+
} & {
|
|
97
|
+
chainAgnosticUrl?: string | undefined;
|
|
98
|
+
});
|
|
79
99
|
rootOrgId?: string | undefined;
|
|
80
100
|
oauthCallbackUrl?: string | undefined;
|
|
81
101
|
}>]>;
|
|
@@ -93,43 +113,59 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
93
113
|
}>>;
|
|
94
114
|
}, "strip", z.ZodTypeAny, {
|
|
95
115
|
client: ({
|
|
96
|
-
connection: {
|
|
116
|
+
connection: ({
|
|
97
117
|
apiKey: string;
|
|
98
118
|
rpcUrl?: undefined;
|
|
99
119
|
jwt?: undefined;
|
|
100
|
-
}
|
|
120
|
+
} & {
|
|
121
|
+
chainAgnosticUrl?: string | undefined;
|
|
122
|
+
}) | ({
|
|
101
123
|
jwt: string;
|
|
102
124
|
rpcUrl?: undefined;
|
|
103
125
|
apiKey?: undefined;
|
|
104
|
-
}
|
|
126
|
+
} & {
|
|
127
|
+
chainAgnosticUrl?: string | undefined;
|
|
128
|
+
}) | ({
|
|
105
129
|
rpcUrl: string;
|
|
106
130
|
apiKey?: undefined;
|
|
107
131
|
jwt?: undefined;
|
|
108
|
-
}
|
|
132
|
+
} & {
|
|
133
|
+
chainAgnosticUrl?: string | undefined;
|
|
134
|
+
}) | ({
|
|
109
135
|
rpcUrl: string;
|
|
110
136
|
jwt: string;
|
|
111
137
|
apiKey?: undefined;
|
|
112
|
-
}
|
|
138
|
+
} & {
|
|
139
|
+
chainAgnosticUrl?: string | undefined;
|
|
140
|
+
});
|
|
113
141
|
oauthCallbackUrl: string;
|
|
114
142
|
rootOrgId?: string | undefined;
|
|
115
143
|
} | RNSignerClient) & ({
|
|
116
|
-
connection: {
|
|
144
|
+
connection: ({
|
|
117
145
|
apiKey: string;
|
|
118
146
|
rpcUrl?: undefined;
|
|
119
147
|
jwt?: undefined;
|
|
120
|
-
}
|
|
148
|
+
} & {
|
|
149
|
+
chainAgnosticUrl?: string | undefined;
|
|
150
|
+
}) | ({
|
|
121
151
|
jwt: string;
|
|
122
152
|
rpcUrl?: undefined;
|
|
123
153
|
apiKey?: undefined;
|
|
124
|
-
}
|
|
154
|
+
} & {
|
|
155
|
+
chainAgnosticUrl?: string | undefined;
|
|
156
|
+
}) | ({
|
|
125
157
|
rpcUrl: string;
|
|
126
158
|
apiKey?: undefined;
|
|
127
159
|
jwt?: undefined;
|
|
128
|
-
}
|
|
160
|
+
} & {
|
|
161
|
+
chainAgnosticUrl?: string | undefined;
|
|
162
|
+
}) | ({
|
|
129
163
|
rpcUrl: string;
|
|
130
164
|
jwt: string;
|
|
131
165
|
apiKey?: undefined;
|
|
132
|
-
}
|
|
166
|
+
} & {
|
|
167
|
+
chainAgnosticUrl?: string | undefined;
|
|
168
|
+
});
|
|
133
169
|
oauthCallbackUrl: string;
|
|
134
170
|
rootOrgId?: string | undefined;
|
|
135
171
|
} | RNSignerClient | undefined);
|
|
@@ -139,43 +175,59 @@ declare const RNAlchemySignerParamsSchema: z.ZodObject<{
|
|
|
139
175
|
} | undefined;
|
|
140
176
|
}, {
|
|
141
177
|
client: ({
|
|
142
|
-
connection: {
|
|
178
|
+
connection: ({
|
|
143
179
|
apiKey: string;
|
|
144
180
|
rpcUrl?: undefined;
|
|
145
181
|
jwt?: undefined;
|
|
146
|
-
}
|
|
182
|
+
} & {
|
|
183
|
+
chainAgnosticUrl?: string | undefined;
|
|
184
|
+
}) | ({
|
|
147
185
|
jwt: string;
|
|
148
186
|
rpcUrl?: undefined;
|
|
149
187
|
apiKey?: undefined;
|
|
150
|
-
}
|
|
188
|
+
} & {
|
|
189
|
+
chainAgnosticUrl?: string | undefined;
|
|
190
|
+
}) | ({
|
|
151
191
|
rpcUrl: string;
|
|
152
192
|
apiKey?: undefined;
|
|
153
193
|
jwt?: undefined;
|
|
154
|
-
}
|
|
194
|
+
} & {
|
|
195
|
+
chainAgnosticUrl?: string | undefined;
|
|
196
|
+
}) | ({
|
|
155
197
|
rpcUrl: string;
|
|
156
198
|
jwt: string;
|
|
157
199
|
apiKey?: undefined;
|
|
158
|
-
}
|
|
200
|
+
} & {
|
|
201
|
+
chainAgnosticUrl?: string | undefined;
|
|
202
|
+
});
|
|
159
203
|
rootOrgId?: string | undefined;
|
|
160
204
|
oauthCallbackUrl?: string | undefined;
|
|
161
205
|
} | RNSignerClient) & ({
|
|
162
|
-
connection: {
|
|
206
|
+
connection: ({
|
|
163
207
|
apiKey: string;
|
|
164
208
|
rpcUrl?: undefined;
|
|
165
209
|
jwt?: undefined;
|
|
166
|
-
}
|
|
210
|
+
} & {
|
|
211
|
+
chainAgnosticUrl?: string | undefined;
|
|
212
|
+
}) | ({
|
|
167
213
|
jwt: string;
|
|
168
214
|
rpcUrl?: undefined;
|
|
169
215
|
apiKey?: undefined;
|
|
170
|
-
}
|
|
216
|
+
} & {
|
|
217
|
+
chainAgnosticUrl?: string | undefined;
|
|
218
|
+
}) | ({
|
|
171
219
|
rpcUrl: string;
|
|
172
220
|
apiKey?: undefined;
|
|
173
221
|
jwt?: undefined;
|
|
174
|
-
}
|
|
222
|
+
} & {
|
|
223
|
+
chainAgnosticUrl?: string | undefined;
|
|
224
|
+
}) | ({
|
|
175
225
|
rpcUrl: string;
|
|
176
226
|
jwt: string;
|
|
177
227
|
apiKey?: undefined;
|
|
178
|
-
}
|
|
228
|
+
} & {
|
|
229
|
+
chainAgnosticUrl?: string | undefined;
|
|
230
|
+
});
|
|
179
231
|
rootOrgId?: string | undefined;
|
|
180
232
|
oauthCallbackUrl?: string | undefined;
|
|
181
233
|
} | RNSignerClient | undefined);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"signer.d.ts","sourceRoot":"","sources":["../../../../src/signer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAElB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAA8B,MAAM,aAAa,CAAC;AAEzE,QAAA,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"signer.d.ts","sourceRoot":"","sources":["../../../../src/signer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAElB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAA8B,MAAM,aAAa,CAAC;AAEzE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAKb,EAAG,UAAU,CAAC,EAAE,SAAS;iBACtC,EAAG,QAAQ,EACZ,EAAA,UAAM,CAAC,EAAE,OACd,uCAGY,EAAG,OAAO,UAAS,EAAI,UAAS;0BAE7C,EAAC,UAAU,CAAE,EAAC,SAAS;gBAAe,EAAE,OAAO,0DAA2B,EAAG,UACxE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EALD,CAAC;AAEL,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,qBAAa,wBAAyB,SAAQ,iBAAiB,CAAC,cAAc,CAAC;IAC7E,OAAO,CAAC,MAAM,CAAC,QAAQ,CAA2B;IAElD,OAAO;WAwBO,WAAW,CAAC,MAAM,EAAE,qBAAqB;CAMxD;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,qBAAqB,4BAI5D;AAED,MAAM,MAAM,mBAAmB,GAAG,wBAAwB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@account-kit/react-native-signer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.32.0",
|
|
4
4
|
"author": "Alchemy",
|
|
5
5
|
"description": "React Native compatible Account Kit signer",
|
|
6
6
|
"source": "./src/index.tsx",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"typecheck": "tsc",
|
|
43
43
|
"build": "yarn typecheck",
|
|
44
44
|
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
|
|
45
|
-
"docs:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../site/pages/reference/account-kit/react-native-signer",
|
|
46
45
|
"fern:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../docs/pages/reference/account-kit/react-native-signer --fern",
|
|
47
46
|
"prepare": "bob build"
|
|
48
47
|
},
|
|
@@ -150,9 +149,9 @@
|
|
|
150
149
|
"version": "0.42.2"
|
|
151
150
|
},
|
|
152
151
|
"dependencies": {
|
|
153
|
-
"@aa-sdk/core": "^4.
|
|
154
|
-
"@account-kit/signer": "^4.
|
|
152
|
+
"@aa-sdk/core": "^4.32.0",
|
|
153
|
+
"@account-kit/signer": "^4.32.0",
|
|
155
154
|
"viem": "^2.21.40"
|
|
156
155
|
},
|
|
157
|
-
"gitHead": "
|
|
156
|
+
"gitHead": "efe1ba2e525ac0fc6ed0007b3d28dc9c8e063d78"
|
|
158
157
|
}
|