@coinbase/cdp-core 0.0.39 → 0.0.41
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 +79 -10
- package/dist/esm/index.native102.js +10 -79
- package/dist/esm/index.native32.js +1 -1
- package/dist/esm/index.native8.js +1 -1
- package/dist/esm/index.native92.js +1 -1
- package/dist/esm/index.web100.js +112 -73
- package/dist/esm/index.web12.js +1 -1
- package/dist/esm/index.web24.js +149 -940
- package/dist/esm/index.web25.js +48 -2
- package/dist/esm/index.web26.js +243 -43
- package/dist/esm/index.web27.js +55 -27
- package/dist/esm/index.web28.js +940 -149
- package/dist/esm/index.web29.js +2 -48
- package/dist/esm/index.web30.js +43 -243
- package/dist/esm/index.web31.js +27 -55
- package/dist/esm/index.web59.js +1 -1
- package/dist/esm/index.web60.js +1 -1
- package/dist/esm/index.web7.js +5 -5
- package/dist/esm/index.web82.js +6 -6
- package/dist/esm/index.web87.js +2 -21
- package/dist/esm/index.web88.js +21 -2
- package/dist/esm/index.web91.js +1 -1
- package/dist/esm/index.web94.js +77 -19
- package/dist/esm/index.web95.js +21 -10
- package/dist/esm/index.web96.js +9 -19
- package/dist/esm/index.web97.js +15 -89
- package/dist/esm/index.web98.js +92 -19
- package/dist/esm/index.web99.js +18 -115
- package/dist/native/index.native101.js +79 -10
- package/dist/native/index.native102.js +10 -79
- package/dist/native/index.native32.js +1 -1
- package/dist/native/index.native8.js +1 -1
- package/dist/native/index.native92.js +1 -1
- package/dist/web/index.web100.js +112 -73
- package/dist/web/index.web12.js +1 -1
- package/dist/web/index.web24.js +149 -940
- package/dist/web/index.web25.js +48 -2
- package/dist/web/index.web26.js +243 -43
- package/dist/web/index.web27.js +55 -27
- package/dist/web/index.web28.js +940 -149
- package/dist/web/index.web29.js +2 -48
- package/dist/web/index.web30.js +43 -243
- package/dist/web/index.web31.js +27 -55
- package/dist/web/index.web59.js +1 -1
- package/dist/web/index.web60.js +1 -1
- package/dist/web/index.web7.js +5 -5
- package/dist/web/index.web82.js +6 -6
- package/dist/web/index.web87.js +2 -21
- package/dist/web/index.web88.js +21 -2
- package/dist/web/index.web91.js +1 -1
- package/dist/web/index.web94.js +77 -19
- package/dist/web/index.web95.js +21 -10
- package/dist/web/index.web96.js +9 -19
- package/dist/web/index.web97.js +15 -89
- package/dist/web/index.web98.js +92 -19
- package/dist/web/index.web99.js +18 -115
- package/package.json +2 -2
package/dist/esm/index.web29.js
CHANGED
|
@@ -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
|
};
|
package/dist/esm/index.web30.js
CHANGED
|
@@ -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.web35.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
|
};
|
package/dist/esm/index.web31.js
CHANGED
|
@@ -1,58 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { __exports as n } from "./index.web36.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
|
};
|
package/dist/esm/index.web59.js
CHANGED
package/dist/esm/index.web60.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NegativeOffsetError as o, PositionOutOfBoundsError as e, RecursiveReadLimitExceededError as n } from "./index.
|
|
1
|
+
import { NegativeOffsetError as o, PositionOutOfBoundsError as e, RecursiveReadLimitExceededError as n } from "./index.web88.js";
|
|
2
2
|
const h = {
|
|
3
3
|
bytes: new Uint8Array(),
|
|
4
4
|
dataView: new DataView(new ArrayBuffer(0)),
|
package/dist/esm/index.web7.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Provider as h } from "ox";
|
|
2
2
|
import { http as m } from "viem";
|
|
3
|
-
import {
|
|
4
|
-
import { subscribeWithSelector as g, persist as f, createJSONStorage as S } from "./index.
|
|
3
|
+
import { createStore as p } from "zustand";
|
|
4
|
+
import { subscribeWithSelector as g, persist as f, createJSONStorage as S } from "./index.web24.js";
|
|
5
5
|
import { validateRequest as I, EIP1193ProviderError as w, STANDARD_ERROR_CODES as C } from "./index.web8.js";
|
|
6
|
-
import { EventEmitter as b } from "./index.
|
|
6
|
+
import { EventEmitter as b } from "./index.web25.js";
|
|
7
7
|
import { getPlatformStorage as _ } from "./index.web2.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.web26.js";
|
|
10
10
|
import { onAuthStateChange as L } from "./index.web5.js";
|
|
11
|
-
import { baseSepolia as l } from "./index.
|
|
11
|
+
import { baseSepolia as l } from "./index.web27.js";
|
|
12
12
|
function M(r, n, s) {
|
|
13
13
|
n.subscribe(
|
|
14
14
|
(t) => t.chainId,
|
package/dist/esm/index.web82.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { encode as d } from "./index.
|
|
2
|
-
import y from "./index.
|
|
3
|
-
import b from "./index.
|
|
1
|
+
import { encode as d } from "./index.web95.js";
|
|
2
|
+
import y from "./index.web96.js";
|
|
3
|
+
import b from "./index.web97.js";
|
|
4
4
|
import { JWSInvalid as r } from "./index.web33.js";
|
|
5
5
|
import { encoder as s, concat as u, decoder as h } from "./index.web83.js";
|
|
6
|
-
import g from "./index.
|
|
7
|
-
import H from "./index.
|
|
8
|
-
import P from "./index.
|
|
6
|
+
import g from "./index.web98.js";
|
|
7
|
+
import H from "./index.web99.js";
|
|
8
|
+
import P from "./index.web100.js";
|
|
9
9
|
class x {
|
|
10
10
|
#r;
|
|
11
11
|
#e;
|
package/dist/esm/index.web87.js
CHANGED
|
@@ -1,23 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
class i extends o {
|
|
3
|
-
constructor({ offset: e }) {
|
|
4
|
-
super(`Offset \`${e}\` cannot be negative.`, {
|
|
5
|
-
name: "NegativeOffsetError"
|
|
6
|
-
});
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
class n extends o {
|
|
10
|
-
constructor({ length: e, position: r }) {
|
|
11
|
-
super(`Position \`${r}\` is out of bounds (\`0 < position < ${e}\`).`, { name: "PositionOutOfBoundsError" });
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
class c extends o {
|
|
15
|
-
constructor({ count: e, limit: r }) {
|
|
16
|
-
super(`Recursive read limit of \`${r}\` exceeded (recursive read count: \`${e}\`).`, { name: "RecursiveReadLimitExceededError" });
|
|
17
|
-
}
|
|
18
|
-
}
|
|
1
|
+
const o = "2.33.0";
|
|
19
2
|
export {
|
|
20
|
-
|
|
21
|
-
n as PositionOutOfBoundsError,
|
|
22
|
-
c as RecursiveReadLimitExceededError
|
|
3
|
+
o as version
|
|
23
4
|
};
|
package/dist/esm/index.web88.js
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
import { BaseError as o } from "./index.web59.js";
|
|
2
|
+
class i extends o {
|
|
3
|
+
constructor({ offset: e }) {
|
|
4
|
+
super(`Offset \`${e}\` cannot be negative.`, {
|
|
5
|
+
name: "NegativeOffsetError"
|
|
6
|
+
});
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
class n extends o {
|
|
10
|
+
constructor({ length: e, position: r }) {
|
|
11
|
+
super(`Position \`${r}\` is out of bounds (\`0 < position < ${e}\`).`, { name: "PositionOutOfBoundsError" });
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
class c extends o {
|
|
15
|
+
constructor({ count: e, limit: r }) {
|
|
16
|
+
super(`Recursive read limit of \`${r}\` exceeded (recursive read count: \`${e}\`).`, { name: "RecursiveReadLimitExceededError" });
|
|
17
|
+
}
|
|
18
|
+
}
|
|
2
19
|
export {
|
|
3
|
-
|
|
20
|
+
i as NegativeOffsetError,
|
|
21
|
+
n as PositionOutOfBoundsError,
|
|
22
|
+
c as RecursiveReadLimitExceededError
|
|
4
23
|
};
|
package/dist/esm/index.web91.js
CHANGED
|
@@ -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.web94.js";
|
|
2
2
|
import { createHasher as u, clean as C, rotr as i } from "./index.web90.js";
|
|
3
3
|
const B = /* @__PURE__ */ Uint32Array.from([
|
|
4
4
|
1116352408,
|
package/dist/esm/index.web94.js
CHANGED
|
@@ -1,23 +1,81 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
throw new TypeError("The input to be decoded is not correctly encoded.");
|
|
14
|
-
}
|
|
1
|
+
import { Hash as g, createView as l, aexists as b, toBytes as a, abytes as d, aoutput as x, clean as w } from "./index.web90.js";
|
|
2
|
+
function y(o, t, s, n) {
|
|
3
|
+
if (typeof o.setBigUint64 == "function")
|
|
4
|
+
return o.setBigUint64(t, s, n);
|
|
5
|
+
const i = BigInt(32), h = BigInt(4294967295), e = Number(s >> i & h), r = Number(s & h), c = n ? 4 : 0, u = n ? 0 : 4;
|
|
6
|
+
o.setUint32(t + c, e, n), o.setUint32(t + u, r, n);
|
|
7
|
+
}
|
|
8
|
+
function U(o, t, s) {
|
|
9
|
+
return o & t ^ ~o & s;
|
|
10
|
+
}
|
|
11
|
+
function _(o, t, s) {
|
|
12
|
+
return o & t ^ o & s ^ t & s;
|
|
15
13
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
class m extends g {
|
|
15
|
+
constructor(t, s, n, i) {
|
|
16
|
+
super(), this.finished = !1, this.length = 0, this.pos = 0, this.destroyed = !1, this.blockLen = t, this.outputLen = s, this.padOffset = n, this.isLE = i, this.buffer = new Uint8Array(t), this.view = l(this.buffer);
|
|
17
|
+
}
|
|
18
|
+
update(t) {
|
|
19
|
+
b(this), t = a(t), d(t);
|
|
20
|
+
const { view: s, buffer: n, blockLen: i } = this, h = t.length;
|
|
21
|
+
for (let e = 0; e < h; ) {
|
|
22
|
+
const r = Math.min(i - this.pos, h - e);
|
|
23
|
+
if (r === i) {
|
|
24
|
+
const c = l(t);
|
|
25
|
+
for (; i <= h - e; e += i)
|
|
26
|
+
this.process(c, e);
|
|
27
|
+
continue;
|
|
28
|
+
}
|
|
29
|
+
n.set(t.subarray(e, e + r), this.pos), this.pos += r, e += r, this.pos === i && (this.process(s, 0), this.pos = 0);
|
|
30
|
+
}
|
|
31
|
+
return this.length += t.length, this.roundClean(), this;
|
|
32
|
+
}
|
|
33
|
+
digestInto(t) {
|
|
34
|
+
b(this), x(t, this), this.finished = !0;
|
|
35
|
+
const { buffer: s, view: n, blockLen: i, isLE: h } = this;
|
|
36
|
+
let { pos: e } = this;
|
|
37
|
+
s[e++] = 128, w(this.buffer.subarray(e)), this.padOffset > i - e && (this.process(n, 0), e = 0);
|
|
38
|
+
for (let f = e; f < i; f++)
|
|
39
|
+
s[f] = 0;
|
|
40
|
+
y(n, i - 8, BigInt(this.length * 8), h), this.process(n, 0);
|
|
41
|
+
const r = l(t), c = this.outputLen;
|
|
42
|
+
if (c % 4)
|
|
43
|
+
throw new Error("_sha2: outputLen should be aligned to 32bit");
|
|
44
|
+
const u = c / 4, p = this.get();
|
|
45
|
+
if (u > p.length)
|
|
46
|
+
throw new Error("_sha2: outputLen bigger than state");
|
|
47
|
+
for (let f = 0; f < u; f++)
|
|
48
|
+
r.setUint32(4 * f, p[f], h);
|
|
49
|
+
}
|
|
50
|
+
digest() {
|
|
51
|
+
const { buffer: t, outputLen: s } = this;
|
|
52
|
+
this.digestInto(t);
|
|
53
|
+
const n = t.slice(0, s);
|
|
54
|
+
return this.destroy(), n;
|
|
55
|
+
}
|
|
56
|
+
_cloneInto(t) {
|
|
57
|
+
t || (t = new this.constructor()), t.set(...this.get());
|
|
58
|
+
const { blockLen: s, buffer: n, length: i, finished: h, destroyed: e, pos: r } = this;
|
|
59
|
+
return t.destroyed = e, t.finished = h, t.length = i, t.pos = r, i % s && t.buffer.set(n), t;
|
|
60
|
+
}
|
|
61
|
+
clone() {
|
|
62
|
+
return this._cloneInto();
|
|
63
|
+
}
|
|
19
64
|
}
|
|
65
|
+
const B = /* @__PURE__ */ Uint32Array.from([
|
|
66
|
+
1779033703,
|
|
67
|
+
3144134277,
|
|
68
|
+
1013904242,
|
|
69
|
+
2773480762,
|
|
70
|
+
1359893119,
|
|
71
|
+
2600822924,
|
|
72
|
+
528734635,
|
|
73
|
+
1541459225
|
|
74
|
+
]);
|
|
20
75
|
export {
|
|
21
|
-
|
|
22
|
-
|
|
76
|
+
U as Chi,
|
|
77
|
+
m as HashMD,
|
|
78
|
+
_ as Maj,
|
|
79
|
+
B as SHA256_IV,
|
|
80
|
+
y as setBigUint64
|
|
23
81
|
};
|