@coinbase/cdp-core 0.0.38 → 0.0.39
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.native100.js +115 -18
- package/dist/esm/index.native101.js +9 -117
- package/dist/esm/index.native104.js +18 -13
- package/dist/esm/index.native105.js +27 -35
- package/dist/esm/index.native106.js +7 -41
- package/dist/esm/index.native107.js +11 -18
- package/dist/esm/index.native108.js +13 -28
- package/dist/esm/index.native109.js +10 -8
- package/dist/esm/index.native110.js +17 -11
- package/dist/esm/index.native111.js +80 -12
- package/dist/esm/index.native112.js +13 -10
- package/dist/esm/index.native113.js +36 -17
- package/dist/esm/index.native114.js +40 -79
- package/dist/esm/index.native32.js +1 -1
- package/dist/esm/index.native83.js +6 -6
- package/dist/esm/index.native95.js +21 -10
- package/dist/esm/index.native96.js +10 -21
- package/dist/esm/index.native97.js +19 -9
- package/dist/esm/index.native98.js +89 -15
- package/dist/esm/index.native99.js +19 -92
- package/dist/esm/index.web100.js +73 -112
- package/dist/esm/index.web12.js +1 -1
- package/dist/esm/index.web24.js +940 -149
- package/dist/esm/index.web25.js +2 -48
- package/dist/esm/index.web26.js +43 -243
- package/dist/esm/index.web27.js +27 -55
- package/dist/esm/index.web28.js +149 -940
- package/dist/esm/index.web29.js +48 -2
- package/dist/esm/index.web30.js +243 -43
- package/dist/esm/index.web31.js +55 -27
- package/dist/esm/index.web59.js +1 -1
- package/dist/esm/index.web60.js +1 -1
- package/dist/esm/index.web7.js +4 -4
- package/dist/esm/index.web82.js +6 -6
- package/dist/esm/index.web87.js +21 -2
- package/dist/esm/index.web88.js +2 -21
- 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.native100.js +115 -18
- package/dist/native/index.native101.js +9 -117
- package/dist/native/index.native104.js +18 -13
- package/dist/native/index.native105.js +27 -35
- package/dist/native/index.native106.js +7 -41
- package/dist/native/index.native107.js +11 -18
- package/dist/native/index.native108.js +13 -28
- package/dist/native/index.native109.js +10 -8
- package/dist/native/index.native110.js +17 -11
- package/dist/native/index.native111.js +80 -12
- package/dist/native/index.native112.js +13 -10
- package/dist/native/index.native113.js +36 -17
- package/dist/native/index.native114.js +40 -79
- package/dist/native/index.native32.js +1 -1
- package/dist/native/index.native83.js +6 -6
- package/dist/native/index.native95.js +21 -10
- package/dist/native/index.native96.js +10 -21
- package/dist/native/index.native97.js +19 -9
- package/dist/native/index.native98.js +89 -15
- package/dist/native/index.native99.js +19 -92
- package/dist/web/index.web100.js +73 -112
- package/dist/web/index.web12.js +1 -1
- package/dist/web/index.web24.js +940 -149
- package/dist/web/index.web25.js +2 -48
- package/dist/web/index.web26.js +43 -243
- package/dist/web/index.web27.js +27 -55
- package/dist/web/index.web28.js +149 -940
- package/dist/web/index.web29.js +48 -2
- package/dist/web/index.web30.js +243 -43
- package/dist/web/index.web31.js +55 -27
- package/dist/web/index.web59.js +1 -1
- package/dist/web/index.web60.js +1 -1
- package/dist/web/index.web7.js +4 -4
- package/dist/web/index.web82.js +6 -6
- package/dist/web/index.web87.js +21 -2
- package/dist/web/index.web88.js +2 -21
- 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/package.json +2 -2
package/dist/esm/index.web29.js
CHANGED
|
@@ -1,4 +1,50 @@
|
|
|
1
|
-
|
|
1
|
+
class n {
|
|
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
|
+
}
|
|
2
48
|
export {
|
|
3
|
-
|
|
49
|
+
n as EventEmitter
|
|
4
50
|
};
|
package/dist/esm/index.web30.js
CHANGED
|
@@ -1,52 +1,252 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
import { Hex as P } from "ox";
|
|
2
|
+
import { toHex as f, createWalletClient as A } from "viem";
|
|
3
|
+
import { getUserOperation as T, sendUserOperation as R, signEvmTypedData as U, signEvmHash as x, getCurrentUser as v, signOut as O, sendEvmTransaction as b, signEvmTransaction as D, signEvmMessage as H } from "./index.web5.js";
|
|
4
|
+
import "@coinbase/cdp-api-client";
|
|
5
|
+
import "./index.web7.js";
|
|
6
|
+
import { validateUserConnected as g, RPCRequestError as i, STANDARD_ERROR_CODES as s, validateUserHasEvmSmartAccount as S, validateUserOwnsAddress as l, EIP1193ProviderError as p, validateUserHasEvmAccount as F } from "./index.web8.js";
|
|
7
|
+
import "zustand";
|
|
8
|
+
import { userOperationChainIdToNameMapping as m, isChainIdSupportedForCDPUserOps as I, isChainIdSupportedForCDPSends as N, sendTransactionChainIdToNameMapping as j, userOperationNameToChainIdMapping as q } from "./index.web17.js";
|
|
9
|
+
function w(e) {
|
|
10
|
+
return {
|
|
11
|
+
to: e.to,
|
|
12
|
+
data: e.data,
|
|
13
|
+
value: e.value ? BigInt(e.value) : void 0,
|
|
14
|
+
nonce: e.nonce ? Number(e.nonce) : void 0,
|
|
15
|
+
gas: e.gas ? BigInt(e.gas) : void 0,
|
|
16
|
+
maxFeePerGas: e.maxFeePerGas ? BigInt(e.maxFeePerGas) : void 0,
|
|
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;
|
|
21
46
|
}
|
|
22
|
-
|
|
23
|
-
|
|
47
|
+
}
|
|
48
|
+
async function Q() {
|
|
49
|
+
return (await v())?.evmAccounts || [];
|
|
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
|
+
);
|
|
24
71
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
72
|
+
}
|
|
73
|
+
async function Z(e) {
|
|
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
|
+
);
|
|
30
86
|
}
|
|
31
|
-
|
|
32
|
-
|
|
87
|
+
}
|
|
88
|
+
async function ee(e, t, n) {
|
|
89
|
+
const [a] = e;
|
|
90
|
+
if (!a || typeof a != "object")
|
|
91
|
+
throw new i(
|
|
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
|
+
);
|
|
33
159
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
160
|
+
}
|
|
161
|
+
async function ae(e) {
|
|
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
|
+
);
|
|
38
194
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
)
|
|
195
|
+
}
|
|
196
|
+
async function oe(e, t) {
|
|
197
|
+
const n = e[0], o = (await S()).evmSmartAccounts?.[0], c = t.getState().chainId;
|
|
198
|
+
if (!o)
|
|
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
|
+
);
|
|
47
220
|
}
|
|
48
|
-
|
|
221
|
+
}
|
|
222
|
+
async function ie() {
|
|
223
|
+
const e = await g();
|
|
224
|
+
if (!e)
|
|
225
|
+
throw new i(s.rpc.invalidParams, "User is not connected");
|
|
226
|
+
return !e.evmSmartAccounts?.length ? {} : Object.keys(m).reduce(
|
|
227
|
+
(a, o) => {
|
|
228
|
+
const d = f(Number(o));
|
|
229
|
+
return a[d] = {
|
|
230
|
+
atomic: { status: "supported" },
|
|
231
|
+
paymasterService: { supported: !0 }
|
|
232
|
+
}, a;
|
|
233
|
+
},
|
|
234
|
+
{}
|
|
235
|
+
);
|
|
49
236
|
}
|
|
50
237
|
export {
|
|
51
|
-
|
|
238
|
+
Q as handleAccounts,
|
|
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
|
|
52
252
|
};
|
package/dist/esm/index.web31.js
CHANGED
|
@@ -1,30 +1,58 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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;
|
|
1
|
+
import { chainConfig as a } from "./index.web101.js";
|
|
2
|
+
import { defineChain as t } from "./index.web37.js";
|
|
3
|
+
const e = 11155111, r = /* @__PURE__ */ t({
|
|
4
|
+
...a,
|
|
5
|
+
id: 84532,
|
|
6
|
+
network: "base-sepolia",
|
|
7
|
+
name: "Base Sepolia",
|
|
8
|
+
nativeCurrency: { name: "Sepolia Ether", symbol: "ETH", decimals: 18 },
|
|
9
|
+
rpcUrls: {
|
|
10
|
+
default: {
|
|
11
|
+
http: ["https://sepolia.base.org"]
|
|
17
12
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
13
|
+
},
|
|
14
|
+
blockExplorers: {
|
|
15
|
+
default: {
|
|
16
|
+
name: "Basescan",
|
|
17
|
+
url: "https://sepolia.basescan.org",
|
|
18
|
+
apiUrl: "https://api-sepolia.basescan.org/api"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
contracts: {
|
|
22
|
+
...a.contracts,
|
|
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
|
+
});
|
|
28
56
|
export {
|
|
29
|
-
|
|
57
|
+
r as baseSepolia
|
|
30
58
|
};
|
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.web87.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
3
|
import { create 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.web28.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.web29.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.web30.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.web31.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.web94.js";
|
|
2
|
+
import y from "./index.web95.js";
|
|
3
|
+
import b from "./index.web96.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.web97.js";
|
|
7
|
+
import H from "./index.web98.js";
|
|
8
|
+
import P from "./index.web99.js";
|
|
9
9
|
class x {
|
|
10
10
|
#r;
|
|
11
11
|
#e;
|
package/dist/esm/index.web87.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.web88.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.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.web100.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,81 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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();
|
|
1
|
+
import { encoder as t, decoder as o } from "./index.web83.js";
|
|
2
|
+
import { encodeBase64 as c, decodeBase64 as a } from "./index.web103.js";
|
|
3
|
+
function i(r) {
|
|
4
|
+
if (Uint8Array.fromBase64)
|
|
5
|
+
return Uint8Array.fromBase64(typeof r == "string" ? r : o.decode(r), {
|
|
6
|
+
alphabet: "base64url"
|
|
7
|
+
});
|
|
8
|
+
let e = r;
|
|
9
|
+
e instanceof Uint8Array && (e = o.decode(e)), e = e.replace(/-/g, "+").replace(/_/g, "/").replace(/\s/g, "");
|
|
10
|
+
try {
|
|
11
|
+
return a(e);
|
|
12
|
+
} catch {
|
|
13
|
+
throw new TypeError("The input to be decoded is not correctly encoded.");
|
|
63
14
|
}
|
|
64
15
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
2773480762,
|
|
70
|
-
1359893119,
|
|
71
|
-
2600822924,
|
|
72
|
-
528734635,
|
|
73
|
-
1541459225
|
|
74
|
-
]);
|
|
16
|
+
function p(r) {
|
|
17
|
+
let e = r;
|
|
18
|
+
return typeof e == "string" && (e = t.encode(e)), Uint8Array.prototype.toBase64 ? e.toBase64({ alphabet: "base64url", omitPadding: !0 }) : c(e).replace(/=/g, "").replace(/\+/g, "-").replace(/\//g, "_");
|
|
19
|
+
}
|
|
75
20
|
export {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
_ as Maj,
|
|
79
|
-
B as SHA256_IV,
|
|
80
|
-
y as setBigUint64
|
|
21
|
+
i as decode,
|
|
22
|
+
p as encode
|
|
81
23
|
};
|