@coinbase/cdp-core 0.0.41 → 0.0.42
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/esm/index.native101.js +10 -79
- package/dist/esm/index.native102.js +79 -10
- package/dist/esm/index.native13.js +1 -1
- package/dist/esm/index.native25.js +149 -940
- package/dist/esm/index.native26.js +48 -2
- package/dist/esm/index.native27.js +244 -43
- package/dist/esm/index.native28.js +55 -27
- package/dist/esm/index.native29.js +940 -149
- package/dist/esm/index.native30.js +2 -48
- package/dist/esm/index.native31.js +43 -243
- package/dist/esm/index.native32.js +27 -55
- package/dist/esm/index.native8.js +4 -4
- package/dist/esm/index.native9.js +49 -31
- package/dist/esm/index.native92.js +1 -1
- package/dist/esm/index.web100.js +9 -117
- package/dist/esm/index.web101.js +79 -10
- package/dist/esm/index.web26.js +156 -155
- package/dist/esm/index.web27.js +1 -1
- package/dist/esm/index.web8.js +49 -31
- package/dist/esm/index.web82.js +6 -6
- package/dist/esm/index.web91.js +1 -1
- package/dist/esm/index.web94.js +19 -77
- package/dist/esm/index.web95.js +10 -21
- package/dist/esm/index.web96.js +19 -9
- package/dist/esm/index.web97.js +89 -15
- package/dist/esm/index.web98.js +19 -92
- package/dist/esm/index.web99.js +115 -18
- package/dist/native/index.native101.js +10 -79
- package/dist/native/index.native102.js +79 -10
- package/dist/native/index.native13.js +1 -1
- package/dist/native/index.native25.js +149 -940
- package/dist/native/index.native26.js +48 -2
- package/dist/native/index.native27.js +244 -43
- package/dist/native/index.native28.js +55 -27
- package/dist/native/index.native29.js +940 -149
- package/dist/native/index.native30.js +2 -48
- package/dist/native/index.native31.js +43 -243
- package/dist/native/index.native32.js +27 -55
- package/dist/native/index.native8.js +4 -4
- package/dist/native/index.native9.js +49 -31
- package/dist/native/index.native92.js +1 -1
- package/dist/native-types/eip1193/errors.d.ts +6 -0
- package/dist/native-types/eip1193/internal.d.ts +3 -1
- package/dist/types/eip1193/errors.d.ts +6 -0
- package/dist/types/eip1193/internal.d.ts +3 -1
- package/dist/web/index.web100.js +9 -117
- package/dist/web/index.web101.js +79 -10
- package/dist/web/index.web26.js +156 -155
- package/dist/web/index.web27.js +1 -1
- package/dist/web/index.web8.js +49 -31
- package/dist/web/index.web82.js +6 -6
- package/dist/web/index.web91.js +1 -1
- package/dist/web/index.web94.js +19 -77
- package/dist/web/index.web95.js +10 -21
- package/dist/web/index.web96.js +19 -9
- package/dist/web/index.web97.js +89 -15
- package/dist/web/index.web98.js +19 -92
- package/dist/web/index.web99.js +115 -18
- package/dist/web-types/eip1193/errors.d.ts +6 -0
- package/dist/web-types/eip1193/internal.d.ts +3 -1
- package/package.json +2 -2
|
@@ -1,50 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
events = {};
|
|
3
|
-
/**
|
|
4
|
-
* Add an event listener.
|
|
5
|
-
*
|
|
6
|
-
* @param event - The name of the event to listen for.
|
|
7
|
-
* @param listener - The function to call when the event is emitted.
|
|
8
|
-
*/
|
|
9
|
-
on(e, s) {
|
|
10
|
-
this.events[e] || (this.events[e] = []), this.events[e].push(s);
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Remove an event listener.
|
|
14
|
-
*
|
|
15
|
-
* @param event - The name of the event to remove the listener from.
|
|
16
|
-
* @param listener - The function to remove from the event listeners.
|
|
17
|
-
*/
|
|
18
|
-
removeListener(e, s) {
|
|
19
|
-
if (!this.events[e])
|
|
20
|
-
return;
|
|
21
|
-
const t = this.events[e].indexOf(s);
|
|
22
|
-
t > -1 && this.events[e].splice(t, 1);
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Emit an event.
|
|
26
|
-
*
|
|
27
|
-
* @param event - The name of the event to emit.
|
|
28
|
-
* @param args - The arguments to pass to the event listeners.
|
|
29
|
-
*/
|
|
30
|
-
emit(e, ...s) {
|
|
31
|
-
this.events[e] && this.events[e].forEach((t) => {
|
|
32
|
-
try {
|
|
33
|
-
t(...s);
|
|
34
|
-
} catch (i) {
|
|
35
|
-
console.error(`Error in event listener for ${e}:`, i);
|
|
36
|
-
}
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Remove all listeners for an event.
|
|
41
|
-
*
|
|
42
|
-
* @param event - The name of the event to remove all listeners from. If not provided, removes all listeners for all events.
|
|
43
|
-
*/
|
|
44
|
-
removeAllListeners(e) {
|
|
45
|
-
e ? delete this.events[e] : this.events = {};
|
|
46
|
-
}
|
|
47
|
-
}
|
|
1
|
+
var r = {};
|
|
48
2
|
export {
|
|
49
|
-
|
|
3
|
+
r as __exports
|
|
50
4
|
};
|
|
@@ -1,252 +1,52 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
function
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
maxPriorityFeePerGas: e.maxPriorityFeePerGas ? BigInt(e.maxPriorityFeePerGas) : void 0,
|
|
18
|
-
type: "eip1559"
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
function G(e) {
|
|
22
|
-
return e.map((t) => ({
|
|
23
|
-
to: t.to,
|
|
24
|
-
data: t.data,
|
|
25
|
-
value: t.value ? BigInt(t.value) : void 0
|
|
26
|
-
}));
|
|
27
|
-
}
|
|
28
|
-
function M(e) {
|
|
29
|
-
return {
|
|
30
|
-
atomic: !0,
|
|
31
|
-
chainId: f(q[e.network] ?? 0),
|
|
32
|
-
id: e.userOpHash,
|
|
33
|
-
status: B(e.status),
|
|
34
|
-
version: "1"
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
function B(e) {
|
|
38
|
-
switch (e) {
|
|
39
|
-
case "dropped":
|
|
40
|
-
case "failed":
|
|
41
|
-
return 400;
|
|
42
|
-
case "complete":
|
|
43
|
-
return 200;
|
|
44
|
-
default:
|
|
45
|
-
return 100;
|
|
1
|
+
import { __exports as F } from "./index.native36.js";
|
|
2
|
+
var A;
|
|
3
|
+
function _() {
|
|
4
|
+
if (A) return F;
|
|
5
|
+
A = 1, F.byteLength = y, F.toByteArray = C, F.fromByteArray = B;
|
|
6
|
+
for (var c = [], n = [], l = typeof Uint8Array < "u" ? Uint8Array : Array, d = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", s = 0, p = d.length; s < p; ++s)
|
|
7
|
+
c[s] = d[s], n[d.charCodeAt(s)] = s;
|
|
8
|
+
n[45] = 62, n[95] = 63;
|
|
9
|
+
function x(r) {
|
|
10
|
+
var e = r.length;
|
|
11
|
+
if (e % 4 > 0)
|
|
12
|
+
throw new Error("Invalid string. Length must be a multiple of 4");
|
|
13
|
+
var a = r.indexOf("=");
|
|
14
|
+
a === -1 && (a = e);
|
|
15
|
+
var o = a === e ? 0 : 4 - a % 4;
|
|
16
|
+
return [a, o];
|
|
46
17
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
async function X(e, t) {
|
|
52
|
-
const n = await g();
|
|
53
|
-
return e.emit("connect", {
|
|
54
|
-
chainId: P.fromNumber(t.getState().chainId)
|
|
55
|
-
}), n.evmAccounts || [];
|
|
56
|
-
}
|
|
57
|
-
async function Y(e) {
|
|
58
|
-
const [t, n] = e;
|
|
59
|
-
await l(n);
|
|
60
|
-
const a = Buffer.from(t.slice(2), "hex").toString();
|
|
61
|
-
try {
|
|
62
|
-
return (await H({
|
|
63
|
-
evmAccount: n,
|
|
64
|
-
message: a
|
|
65
|
-
})).signature;
|
|
66
|
-
} catch (o) {
|
|
67
|
-
throw new p(
|
|
68
|
-
s.provider.userRejectedRequest,
|
|
69
|
-
o instanceof Error ? o.message : "Signing failed"
|
|
70
|
-
);
|
|
18
|
+
function y(r) {
|
|
19
|
+
var e = x(r), a = e[0], o = e[1];
|
|
20
|
+
return (a + o) * 3 / 4 - o;
|
|
71
21
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
const [t, n] = e;
|
|
75
|
-
await l(t);
|
|
76
|
-
try {
|
|
77
|
-
return (await U({
|
|
78
|
-
evmAccount: t,
|
|
79
|
-
typedData: JSON.parse(n)
|
|
80
|
-
})).signature;
|
|
81
|
-
} catch (a) {
|
|
82
|
-
throw new p(
|
|
83
|
-
s.provider.userRejectedRequest,
|
|
84
|
-
a instanceof Error ? a.message : "Signing failed"
|
|
85
|
-
);
|
|
22
|
+
function i(r, e, a) {
|
|
23
|
+
return (e + a) * 3 / 4 - a;
|
|
86
24
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
s.rpc.invalidParams,
|
|
93
|
-
"Transaction parameter must be an object"
|
|
94
|
-
);
|
|
95
|
-
if (!a.to)
|
|
96
|
-
throw new i(
|
|
97
|
-
s.rpc.invalidParams,
|
|
98
|
-
"Transaction must include 'to' field"
|
|
99
|
-
);
|
|
100
|
-
const d = (await F()).evmAccounts?.[0], c = t.getState(), r = a.chainId ? Number(a.chainId) : c.chainId;
|
|
101
|
-
if (!d)
|
|
102
|
-
throw new i(
|
|
103
|
-
s.rpc.invalidParams,
|
|
104
|
-
"User does not have an EVM account"
|
|
105
|
-
);
|
|
106
|
-
if (N(r))
|
|
107
|
-
try {
|
|
108
|
-
return (await b({
|
|
109
|
-
evmAccount: d,
|
|
110
|
-
transaction: { ...w(a), chainId: r },
|
|
111
|
-
network: j[r]
|
|
112
|
-
})).transactionHash;
|
|
113
|
-
} catch (u) {
|
|
114
|
-
throw console.log("Transaction failed", u), new i(
|
|
115
|
-
s.rpc.transactionRejected,
|
|
116
|
-
u instanceof Error ? u.message : "Transaction failed"
|
|
117
|
-
);
|
|
118
|
-
}
|
|
119
|
-
else
|
|
120
|
-
try {
|
|
121
|
-
const u = A({
|
|
122
|
-
// Safe as we check before calling this handler that chainId is configured
|
|
123
|
-
chain: c.chains.find((h) => h.id === r),
|
|
124
|
-
transport: n[r],
|
|
125
|
-
account: d
|
|
126
|
-
}), y = c.chains.find((h) => h.id === r), C = await u.prepareTransactionRequest({
|
|
127
|
-
...w(a),
|
|
128
|
-
chain: y
|
|
129
|
-
}), E = await D({
|
|
130
|
-
evmAccount: d,
|
|
131
|
-
transaction: {
|
|
132
|
-
...C,
|
|
133
|
-
type: "eip1559"
|
|
134
|
-
}
|
|
135
|
-
});
|
|
136
|
-
return await u.sendRawTransaction({
|
|
137
|
-
serializedTransaction: E.signedTransaction
|
|
138
|
-
});
|
|
139
|
-
} catch (u) {
|
|
140
|
-
throw new i(
|
|
141
|
-
s.rpc.transactionRejected,
|
|
142
|
-
u instanceof Error ? u.message : "Transaction failed"
|
|
143
|
-
);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
async function te(e) {
|
|
147
|
-
const [t, n] = e;
|
|
148
|
-
await l(n);
|
|
149
|
-
try {
|
|
150
|
-
return (await x({
|
|
151
|
-
evmAccount: n,
|
|
152
|
-
hash: t
|
|
153
|
-
})).signature;
|
|
154
|
-
} catch (a) {
|
|
155
|
-
throw new p(
|
|
156
|
-
s.provider.userRejectedRequest,
|
|
157
|
-
a instanceof Error ? a.message : "Signing failed"
|
|
158
|
-
);
|
|
25
|
+
function C(r) {
|
|
26
|
+
var e, a = x(r), o = a[0], v = a[1], t = new l(i(r, o, v)), h = 0, u = v > 0 ? o - 4 : o, f;
|
|
27
|
+
for (f = 0; f < u; f += 4)
|
|
28
|
+
e = n[r.charCodeAt(f)] << 18 | n[r.charCodeAt(f + 1)] << 12 | n[r.charCodeAt(f + 2)] << 6 | n[r.charCodeAt(f + 3)], t[h++] = e >> 16 & 255, t[h++] = e >> 8 & 255, t[h++] = e & 255;
|
|
29
|
+
return v === 2 && (e = n[r.charCodeAt(f)] << 2 | n[r.charCodeAt(f + 1)] >> 4, t[h++] = e & 255), v === 1 && (e = n[r.charCodeAt(f)] << 10 | n[r.charCodeAt(f + 1)] << 4 | n[r.charCodeAt(f + 2)] >> 2, t[h++] = e >> 8 & 255, t[h++] = e & 255), t;
|
|
159
30
|
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
return `0x${e.getState().chainId.toString(16)}`;
|
|
163
|
-
}
|
|
164
|
-
async function ne() {
|
|
165
|
-
await v() && await O();
|
|
166
|
-
}
|
|
167
|
-
function re(e, t) {
|
|
168
|
-
const n = Number.parseInt(e[0].chainId, 16);
|
|
169
|
-
t.getState().setChainId(n);
|
|
170
|
-
}
|
|
171
|
-
async function se(e, t) {
|
|
172
|
-
const n = e[0].calls, o = (await S()).evmSmartAccounts?.[0], c = t.getState().chainId;
|
|
173
|
-
if (!o)
|
|
174
|
-
throw new i(
|
|
175
|
-
s.rpc.invalidParams,
|
|
176
|
-
"User does not have an EVM smart account"
|
|
177
|
-
);
|
|
178
|
-
if (!I(c))
|
|
179
|
-
throw new i(
|
|
180
|
-
s.rpc.invalidParams,
|
|
181
|
-
"Chain ID is not supported for user operations"
|
|
182
|
-
);
|
|
183
|
-
try {
|
|
184
|
-
return (await R({
|
|
185
|
-
evmSmartAccount: o,
|
|
186
|
-
calls: G(n),
|
|
187
|
-
network: m[c]
|
|
188
|
-
})).userOperationHash;
|
|
189
|
-
} catch (r) {
|
|
190
|
-
throw console.log("User operation failed", r), new i(
|
|
191
|
-
s.rpc.transactionRejected,
|
|
192
|
-
r instanceof Error ? r.message : "User operation failed"
|
|
193
|
-
);
|
|
31
|
+
function L(r) {
|
|
32
|
+
return c[r >> 18 & 63] + c[r >> 12 & 63] + c[r >> 6 & 63] + c[r & 63];
|
|
194
33
|
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
throw new i(
|
|
200
|
-
s.rpc.invalidParams,
|
|
201
|
-
"User does not have an EVM smart account"
|
|
202
|
-
);
|
|
203
|
-
if (!I(c) || !m[c])
|
|
204
|
-
throw new i(
|
|
205
|
-
s.rpc.invalidParams,
|
|
206
|
-
"Chain ID is not supported for user operations"
|
|
207
|
-
);
|
|
208
|
-
try {
|
|
209
|
-
const r = await T({
|
|
210
|
-
userOperationHash: n,
|
|
211
|
-
evmSmartAccount: o,
|
|
212
|
-
network: m[c]
|
|
213
|
-
});
|
|
214
|
-
return M(r);
|
|
215
|
-
} catch (r) {
|
|
216
|
-
throw console.log("Failed to get user operation status", r), new i(
|
|
217
|
-
s.rpc.internal,
|
|
218
|
-
"Failed to get user operation status"
|
|
219
|
-
);
|
|
34
|
+
function g(r, e, a) {
|
|
35
|
+
for (var o, v = [], t = e; t < a; t += 3)
|
|
36
|
+
o = (r[t] << 16 & 16711680) + (r[t + 1] << 8 & 65280) + (r[t + 2] & 255), v.push(L(o));
|
|
37
|
+
return v.join("");
|
|
220
38
|
}
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
paymasterService: { supported: !0 }
|
|
232
|
-
}, a;
|
|
233
|
-
},
|
|
234
|
-
{}
|
|
235
|
-
);
|
|
39
|
+
function B(r) {
|
|
40
|
+
for (var e, a = r.length, o = a % 3, v = [], t = 16383, h = 0, u = a - o; h < u; h += t)
|
|
41
|
+
v.push(g(r, h, h + t > u ? u : h + t));
|
|
42
|
+
return o === 1 ? (e = r[a - 1], v.push(
|
|
43
|
+
c[e >> 2] + c[e << 4 & 63] + "=="
|
|
44
|
+
)) : o === 2 && (e = (r[a - 2] << 8) + r[a - 1], v.push(
|
|
45
|
+
c[e >> 10] + c[e >> 4 & 63] + c[e << 2 & 63] + "="
|
|
46
|
+
)), v.join("");
|
|
47
|
+
}
|
|
48
|
+
return F;
|
|
236
49
|
}
|
|
237
50
|
export {
|
|
238
|
-
|
|
239
|
-
ae as handleChainId,
|
|
240
|
-
ne as handleDisconnect,
|
|
241
|
-
te as handleEthSign,
|
|
242
|
-
oe as handleGetCallsStatus,
|
|
243
|
-
ie as handleGetCapabilities,
|
|
244
|
-
Y as handlePersonalSign,
|
|
245
|
-
X as handleRequestAccounts,
|
|
246
|
-
se as handleSendCalls,
|
|
247
|
-
ee as handleSendTransaction,
|
|
248
|
-
Z as handleSignTypedData,
|
|
249
|
-
re as handleSwitchEthereumChain,
|
|
250
|
-
G as shimProviderCallsRequest,
|
|
251
|
-
w as shimProviderTxRequest
|
|
51
|
+
_ as __require
|
|
252
52
|
};
|
|
@@ -1,58 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { __exports as n } from "./index.native37.js";
|
|
2
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
3
|
+
var d;
|
|
4
|
+
function q() {
|
|
5
|
+
return d ? n : (d = 1, n.read = function(s, a, N, w, M) {
|
|
6
|
+
var t, r, h = M * 8 - w - 1, e = (1 << h) - 1, f = e >> 1, i = -7, o = N ? M - 1 : 0, x = N ? -1 : 1, p = s[a + o];
|
|
7
|
+
for (o += x, t = p & (1 << -i) - 1, p >>= -i, i += h; i > 0; t = t * 256 + s[a + o], o += x, i -= 8)
|
|
8
|
+
;
|
|
9
|
+
for (r = t & (1 << -i) - 1, t >>= -i, i += w; i > 0; r = r * 256 + s[a + o], o += x, i -= 8)
|
|
10
|
+
;
|
|
11
|
+
if (t === 0)
|
|
12
|
+
t = 1 - f;
|
|
13
|
+
else {
|
|
14
|
+
if (t === e)
|
|
15
|
+
return r ? NaN : (p ? -1 : 1) * (1 / 0);
|
|
16
|
+
r = r + Math.pow(2, w), t = t - f;
|
|
12
17
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
disputeGameFactory: {
|
|
24
|
-
[e]: {
|
|
25
|
-
address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
l2OutputOracle: {
|
|
29
|
-
[e]: {
|
|
30
|
-
address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
portal: {
|
|
34
|
-
[e]: {
|
|
35
|
-
address: "0x49f53e41452c74589e85ca1677426ba426459e85",
|
|
36
|
-
blockCreated: 4446677
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
l1StandardBridge: {
|
|
40
|
-
[e]: {
|
|
41
|
-
address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120",
|
|
42
|
-
blockCreated: 4446677
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
multicall3: {
|
|
46
|
-
address: "0xca11bde05977b3631167028862be2a173976ca11",
|
|
47
|
-
blockCreated: 1059647
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
testnet: !0,
|
|
51
|
-
sourceId: e
|
|
52
|
-
});
|
|
53
|
-
({
|
|
54
|
-
...r
|
|
55
|
-
});
|
|
18
|
+
return (p ? -1 : 1) * r * Math.pow(2, t - w);
|
|
19
|
+
}, n.write = function(s, a, N, w, M, t) {
|
|
20
|
+
var r, h, e, f = t * 8 - M - 1, i = (1 << f) - 1, o = i >> 1, x = M === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0, p = w ? 0 : t - 1, c = w ? 1 : -1, I = a < 0 || a === 0 && 1 / a < 0 ? 1 : 0;
|
|
21
|
+
for (a = Math.abs(a), isNaN(a) || a === 1 / 0 ? (h = isNaN(a) ? 1 : 0, r = i) : (r = Math.floor(Math.log(a) / Math.LN2), a * (e = Math.pow(2, -r)) < 1 && (r--, e *= 2), r + o >= 1 ? a += x / e : a += x * Math.pow(2, 1 - o), a * e >= 2 && (r++, e /= 2), r + o >= i ? (h = 0, r = i) : r + o >= 1 ? (h = (a * e - 1) * Math.pow(2, M), r = r + o) : (h = a * Math.pow(2, o - 1) * Math.pow(2, M), r = 0)); M >= 8; s[N + p] = h & 255, p += c, h /= 256, M -= 8)
|
|
22
|
+
;
|
|
23
|
+
for (r = r << M | h, f += M; f > 0; s[N + p] = r & 255, p += c, r /= 256, f -= 8)
|
|
24
|
+
;
|
|
25
|
+
s[N + p - c] |= I * 128;
|
|
26
|
+
}, n);
|
|
27
|
+
}
|
|
56
28
|
export {
|
|
57
|
-
|
|
29
|
+
q as __require
|
|
58
30
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Provider as h } from "ox";
|
|
2
2
|
import { http as m } from "viem";
|
|
3
3
|
import { createStore as p } from "zustand";
|
|
4
|
-
import { subscribeWithSelector as g, persist as f, createJSONStorage as S } from "./index.
|
|
4
|
+
import { subscribeWithSelector as g, persist as f, createJSONStorage as S } from "./index.native25.js";
|
|
5
5
|
import { validateRequest as I, EIP1193ProviderError as w, STANDARD_ERROR_CODES as C } from "./index.native9.js";
|
|
6
|
-
import { EventEmitter as b } from "./index.
|
|
6
|
+
import { EventEmitter as b } from "./index.native26.js";
|
|
7
7
|
import { getPlatformStorage as _ } from "./index.native5.js";
|
|
8
8
|
import "@coinbase/cdp-api-client";
|
|
9
|
-
import { handleGetCapabilities as A, handleGetCallsStatus as v, handleSendCalls as D, handleChainId as P, handleSignTypedData as E, handleEthSign as R, handleSwitchEthereumChain as y, handleDisconnect as T, handleSendTransaction as q, handlePersonalSign as N, handleRequestAccounts as O, handleAccounts as G } from "./index.
|
|
9
|
+
import { handleGetCapabilities as A, handleGetCallsStatus as v, handleSendCalls as D, handleChainId as P, handleSignTypedData as E, handleEthSign as R, handleSwitchEthereumChain as y, handleDisconnect as T, handleSendTransaction as q, handlePersonalSign as N, handleRequestAccounts as O, handleAccounts as G } from "./index.native27.js";
|
|
10
10
|
import { onAuthStateChange as L } from "./index.native6.js";
|
|
11
|
-
import { baseSepolia as l } from "./index.
|
|
11
|
+
import { baseSepolia as l } from "./index.native28.js";
|
|
12
12
|
function M(r, n, s) {
|
|
13
13
|
n.subscribe(
|
|
14
14
|
(t) => t.chainId,
|
|
@@ -2,9 +2,9 @@ import "ox";
|
|
|
2
2
|
import "viem";
|
|
3
3
|
import "zustand";
|
|
4
4
|
import "@coinbase/cdp-api-client";
|
|
5
|
-
import { getCurrentUser as
|
|
5
|
+
import { getCurrentUser as h } from "./index.native6.js";
|
|
6
6
|
import "./index.native8.js";
|
|
7
|
-
const
|
|
7
|
+
const n = {
|
|
8
8
|
rpc: {
|
|
9
9
|
invalidInput: -32e3,
|
|
10
10
|
resourceNotFound: -32001,
|
|
@@ -38,8 +38,8 @@ class o extends Error {
|
|
|
38
38
|
* @param code - The error code from EIP1193ErrorCode enum.
|
|
39
39
|
* @param message - The error message.
|
|
40
40
|
*/
|
|
41
|
-
constructor(t,
|
|
42
|
-
super(
|
|
41
|
+
constructor(t, r) {
|
|
42
|
+
super(r), this.code = t;
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
class c extends Error {
|
|
@@ -53,11 +53,21 @@ class c extends Error {
|
|
|
53
53
|
* @param code - The error code from RPCErrorCode type.
|
|
54
54
|
* @param message - The error message.
|
|
55
55
|
*/
|
|
56
|
-
constructor(t,
|
|
57
|
-
super(
|
|
56
|
+
constructor(t, r) {
|
|
57
|
+
super(r), this.code = t;
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
|
-
|
|
60
|
+
class p extends Error {
|
|
61
|
+
/**
|
|
62
|
+
* Creates a new AccountTypeMismatchError.
|
|
63
|
+
*
|
|
64
|
+
* @param message - The error message.
|
|
65
|
+
*/
|
|
66
|
+
constructor(t) {
|
|
67
|
+
super(t);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
const l = /* @__PURE__ */ new Set([
|
|
61
71
|
"eth_accounts",
|
|
62
72
|
"eth_requestAccounts",
|
|
63
73
|
"personal_sign",
|
|
@@ -72,72 +82,80 @@ const p = /* @__PURE__ */ new Set([
|
|
|
72
82
|
"wallet_getCapabilities"
|
|
73
83
|
]);
|
|
74
84
|
function _(e, { chains: t }) {
|
|
75
|
-
const { method:
|
|
76
|
-
if (typeof
|
|
85
|
+
const { method: r, params: s } = e;
|
|
86
|
+
if (typeof r != "string" || r.length === 0)
|
|
77
87
|
throw new c(
|
|
78
|
-
|
|
88
|
+
n.rpc.invalidParams,
|
|
79
89
|
"'method' must be a non-empty string."
|
|
80
90
|
);
|
|
81
|
-
const
|
|
82
|
-
if (typeof
|
|
91
|
+
const a = (s ?? [])[0]?.chainId;
|
|
92
|
+
if (typeof a == "string" && !t.some((d) => d.id === Number.parseInt(a, 16)))
|
|
83
93
|
throw new o(
|
|
84
|
-
|
|
85
|
-
`Chain ${
|
|
94
|
+
n.provider.unsupportedChain,
|
|
95
|
+
`Chain ${a} not supported - make sure the provider is configured with the correct chains.`
|
|
86
96
|
);
|
|
87
|
-
if (
|
|
97
|
+
if (s !== void 0 && !Array.isArray(s))
|
|
88
98
|
throw new c(
|
|
89
|
-
|
|
99
|
+
n.rpc.invalidParams,
|
|
90
100
|
"'params' must be an array if provided."
|
|
91
101
|
);
|
|
92
|
-
if (!
|
|
102
|
+
if (!l.has(r))
|
|
93
103
|
throw new o(
|
|
94
|
-
|
|
104
|
+
n.provider.unsupportedMethod,
|
|
95
105
|
`Method ${e.method} not supported`
|
|
96
106
|
);
|
|
97
107
|
}
|
|
98
108
|
async function i() {
|
|
99
|
-
const e = await
|
|
109
|
+
const e = await h();
|
|
100
110
|
if (!e)
|
|
101
111
|
throw new o(
|
|
102
|
-
|
|
112
|
+
n.provider.unauthorized,
|
|
103
113
|
"User not connected"
|
|
104
114
|
);
|
|
105
115
|
return e;
|
|
106
116
|
}
|
|
107
|
-
async function
|
|
117
|
+
async function y(e) {
|
|
108
118
|
const t = await i();
|
|
109
|
-
if (!t.evmAccounts?.includes(e))
|
|
119
|
+
if (!t.evmAccounts?.includes(e) && !t.evmSmartAccounts?.includes(e))
|
|
110
120
|
throw new o(
|
|
111
|
-
|
|
121
|
+
n.provider.unauthorized,
|
|
112
122
|
"Address not owned by user"
|
|
113
123
|
);
|
|
114
124
|
return t;
|
|
115
125
|
}
|
|
116
|
-
async function
|
|
126
|
+
async function u() {
|
|
117
127
|
const e = await i();
|
|
118
128
|
if (!e.evmAccounts?.[0])
|
|
119
129
|
throw new o(
|
|
120
|
-
|
|
130
|
+
n.provider.unauthorized,
|
|
121
131
|
"No EVM accounts available"
|
|
122
132
|
);
|
|
123
133
|
return e;
|
|
124
134
|
}
|
|
125
|
-
async function
|
|
135
|
+
async function g() {
|
|
126
136
|
const e = await i();
|
|
127
137
|
if (!e.evmSmartAccounts?.[0])
|
|
128
138
|
throw new o(
|
|
129
|
-
|
|
139
|
+
n.provider.unauthorized,
|
|
130
140
|
"No EVM smart accounts available"
|
|
131
141
|
);
|
|
132
142
|
return e;
|
|
133
143
|
}
|
|
144
|
+
async function S({ errorMessage: e } = {}) {
|
|
145
|
+
const t = await u();
|
|
146
|
+
if (await u(), !!t.evmSmartAccounts?.length)
|
|
147
|
+
throw new p(e ?? "Method unsupported.");
|
|
148
|
+
return t;
|
|
149
|
+
}
|
|
134
150
|
export {
|
|
151
|
+
p as AccountTypeMismatchError,
|
|
135
152
|
o as EIP1193ProviderError,
|
|
136
153
|
c as RPCRequestError,
|
|
137
|
-
|
|
154
|
+
n as STANDARD_ERROR_CODES,
|
|
155
|
+
S as validateIsUsingEOA,
|
|
138
156
|
_ as validateRequest,
|
|
139
157
|
i as validateUserConnected,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
158
|
+
u as validateUserHasEvmAccount,
|
|
159
|
+
g as validateUserHasEvmSmartAccount,
|
|
160
|
+
y as validateUserOwnsAddress
|
|
143
161
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index.
|
|
1
|
+
import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index.native102.js";
|
|
2
2
|
import { createHasher as u, clean as C, rotr as i } from "./index.native91.js";
|
|
3
3
|
const B = /* @__PURE__ */ Uint32Array.from([
|
|
4
4
|
1116352408,
|