@coinbase/cdp-core 0.0.16 → 0.0.17
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/index17.js +158 -39
- package/dist/esm/index18.js +47 -16
- package/dist/esm/index19.js +152 -4
- package/dist/esm/index2.js +50 -51
- package/dist/esm/index20.js +56 -5
- package/dist/esm/index21.js +39 -158
- package/dist/esm/index22.js +16 -47
- package/dist/esm/index23.js +4 -152
- package/dist/esm/index24.js +5 -56
- package/dist/esm/index3.js +4 -4
- package/dist/esm/index6.js +34 -35
- package/dist/esm/index77.js +1 -1
- package/dist/esm/index80.js +10 -79
- package/dist/esm/index81.js +6 -6
- package/dist/esm/index86.js +79 -10
- package/dist/esm/index88.js +12 -20
- package/dist/esm/index89.js +35 -9
- package/dist/esm/index90.js +41 -19
- package/dist/esm/index91.js +20 -93
- package/dist/esm/index92.js +9 -20
- package/dist/esm/index93.js +16 -114
- package/dist/esm/index94.js +92 -11
- package/dist/esm/index95.js +20 -35
- package/dist/esm/index96.js +117 -41
- package/package.json +2 -2
package/dist/esm/index6.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { logOutEndUser as
|
|
2
|
-
import { SignJWT as
|
|
1
|
+
import { logOutEndUser as h, refreshAccessToken as l, registerTemporaryWalletSecret as c } from "@coinbase/cdp-api-client";
|
|
2
|
+
import { SignJWT as o } from "./index21.js";
|
|
3
3
|
import "viem";
|
|
4
|
-
import { toAuthState as
|
|
5
|
-
import { createKeyPair as
|
|
6
|
-
import { generateRandomId as
|
|
7
|
-
import { hash as
|
|
8
|
-
import { sortKeys as
|
|
9
|
-
const
|
|
10
|
-
class
|
|
4
|
+
import { toAuthState as u } from "./index7.js";
|
|
5
|
+
import { createKeyPair as S } from "./index22.js";
|
|
6
|
+
import { generateRandomId as i } from "./index23.js";
|
|
7
|
+
import { hash as w } from "./index24.js";
|
|
8
|
+
import { sortKeys as f } from "./index13.js";
|
|
9
|
+
const n = 60 * 1e3;
|
|
10
|
+
class C {
|
|
11
11
|
projectId;
|
|
12
12
|
authState = null;
|
|
13
13
|
walletSecret = null;
|
|
@@ -43,7 +43,7 @@ class P {
|
|
|
43
43
|
*/
|
|
44
44
|
async signOut() {
|
|
45
45
|
try {
|
|
46
|
-
await
|
|
46
|
+
await h(this.projectId);
|
|
47
47
|
} catch {
|
|
48
48
|
} finally {
|
|
49
49
|
await this.clearAuthState();
|
|
@@ -69,12 +69,12 @@ class P {
|
|
|
69
69
|
/**
|
|
70
70
|
* Gets the currently registered wallet secret ID. Rejects if the user is not signed in.
|
|
71
71
|
*
|
|
72
|
-
* @param authState - The auth state to use. If not provided, the current auth state will be used.
|
|
73
|
-
*
|
|
74
72
|
* @returns The wallet secret ID.
|
|
75
73
|
*/
|
|
76
|
-
async getWalletSecretId(
|
|
77
|
-
|
|
74
|
+
async getWalletSecretId() {
|
|
75
|
+
if (!await this.isSignedIn())
|
|
76
|
+
throw new Error("Cannot get wallet secret ID if the user is not signed in");
|
|
77
|
+
return this.shouldRefreshWalletSecret() && await this.refreshWalletSecret(), this.walletSecret.walletSecretId;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* Gets the X-Wallet-Auth header. Rejects if the user is not signed in.
|
|
@@ -87,15 +87,17 @@ class P {
|
|
|
87
87
|
* @returns The X-Wallet-Auth header.
|
|
88
88
|
*/
|
|
89
89
|
async getXWalletAuth(t) {
|
|
90
|
+
if (!await this.isSignedIn())
|
|
91
|
+
throw new Error("Cannot get X-Wallet-Auth header if the user is not signed in");
|
|
90
92
|
this.shouldRefreshWalletSecret() && await this.refreshWalletSecret();
|
|
91
93
|
const e = `${t.requestMethod} ${t.requestHost}${t.requestPath}`, a = Math.floor(Date.now() / 1e3), r = {
|
|
92
94
|
uris: [e]
|
|
93
95
|
};
|
|
94
96
|
if (t.requestData && Object.keys(t.requestData).length > 0) {
|
|
95
|
-
const s =
|
|
96
|
-
r.reqHash = await
|
|
97
|
+
const s = f(t.requestData);
|
|
98
|
+
r.reqHash = await w(new TextEncoder().encode(JSON.stringify(s)));
|
|
97
99
|
}
|
|
98
|
-
return await new
|
|
100
|
+
return await new o(r).setProtectedHeader({ alg: "ES256", typ: "JWT" }).setIssuedAt(a).setNotBefore(a).setJti(await i()).sign(this.walletSecret.keyPair.privateKey);
|
|
99
101
|
}
|
|
100
102
|
/**
|
|
101
103
|
* Sets the authentication state.
|
|
@@ -138,7 +140,7 @@ class P {
|
|
|
138
140
|
* @returns True if the token should be refreshed, false otherwise.
|
|
139
141
|
*/
|
|
140
142
|
shouldRefreshToken() {
|
|
141
|
-
return !(this.authState && this.authState.expiresAt > Date.now() +
|
|
143
|
+
return !(this.authState && this.authState.expiresAt > Date.now() + n);
|
|
142
144
|
}
|
|
143
145
|
/**
|
|
144
146
|
* Refreshes the access token and transitions the auth state accordingly.
|
|
@@ -148,9 +150,9 @@ class P {
|
|
|
148
150
|
*/
|
|
149
151
|
async refreshAccessToken() {
|
|
150
152
|
try {
|
|
151
|
-
const t = await
|
|
153
|
+
const t = await l(this.projectId, {
|
|
152
154
|
grantType: "refresh_token"
|
|
153
|
-
}), e =
|
|
155
|
+
}), e = u(
|
|
154
156
|
t.accessToken,
|
|
155
157
|
t.validUntil,
|
|
156
158
|
t.endUser
|
|
@@ -166,30 +168,27 @@ class P {
|
|
|
166
168
|
* @returns True if the wallet secret should be refreshed, false otherwise.
|
|
167
169
|
*/
|
|
168
170
|
shouldRefreshWalletSecret() {
|
|
169
|
-
return !(this.walletSecret && this.walletSecret.expiresAt > Date.now() +
|
|
171
|
+
return !(this.walletSecret && this.walletSecret.expiresAt > Date.now() + n);
|
|
170
172
|
}
|
|
171
173
|
/**
|
|
172
|
-
* Refreshes the wallet secret.
|
|
174
|
+
* Refreshes the wallet secret. Assumes the user is signed in.
|
|
173
175
|
*
|
|
174
|
-
* @param authState - The auth state to use. If not provided, the current auth state will be used.
|
|
175
176
|
* @returns The wallet secret.
|
|
176
177
|
*/
|
|
177
|
-
async refreshWalletSecret(
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
const e = t ?? this.authState, a = this.walletSecret?.walletSecretId ?? await n(), r = this.walletSecret?.keyPair ?? await f(), s = e.expiresAt, l = new Date(s).toISOString();
|
|
181
|
-
this.walletSecret = { walletSecretId: a, keyPair: r, expiresAt: s };
|
|
178
|
+
async refreshWalletSecret() {
|
|
179
|
+
const t = this.walletSecret?.walletSecretId ?? await i(), e = this.walletSecret?.keyPair ?? await S(), a = this.authState.expiresAt, r = new Date(a).toISOString();
|
|
180
|
+
this.walletSecret = { walletSecretId: t, keyPair: e, expiresAt: a };
|
|
182
181
|
try {
|
|
183
|
-
await
|
|
184
|
-
walletSecretId:
|
|
185
|
-
publicKey:
|
|
186
|
-
validUntil:
|
|
182
|
+
await c(this.projectId, this.authState.user.userId, {
|
|
183
|
+
walletSecretId: t,
|
|
184
|
+
publicKey: e.publicKeyBase64,
|
|
185
|
+
validUntil: r
|
|
187
186
|
});
|
|
188
|
-
} catch (
|
|
189
|
-
throw this.walletSecret = null,
|
|
187
|
+
} catch (s) {
|
|
188
|
+
throw this.walletSecret = null, s;
|
|
190
189
|
}
|
|
191
190
|
}
|
|
192
191
|
}
|
|
193
192
|
export {
|
|
194
|
-
|
|
193
|
+
C as AuthManager
|
|
195
194
|
};
|
package/dist/esm/index77.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./
|
|
1
|
+
import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index86.js";
|
|
2
2
|
import { createHasher as u, clean as C, rotr as i } from "./index76.js";
|
|
3
3
|
const B = /* @__PURE__ */ Uint32Array.from([
|
|
4
4
|
1116352408,
|
package/dist/esm/index80.js
CHANGED
|
@@ -1,81 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
function _(o, t, s) {
|
|
12
|
-
return o & t ^ o & s ^ t & s;
|
|
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();
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
const B = /* @__PURE__ */ Uint32Array.from([
|
|
66
|
-
1779033703,
|
|
67
|
-
3144134277,
|
|
68
|
-
1013904242,
|
|
69
|
-
2773480762,
|
|
70
|
-
1359893119,
|
|
71
|
-
2600822924,
|
|
72
|
-
528734635,
|
|
73
|
-
1541459225
|
|
74
|
-
]);
|
|
1
|
+
import { contracts as o } from "./index88.js";
|
|
2
|
+
import { formatters as r } from "./index89.js";
|
|
3
|
+
import { serializers as t } from "./index90.js";
|
|
4
|
+
const e = {
|
|
5
|
+
blockTime: 2e3,
|
|
6
|
+
contracts: o,
|
|
7
|
+
formatters: r,
|
|
8
|
+
serializers: t
|
|
9
|
+
};
|
|
75
10
|
export {
|
|
76
|
-
|
|
77
|
-
m as HashMD,
|
|
78
|
-
_ as Maj,
|
|
79
|
-
B as SHA256_IV,
|
|
80
|
-
y as setBigUint64
|
|
11
|
+
e as chainConfig
|
|
81
12
|
};
|
package/dist/esm/index81.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { encode as d } from "./
|
|
2
|
-
import y from "./
|
|
3
|
-
import b from "./
|
|
1
|
+
import { encode as d } from "./index91.js";
|
|
2
|
+
import y from "./index92.js";
|
|
3
|
+
import b from "./index93.js";
|
|
4
4
|
import { JWSInvalid as r } from "./index71.js";
|
|
5
5
|
import { encoder as s, concat as u, decoder as h } from "./index82.js";
|
|
6
|
-
import g from "./
|
|
7
|
-
import H from "./
|
|
8
|
-
import P from "./
|
|
6
|
+
import g from "./index94.js";
|
|
7
|
+
import H from "./index95.js";
|
|
8
|
+
import P from "./index96.js";
|
|
9
9
|
class x {
|
|
10
10
|
#r;
|
|
11
11
|
#e;
|
package/dist/esm/index86.js
CHANGED
|
@@ -1,12 +1,81 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { Hash as g, createView as l, aexists as b, toBytes as a, abytes as d, aoutput as x, clean as w } from "./index76.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;
|
|
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();
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
const B = /* @__PURE__ */ Uint32Array.from([
|
|
66
|
+
1779033703,
|
|
67
|
+
3144134277,
|
|
68
|
+
1013904242,
|
|
69
|
+
2773480762,
|
|
70
|
+
1359893119,
|
|
71
|
+
2600822924,
|
|
72
|
+
528734635,
|
|
73
|
+
1541459225
|
|
74
|
+
]);
|
|
10
75
|
export {
|
|
11
|
-
|
|
76
|
+
U as Chi,
|
|
77
|
+
m as HashMD,
|
|
78
|
+
_ as Maj,
|
|
79
|
+
B as SHA256_IV,
|
|
80
|
+
y as setBigUint64
|
|
12
81
|
};
|
package/dist/esm/index88.js
CHANGED
|
@@ -1,23 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
return a(e);
|
|
12
|
-
} catch {
|
|
13
|
-
throw new TypeError("The input to be decoded is not correctly encoded.");
|
|
1
|
+
const s = {
|
|
2
|
+
gasPriceOracle: { address: "0x420000000000000000000000000000000000000F" },
|
|
3
|
+
l1Block: { address: "0x4200000000000000000000000000000000000015" },
|
|
4
|
+
l2CrossDomainMessenger: {
|
|
5
|
+
address: "0x4200000000000000000000000000000000000007"
|
|
6
|
+
},
|
|
7
|
+
l2Erc721Bridge: { address: "0x4200000000000000000000000000000000000014" },
|
|
8
|
+
l2StandardBridge: { address: "0x4200000000000000000000000000000000000010" },
|
|
9
|
+
l2ToL1MessagePasser: {
|
|
10
|
+
address: "0x4200000000000000000000000000000000000016"
|
|
14
11
|
}
|
|
15
|
-
}
|
|
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
|
-
}
|
|
12
|
+
};
|
|
20
13
|
export {
|
|
21
|
-
|
|
22
|
-
p as encode
|
|
14
|
+
s as contracts
|
|
23
15
|
};
|
package/dist/esm/index89.js
CHANGED
|
@@ -1,12 +1,38 @@
|
|
|
1
|
-
import n from "./
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import { hexToBigInt as n } from "./index43.js";
|
|
2
|
+
import { defineBlock as r } from "./index40.js";
|
|
3
|
+
import { defineTransaction as s, formatTransaction as m } from "./index42.js";
|
|
4
|
+
import { defineTransactionReceipt as l } from "./index45.js";
|
|
5
|
+
const p = {
|
|
6
|
+
block: /* @__PURE__ */ r({
|
|
7
|
+
format(e) {
|
|
8
|
+
return {
|
|
9
|
+
transactions: e.transactions?.map((t) => {
|
|
10
|
+
if (typeof t == "string")
|
|
11
|
+
return t;
|
|
12
|
+
const i = m(t);
|
|
13
|
+
return i.typeHex === "0x7e" && (i.isSystemTx = t.isSystemTx, i.mint = t.mint ? n(t.mint) : void 0, i.sourceHash = t.sourceHash, i.type = "deposit"), i;
|
|
14
|
+
}),
|
|
15
|
+
stateRoot: e.stateRoot
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}),
|
|
19
|
+
transaction: /* @__PURE__ */ s({
|
|
20
|
+
format(e) {
|
|
21
|
+
const o = {};
|
|
22
|
+
return e.type === "0x7e" && (o.isSystemTx = e.isSystemTx, o.mint = e.mint ? n(e.mint) : void 0, o.sourceHash = e.sourceHash, o.type = "deposit"), o;
|
|
23
|
+
}
|
|
24
|
+
}),
|
|
25
|
+
transactionReceipt: /* @__PURE__ */ l({
|
|
26
|
+
format(e) {
|
|
27
|
+
return {
|
|
28
|
+
l1GasPrice: e.l1GasPrice ? n(e.l1GasPrice) : null,
|
|
29
|
+
l1GasUsed: e.l1GasUsed ? n(e.l1GasUsed) : null,
|
|
30
|
+
l1Fee: e.l1Fee ? n(e.l1Fee) : null,
|
|
31
|
+
l1FeeScalar: e.l1FeeScalar ? Number(e.l1FeeScalar) : null
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
})
|
|
9
35
|
};
|
|
10
36
|
export {
|
|
11
|
-
|
|
37
|
+
p as formatters
|
|
12
38
|
};
|
package/dist/esm/index90.js
CHANGED
|
@@ -1,22 +1,44 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
for (const n of r) {
|
|
13
|
-
if (e.has(n))
|
|
14
|
-
return !1;
|
|
15
|
-
e.add(n);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
return !0;
|
|
1
|
+
import { InvalidAddressError as a } from "./index58.js";
|
|
2
|
+
import { isAddress as f } from "./index32.js";
|
|
3
|
+
import { concatHex as p } from "./index33.js";
|
|
4
|
+
import { toHex as i } from "./index27.js";
|
|
5
|
+
import { toRlp as x } from "./index46.js";
|
|
6
|
+
import { serializeTransaction as l } from "./index15.js";
|
|
7
|
+
function T(r, e) {
|
|
8
|
+
return h(r) ? z(r) : l(r, e);
|
|
9
|
+
}
|
|
10
|
+
const E = {
|
|
11
|
+
transaction: T
|
|
19
12
|
};
|
|
13
|
+
function z(r) {
|
|
14
|
+
w(r);
|
|
15
|
+
const { sourceHash: e, data: o, from: m, gas: t, isSystemTx: u, mint: s, to: c, value: n } = r, d = [
|
|
16
|
+
e,
|
|
17
|
+
m,
|
|
18
|
+
c ?? "0x",
|
|
19
|
+
s ? i(s) : "0x",
|
|
20
|
+
n ? i(n) : "0x",
|
|
21
|
+
t ? i(t) : "0x",
|
|
22
|
+
u ? "0x1" : "0x",
|
|
23
|
+
o ?? "0x"
|
|
24
|
+
];
|
|
25
|
+
return p([
|
|
26
|
+
"0x7e",
|
|
27
|
+
x(d)
|
|
28
|
+
]);
|
|
29
|
+
}
|
|
30
|
+
function h(r) {
|
|
31
|
+
return r.type === "deposit" || typeof r.sourceHash < "u";
|
|
32
|
+
}
|
|
33
|
+
function w(r) {
|
|
34
|
+
const { from: e, to: o } = r;
|
|
35
|
+
if (e && !f(e))
|
|
36
|
+
throw new a({ address: e });
|
|
37
|
+
if (o && !f(o))
|
|
38
|
+
throw new a({ address: o });
|
|
39
|
+
}
|
|
20
40
|
export {
|
|
21
|
-
|
|
41
|
+
w as assertTransactionDeposit,
|
|
42
|
+
T as serializeTransaction,
|
|
43
|
+
E as serializers
|
|
22
44
|
};
|
package/dist/esm/index91.js
CHANGED
|
@@ -1,96 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import c from "./
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
i = "enc";
|
|
15
|
-
break;
|
|
16
|
-
}
|
|
17
|
-
if (e.use !== i)
|
|
18
|
-
throw new TypeError(`Invalid key for this operation, its "use" must be "${i}" when present`);
|
|
1
|
+
import { encoder as t, decoder as o } from "./index82.js";
|
|
2
|
+
import { encodeBase64 as c, decodeBase64 as a } from "./index97.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.");
|
|
19
14
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
case t === "sign":
|
|
26
|
-
case r === "dir":
|
|
27
|
-
case r.includes("CBC-HS"):
|
|
28
|
-
i = t;
|
|
29
|
-
break;
|
|
30
|
-
case r.startsWith("PBES2"):
|
|
31
|
-
i = "deriveBits";
|
|
32
|
-
break;
|
|
33
|
-
case /^A\d{3}(?:GCM)?(?:KW)?$/.test(r):
|
|
34
|
-
!r.includes("GCM") && r.endsWith("KW") ? i = "unwrapKey" : i = t;
|
|
35
|
-
break;
|
|
36
|
-
case t === "encrypt":
|
|
37
|
-
i = "wrapKey";
|
|
38
|
-
break;
|
|
39
|
-
case t === "decrypt":
|
|
40
|
-
i = r.startsWith("RSA") ? "unwrapKey" : "deriveBits";
|
|
41
|
-
break;
|
|
42
|
-
}
|
|
43
|
-
if (i && e.key_ops?.includes?.(i) === !1)
|
|
44
|
-
throw new TypeError(`Invalid key for this operation, its "key_ops" must include "${i}" when present`);
|
|
45
|
-
}
|
|
46
|
-
return !0;
|
|
47
|
-
}, h = (r, e, t) => {
|
|
48
|
-
if (!(e instanceof Uint8Array)) {
|
|
49
|
-
if (p(e)) {
|
|
50
|
-
if (a(e) && o(r, e, t))
|
|
51
|
-
return;
|
|
52
|
-
throw new TypeError('JSON Web Key for symmetric algorithms must have JWK "kty" (Key Type) equal to "oct" and the JWK "k" (Key Value) present');
|
|
53
|
-
}
|
|
54
|
-
if (!c(e))
|
|
55
|
-
throw new TypeError(n(r, e, "CryptoKey", "KeyObject", "JSON Web Key", "Uint8Array"));
|
|
56
|
-
if (e.type !== "secret")
|
|
57
|
-
throw new TypeError(`${s(e)} instances for symmetric algorithms must be of type "secret"`);
|
|
58
|
-
}
|
|
59
|
-
}, m = (r, e, t) => {
|
|
60
|
-
if (p(e))
|
|
61
|
-
switch (t) {
|
|
62
|
-
case "decrypt":
|
|
63
|
-
case "sign":
|
|
64
|
-
if (f(e) && o(r, e, t))
|
|
65
|
-
return;
|
|
66
|
-
throw new TypeError("JSON Web Key for this operation be a private JWK");
|
|
67
|
-
case "encrypt":
|
|
68
|
-
case "verify":
|
|
69
|
-
if (y(e) && o(r, e, t))
|
|
70
|
-
return;
|
|
71
|
-
throw new TypeError("JSON Web Key for this operation be a public JWK");
|
|
72
|
-
}
|
|
73
|
-
if (!c(e))
|
|
74
|
-
throw new TypeError(n(r, e, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
75
|
-
if (e.type === "secret")
|
|
76
|
-
throw new TypeError(`${s(e)} instances for asymmetric algorithms must not be of type "secret"`);
|
|
77
|
-
if (e.type === "public")
|
|
78
|
-
switch (t) {
|
|
79
|
-
case "sign":
|
|
80
|
-
throw new TypeError(`${s(e)} instances for asymmetric algorithm signing must be of type "private"`);
|
|
81
|
-
case "decrypt":
|
|
82
|
-
throw new TypeError(`${s(e)} instances for asymmetric algorithm decryption must be of type "private"`);
|
|
83
|
-
}
|
|
84
|
-
if (e.type === "private")
|
|
85
|
-
switch (t) {
|
|
86
|
-
case "verify":
|
|
87
|
-
throw new TypeError(`${s(e)} instances for asymmetric algorithm verifying must be of type "public"`);
|
|
88
|
-
case "encrypt":
|
|
89
|
-
throw new TypeError(`${s(e)} instances for asymmetric algorithm encryption must be of type "public"`);
|
|
90
|
-
}
|
|
91
|
-
}, d = (r, e, t) => {
|
|
92
|
-
r.startsWith("HS") || r === "dir" || r.startsWith("PBES2") || /^A(?:128|192|256)(?:GCM)?(?:KW)?$/.test(r) || /^A(?:128|192|256)CBC-HS(?:256|384|512)$/.test(r) ? h(r, e, t) : m(r, e, t);
|
|
93
|
-
};
|
|
15
|
+
}
|
|
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
|
+
}
|
|
94
20
|
export {
|
|
95
|
-
|
|
21
|
+
i as decode,
|
|
22
|
+
p as encode
|
|
96
23
|
};
|
package/dist/esm/index92.js
CHANGED
|
@@ -1,23 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
let t;
|
|
10
|
-
a !== void 0 ? t = new Map([...Object.entries(a), ...r.entries()]) : t = r;
|
|
11
|
-
for (const i of e.crit) {
|
|
12
|
-
if (!t.has(i))
|
|
13
|
-
throw new f(`Extension Header Parameter "${i}" is not recognized`);
|
|
14
|
-
if (s[i] === void 0)
|
|
15
|
-
throw new n(`Extension Header Parameter "${i}" is missing`);
|
|
16
|
-
if (t.get(i) && e[i] === void 0)
|
|
17
|
-
throw new n(`Extension Header Parameter "${i}" MUST be integrity protected`);
|
|
18
|
-
}
|
|
19
|
-
return new Set(e.crit);
|
|
1
|
+
import n from "./index98.js";
|
|
2
|
+
import s from "./index99.js";
|
|
3
|
+
import a from "./index100.js";
|
|
4
|
+
const y = async (t, o, e) => {
|
|
5
|
+
const r = await a(t, o, "sign");
|
|
6
|
+
s(t, r);
|
|
7
|
+
const i = await crypto.subtle.sign(n(t, r.algorithm), r, e);
|
|
8
|
+
return new Uint8Array(i);
|
|
20
9
|
};
|
|
21
10
|
export {
|
|
22
|
-
|
|
11
|
+
y as default
|
|
23
12
|
};
|