@solana/transactions 2.0.0-experimental.0099b2a

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.
Files changed (42) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +334 -0
  3. package/dist/index.browser.cjs +1098 -0
  4. package/dist/index.browser.cjs.map +1 -0
  5. package/dist/index.browser.js +1080 -0
  6. package/dist/index.browser.js.map +1 -0
  7. package/dist/index.development.js +1778 -0
  8. package/dist/index.development.js.map +1 -0
  9. package/dist/index.native.js +1080 -0
  10. package/dist/index.native.js.map +1 -0
  11. package/dist/index.node.cjs +1098 -0
  12. package/dist/index.node.cjs.map +1 -0
  13. package/dist/index.node.js +1080 -0
  14. package/dist/index.node.js.map +1 -0
  15. package/dist/index.production.min.js +29 -0
  16. package/dist/types/accounts.d.ts +28 -0
  17. package/dist/types/blockhash.d.ts +18 -0
  18. package/dist/types/compile-address-table-lookups.d.ts +10 -0
  19. package/dist/types/compile-header.d.ts +9 -0
  20. package/dist/types/compile-instructions.d.ts +10 -0
  21. package/dist/types/compile-lifetime-token.d.ts +3 -0
  22. package/dist/types/compile-static-accounts.d.ts +4 -0
  23. package/dist/types/compile-transaction.d.ts +11 -0
  24. package/dist/types/create-transaction.d.ts +9 -0
  25. package/dist/types/decompile-transaction.d.ts +7 -0
  26. package/dist/types/durable-nonce.d.ts +35 -0
  27. package/dist/types/fee-payer.d.ts +9 -0
  28. package/dist/types/index.d.ts +10 -0
  29. package/dist/types/instructions.d.ts +5 -0
  30. package/dist/types/message.d.ts +30 -0
  31. package/dist/types/serializers/address-table-lookup.d.ts +8 -0
  32. package/dist/types/serializers/header.d.ts +8 -0
  33. package/dist/types/serializers/index.d.ts +2 -0
  34. package/dist/types/serializers/instruction.d.ts +8 -0
  35. package/dist/types/serializers/message.d.ts +6 -0
  36. package/dist/types/serializers/transaction-version.d.ts +6 -0
  37. package/dist/types/serializers/transaction.d.ts +9 -0
  38. package/dist/types/signatures.d.ts +20 -0
  39. package/dist/types/types.d.ts +26 -0
  40. package/dist/types/unsigned-transaction.d.ts +4 -0
  41. package/dist/types/wire-transaction.d.ts +6 -0
  42. package/package.json +103 -0
@@ -0,0 +1,1778 @@
1
+ this.globalThis = this.globalThis || {};
2
+ this.globalThis.solanaWeb3 = (function (exports) {
3
+ 'use strict';
4
+
5
+ // ../codecs-core/dist/index.browser.js
6
+ function assertByteArrayIsNotEmptyForCodec(codecDescription, bytes, offset = 0) {
7
+ if (bytes.length - offset <= 0) {
8
+ throw new Error(`Codec [${codecDescription}] cannot decode empty byte arrays.`);
9
+ }
10
+ }
11
+ function assertByteArrayHasEnoughBytesForCodec(codecDescription, expected, bytes, offset = 0) {
12
+ const bytesLength = bytes.length - offset;
13
+ if (bytesLength < expected) {
14
+ throw new Error(`Codec [${codecDescription}] expected ${expected} bytes, got ${bytesLength}.`);
15
+ }
16
+ }
17
+ var mergeBytes = (byteArrays) => {
18
+ const nonEmptyByteArrays = byteArrays.filter((arr) => arr.length);
19
+ if (nonEmptyByteArrays.length === 0) {
20
+ return byteArrays.length ? byteArrays[0] : new Uint8Array();
21
+ }
22
+ if (nonEmptyByteArrays.length === 1) {
23
+ return nonEmptyByteArrays[0];
24
+ }
25
+ const totalLength = nonEmptyByteArrays.reduce((total, arr) => total + arr.length, 0);
26
+ const result = new Uint8Array(totalLength);
27
+ let offset = 0;
28
+ nonEmptyByteArrays.forEach((arr) => {
29
+ result.set(arr, offset);
30
+ offset += arr.length;
31
+ });
32
+ return result;
33
+ };
34
+ var padBytes = (bytes, length) => {
35
+ if (bytes.length >= length)
36
+ return bytes;
37
+ const paddedBytes = new Uint8Array(length).fill(0);
38
+ paddedBytes.set(bytes);
39
+ return paddedBytes;
40
+ };
41
+ var fixBytes = (bytes, length) => padBytes(bytes.length <= length ? bytes : bytes.slice(0, length), length);
42
+ function combineCodec(encoder, decoder, description) {
43
+ if (encoder.fixedSize !== decoder.fixedSize) {
44
+ throw new Error(
45
+ `Encoder and decoder must have the same fixed size, got [${encoder.fixedSize}] and [${decoder.fixedSize}].`
46
+ );
47
+ }
48
+ if (encoder.maxSize !== decoder.maxSize) {
49
+ throw new Error(
50
+ `Encoder and decoder must have the same max size, got [${encoder.maxSize}] and [${decoder.maxSize}].`
51
+ );
52
+ }
53
+ if (description === void 0 && encoder.description !== decoder.description) {
54
+ throw new Error(
55
+ `Encoder and decoder must have the same description, got [${encoder.description}] and [${decoder.description}]. Pass a custom description as a third argument if you want to override the description and bypass this error.`
56
+ );
57
+ }
58
+ return {
59
+ decode: decoder.decode,
60
+ description: description ?? encoder.description,
61
+ encode: encoder.encode,
62
+ fixedSize: encoder.fixedSize,
63
+ maxSize: encoder.maxSize
64
+ };
65
+ }
66
+ function fixCodecHelper(data, fixedBytes, description) {
67
+ return {
68
+ description: description ?? `fixed(${fixedBytes}, ${data.description})`,
69
+ fixedSize: fixedBytes,
70
+ maxSize: fixedBytes
71
+ };
72
+ }
73
+ function fixEncoder(encoder, fixedBytes, description) {
74
+ return {
75
+ ...fixCodecHelper(encoder, fixedBytes, description),
76
+ encode: (value) => fixBytes(encoder.encode(value), fixedBytes)
77
+ };
78
+ }
79
+ function fixDecoder(decoder, fixedBytes, description) {
80
+ return {
81
+ ...fixCodecHelper(decoder, fixedBytes, description),
82
+ decode: (bytes, offset = 0) => {
83
+ assertByteArrayHasEnoughBytesForCodec("fixCodec", fixedBytes, bytes, offset);
84
+ if (offset > 0 || bytes.length > fixedBytes) {
85
+ bytes = bytes.slice(offset, offset + fixedBytes);
86
+ }
87
+ if (decoder.fixedSize !== null) {
88
+ bytes = fixBytes(bytes, decoder.fixedSize);
89
+ }
90
+ const [value] = decoder.decode(bytes, 0);
91
+ return [value, offset + fixedBytes];
92
+ }
93
+ };
94
+ }
95
+ function mapEncoder(encoder, unmap) {
96
+ return {
97
+ description: encoder.description,
98
+ encode: (value) => encoder.encode(unmap(value)),
99
+ fixedSize: encoder.fixedSize,
100
+ maxSize: encoder.maxSize
101
+ };
102
+ }
103
+ function mapDecoder(decoder, map) {
104
+ return {
105
+ decode: (bytes, offset = 0) => {
106
+ const [value, length] = decoder.decode(bytes, offset);
107
+ return [map(value, bytes, offset), length];
108
+ },
109
+ description: decoder.description,
110
+ fixedSize: decoder.fixedSize,
111
+ maxSize: decoder.maxSize
112
+ };
113
+ }
114
+
115
+ // ../codecs-numbers/dist/index.browser.js
116
+ function assertNumberIsBetweenForCodec(codecDescription, min, max, value) {
117
+ if (value < min || value > max) {
118
+ throw new Error(
119
+ `Codec [${codecDescription}] expected number to be in the range [${min}, ${max}], got ${value}.`
120
+ );
121
+ }
122
+ }
123
+ function sharedNumberFactory(input) {
124
+ let littleEndian;
125
+ let defaultDescription = input.name;
126
+ if (input.size > 1) {
127
+ littleEndian = !("endian" in input.options) || input.options.endian === 0;
128
+ defaultDescription += littleEndian ? "(le)" : "(be)";
129
+ }
130
+ return {
131
+ description: input.options.description ?? defaultDescription,
132
+ fixedSize: input.size,
133
+ littleEndian,
134
+ maxSize: input.size
135
+ };
136
+ }
137
+ function numberEncoderFactory(input) {
138
+ const codecData = sharedNumberFactory(input);
139
+ return {
140
+ description: codecData.description,
141
+ encode(value) {
142
+ if (input.range) {
143
+ assertNumberIsBetweenForCodec(input.name, input.range[0], input.range[1], value);
144
+ }
145
+ const arrayBuffer = new ArrayBuffer(input.size);
146
+ input.set(new DataView(arrayBuffer), value, codecData.littleEndian);
147
+ return new Uint8Array(arrayBuffer);
148
+ },
149
+ fixedSize: codecData.fixedSize,
150
+ maxSize: codecData.maxSize
151
+ };
152
+ }
153
+ function numberDecoderFactory(input) {
154
+ const codecData = sharedNumberFactory(input);
155
+ return {
156
+ decode(bytes, offset = 0) {
157
+ assertByteArrayIsNotEmptyForCodec(codecData.description, bytes, offset);
158
+ assertByteArrayHasEnoughBytesForCodec(codecData.description, input.size, bytes, offset);
159
+ const view = new DataView(toArrayBuffer(bytes, offset, input.size));
160
+ return [input.get(view, codecData.littleEndian), offset + input.size];
161
+ },
162
+ description: codecData.description,
163
+ fixedSize: codecData.fixedSize,
164
+ maxSize: codecData.maxSize
165
+ };
166
+ }
167
+ function toArrayBuffer(bytes, offset, length) {
168
+ const bytesOffset = bytes.byteOffset + (offset ?? 0);
169
+ const bytesLength = length ?? bytes.byteLength;
170
+ return bytes.buffer.slice(bytesOffset, bytesOffset + bytesLength);
171
+ }
172
+ var getShortU16Encoder = (options = {}) => ({
173
+ description: options.description ?? "shortU16",
174
+ encode: (value) => {
175
+ assertNumberIsBetweenForCodec("shortU16", 0, 65535, value);
176
+ const bytes = [0];
177
+ for (let ii = 0; ; ii += 1) {
178
+ const alignedValue = value >> ii * 7;
179
+ if (alignedValue === 0) {
180
+ break;
181
+ }
182
+ const nextSevenBits = 127 & alignedValue;
183
+ bytes[ii] = nextSevenBits;
184
+ if (ii > 0) {
185
+ bytes[ii - 1] |= 128;
186
+ }
187
+ }
188
+ return new Uint8Array(bytes);
189
+ },
190
+ fixedSize: null,
191
+ maxSize: 3
192
+ });
193
+ var getShortU16Decoder = (options = {}) => ({
194
+ decode: (bytes, offset = 0) => {
195
+ let value = 0;
196
+ let byteCount = 0;
197
+ while (++byteCount) {
198
+ const byteIndex = byteCount - 1;
199
+ const currentByte = bytes[offset + byteIndex];
200
+ const nextSevenBits = 127 & currentByte;
201
+ value |= nextSevenBits << byteIndex * 7;
202
+ if ((currentByte & 128) === 0) {
203
+ break;
204
+ }
205
+ }
206
+ return [value, offset + byteCount];
207
+ },
208
+ description: options.description ?? "shortU16",
209
+ fixedSize: null,
210
+ maxSize: 3
211
+ });
212
+ var getU32Encoder = (options = {}) => numberEncoderFactory({
213
+ name: "u32",
214
+ options,
215
+ range: [0, Number("0xffffffff")],
216
+ set: (view, value, le) => view.setUint32(0, value, le),
217
+ size: 4
218
+ });
219
+ var getU32Decoder = (options = {}) => numberDecoderFactory({
220
+ get: (view, le) => view.getUint32(0, le),
221
+ name: "u32",
222
+ options,
223
+ size: 4
224
+ });
225
+ var getU8Encoder = (options = {}) => numberEncoderFactory({
226
+ name: "u8",
227
+ options,
228
+ range: [0, Number("0xff")],
229
+ set: (view, value) => view.setUint8(0, value),
230
+ size: 1
231
+ });
232
+ var getU8Decoder = (options = {}) => numberDecoderFactory({
233
+ get: (view) => view.getUint8(0),
234
+ name: "u8",
235
+ options,
236
+ size: 1
237
+ });
238
+
239
+ // ../codecs-strings/dist/index.browser.js
240
+ function assertValidBaseString(alphabet4, testValue, givenValue = testValue) {
241
+ if (!testValue.match(new RegExp(`^[${alphabet4}]*$`))) {
242
+ throw new Error(`Expected a string of base ${alphabet4.length}, got [${givenValue}].`);
243
+ }
244
+ }
245
+ var getBaseXEncoder = (alphabet4) => {
246
+ const base = alphabet4.length;
247
+ const baseBigInt = BigInt(base);
248
+ return {
249
+ description: `base${base}`,
250
+ encode(value) {
251
+ assertValidBaseString(alphabet4, value);
252
+ if (value === "")
253
+ return new Uint8Array();
254
+ const chars = [...value];
255
+ let trailIndex = chars.findIndex((c) => c !== alphabet4[0]);
256
+ trailIndex = trailIndex === -1 ? chars.length : trailIndex;
257
+ const leadingZeroes = Array(trailIndex).fill(0);
258
+ if (trailIndex === chars.length)
259
+ return Uint8Array.from(leadingZeroes);
260
+ const tailChars = chars.slice(trailIndex);
261
+ let base10Number = 0n;
262
+ let baseXPower = 1n;
263
+ for (let i = tailChars.length - 1; i >= 0; i -= 1) {
264
+ base10Number += baseXPower * BigInt(alphabet4.indexOf(tailChars[i]));
265
+ baseXPower *= baseBigInt;
266
+ }
267
+ const tailBytes = [];
268
+ while (base10Number > 0n) {
269
+ tailBytes.unshift(Number(base10Number % 256n));
270
+ base10Number /= 256n;
271
+ }
272
+ return Uint8Array.from(leadingZeroes.concat(tailBytes));
273
+ },
274
+ fixedSize: null,
275
+ maxSize: null
276
+ };
277
+ };
278
+ var getBaseXDecoder = (alphabet4) => {
279
+ const base = alphabet4.length;
280
+ const baseBigInt = BigInt(base);
281
+ return {
282
+ decode(rawBytes, offset = 0) {
283
+ const bytes = offset === 0 ? rawBytes : rawBytes.slice(offset);
284
+ if (bytes.length === 0)
285
+ return ["", 0];
286
+ let trailIndex = bytes.findIndex((n) => n !== 0);
287
+ trailIndex = trailIndex === -1 ? bytes.length : trailIndex;
288
+ const leadingZeroes = alphabet4[0].repeat(trailIndex);
289
+ if (trailIndex === bytes.length)
290
+ return [leadingZeroes, rawBytes.length];
291
+ let base10Number = bytes.slice(trailIndex).reduce((sum, byte) => sum * 256n + BigInt(byte), 0n);
292
+ const tailChars = [];
293
+ while (base10Number > 0n) {
294
+ tailChars.unshift(alphabet4[Number(base10Number % baseBigInt)]);
295
+ base10Number /= baseBigInt;
296
+ }
297
+ return [leadingZeroes + tailChars.join(""), rawBytes.length];
298
+ },
299
+ description: `base${base}`,
300
+ fixedSize: null,
301
+ maxSize: null
302
+ };
303
+ };
304
+ var alphabet2 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
305
+ var getBase58Encoder = () => getBaseXEncoder(alphabet2);
306
+ var getBase58Decoder = () => getBaseXDecoder(alphabet2);
307
+ var removeNullCharacters = (value) => (
308
+ // eslint-disable-next-line no-control-regex
309
+ value.replace(/\u0000/g, "")
310
+ );
311
+ var e = globalThis.TextDecoder;
312
+ var o = globalThis.TextEncoder;
313
+ var getUtf8Encoder = () => {
314
+ let textEncoder;
315
+ return {
316
+ description: "utf8",
317
+ encode: (value) => new Uint8Array((textEncoder || (textEncoder = new o())).encode(value)),
318
+ fixedSize: null,
319
+ maxSize: null
320
+ };
321
+ };
322
+ var getUtf8Decoder = () => {
323
+ let textDecoder;
324
+ return {
325
+ decode(bytes, offset = 0) {
326
+ const value = (textDecoder || (textDecoder = new e())).decode(bytes.slice(offset));
327
+ return [removeNullCharacters(value), bytes.length];
328
+ },
329
+ description: "utf8",
330
+ fixedSize: null,
331
+ maxSize: null
332
+ };
333
+ };
334
+ var getStringEncoder = (options = {}) => {
335
+ const size = options.size ?? getU32Encoder();
336
+ const encoding = options.encoding ?? getUtf8Encoder();
337
+ const description = options.description ?? `string(${encoding.description}; ${getSizeDescription(size)})`;
338
+ if (size === "variable") {
339
+ return { ...encoding, description };
340
+ }
341
+ if (typeof size === "number") {
342
+ return fixEncoder(encoding, size, description);
343
+ }
344
+ return {
345
+ description,
346
+ encode: (value) => {
347
+ const contentBytes = encoding.encode(value);
348
+ const lengthBytes = size.encode(contentBytes.length);
349
+ return mergeBytes([lengthBytes, contentBytes]);
350
+ },
351
+ fixedSize: null,
352
+ maxSize: null
353
+ };
354
+ };
355
+ var getStringDecoder = (options = {}) => {
356
+ const size = options.size ?? getU32Decoder();
357
+ const encoding = options.encoding ?? getUtf8Decoder();
358
+ const description = options.description ?? `string(${encoding.description}; ${getSizeDescription(size)})`;
359
+ if (size === "variable") {
360
+ return { ...encoding, description };
361
+ }
362
+ if (typeof size === "number") {
363
+ return fixDecoder(encoding, size, description);
364
+ }
365
+ return {
366
+ decode: (bytes, offset = 0) => {
367
+ assertByteArrayIsNotEmptyForCodec("string", bytes, offset);
368
+ const [lengthBigInt, lengthOffset] = size.decode(bytes, offset);
369
+ const length = Number(lengthBigInt);
370
+ offset = lengthOffset;
371
+ const contentBytes = bytes.slice(offset, offset + length);
372
+ assertByteArrayHasEnoughBytesForCodec("string", length, contentBytes);
373
+ const [value, contentOffset] = encoding.decode(contentBytes);
374
+ offset += contentOffset;
375
+ return [value, offset];
376
+ },
377
+ description,
378
+ fixedSize: null,
379
+ maxSize: null
380
+ };
381
+ };
382
+ function getSizeDescription(size) {
383
+ return typeof size === "object" ? size.description : `${size}`;
384
+ }
385
+
386
+ // src/unsigned-transaction.ts
387
+ function getUnsignedTransaction(transaction) {
388
+ if ("signatures" in transaction) {
389
+ const {
390
+ signatures: _,
391
+ // eslint-disable-line @typescript-eslint/no-unused-vars
392
+ ...unsignedTransaction
393
+ } = transaction;
394
+ return unsignedTransaction;
395
+ } else {
396
+ return transaction;
397
+ }
398
+ }
399
+
400
+ // src/blockhash.ts
401
+ var base58Encoder;
402
+ function assertIsBlockhash(putativeBlockhash) {
403
+ if (!base58Encoder)
404
+ base58Encoder = getBase58Encoder();
405
+ try {
406
+ if (
407
+ // Lowest value (32 bytes of zeroes)
408
+ putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
409
+ putativeBlockhash.length > 44
410
+ ) {
411
+ throw new Error("Expected input string to decode to a byte array of length 32.");
412
+ }
413
+ const bytes = base58Encoder.encode(putativeBlockhash);
414
+ const numBytes = bytes.byteLength;
415
+ if (numBytes !== 32) {
416
+ throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
417
+ }
418
+ } catch (e2) {
419
+ throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
420
+ cause: e2
421
+ });
422
+ }
423
+ }
424
+ function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
425
+ if ("lifetimeConstraint" in transaction && transaction.lifetimeConstraint.blockhash === blockhashLifetimeConstraint.blockhash && transaction.lifetimeConstraint.lastValidBlockHeight === blockhashLifetimeConstraint.lastValidBlockHeight) {
426
+ return transaction;
427
+ }
428
+ const out = {
429
+ ...getUnsignedTransaction(transaction),
430
+ lifetimeConstraint: blockhashLifetimeConstraint
431
+ };
432
+ Object.freeze(out);
433
+ return out;
434
+ }
435
+
436
+ // src/create-transaction.ts
437
+ function createTransaction({
438
+ version
439
+ }) {
440
+ const out = {
441
+ instructions: [],
442
+ version
443
+ };
444
+ Object.freeze(out);
445
+ return out;
446
+ }
447
+
448
+ // ../instructions/dist/index.browser.js
449
+ var AccountRole = /* @__PURE__ */ ((AccountRole2) => {
450
+ AccountRole2[AccountRole2["WRITABLE_SIGNER"] = /* 3 */
451
+ 3] = "WRITABLE_SIGNER";
452
+ AccountRole2[AccountRole2["READONLY_SIGNER"] = /* 2 */
453
+ 2] = "READONLY_SIGNER";
454
+ AccountRole2[AccountRole2["WRITABLE"] = /* 1 */
455
+ 1] = "WRITABLE";
456
+ AccountRole2[AccountRole2["READONLY"] = /* 0 */
457
+ 0] = "READONLY";
458
+ return AccountRole2;
459
+ })(AccountRole || {});
460
+ var IS_WRITABLE_BITMASK = 1;
461
+ function isSignerRole(role) {
462
+ return role >= 2;
463
+ }
464
+ function isWritableRole(role) {
465
+ return (role & IS_WRITABLE_BITMASK) !== 0;
466
+ }
467
+ function mergeRoles(roleA, roleB) {
468
+ return roleA | roleB;
469
+ }
470
+
471
+ // src/durable-nonce.ts
472
+ var RECENT_BLOCKHASHES_SYSVAR_ADDRESS = "SysvarRecentB1ockHashes11111111111111111111";
473
+ var SYSTEM_PROGRAM_ADDRESS = "11111111111111111111111111111111";
474
+ function assertIsDurableNonceTransaction(transaction) {
475
+ if (!isDurableNonceTransaction(transaction)) {
476
+ throw new Error("Transaction is not a durable nonce transaction");
477
+ }
478
+ }
479
+ function createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress) {
480
+ return {
481
+ accounts: [
482
+ { address: nonceAccountAddress, role: AccountRole.WRITABLE },
483
+ {
484
+ address: RECENT_BLOCKHASHES_SYSVAR_ADDRESS,
485
+ role: AccountRole.READONLY
486
+ },
487
+ { address: nonceAuthorityAddress, role: AccountRole.READONLY_SIGNER }
488
+ ],
489
+ data: new Uint8Array([4, 0, 0, 0]),
490
+ programAddress: SYSTEM_PROGRAM_ADDRESS
491
+ };
492
+ }
493
+ function isAdvanceNonceAccountInstruction(instruction) {
494
+ return instruction.programAddress === SYSTEM_PROGRAM_ADDRESS && // Test for `AdvanceNonceAccount` instruction data
495
+ instruction.data != null && isAdvanceNonceAccountInstructionData(instruction.data) && // Test for exactly 3 accounts
496
+ instruction.accounts?.length === 3 && // First account is nonce account address
497
+ instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
498
+ instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
499
+ instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
500
+ }
501
+ function isAdvanceNonceAccountInstructionData(data) {
502
+ return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
503
+ }
504
+ function isDurableNonceTransaction(transaction) {
505
+ return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
506
+ }
507
+ function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
508
+ return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
509
+ }
510
+ function setTransactionLifetimeUsingDurableNonce({
511
+ nonce,
512
+ nonceAccountAddress,
513
+ nonceAuthorityAddress
514
+ }, transaction) {
515
+ let newInstructions;
516
+ const firstInstruction = transaction.instructions[0];
517
+ if (firstInstruction && isAdvanceNonceAccountInstruction(firstInstruction)) {
518
+ if (isAdvanceNonceAccountInstructionForNonce(firstInstruction, nonceAccountAddress, nonceAuthorityAddress)) {
519
+ if (isDurableNonceTransaction(transaction) && transaction.lifetimeConstraint.nonce === nonce) {
520
+ return transaction;
521
+ } else {
522
+ newInstructions = [firstInstruction, ...transaction.instructions.slice(1)];
523
+ }
524
+ } else {
525
+ newInstructions = [
526
+ createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
527
+ ...transaction.instructions.slice(1)
528
+ ];
529
+ }
530
+ } else {
531
+ newInstructions = [
532
+ createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
533
+ ...transaction.instructions
534
+ ];
535
+ }
536
+ const out = {
537
+ ...getUnsignedTransaction(transaction),
538
+ instructions: newInstructions,
539
+ lifetimeConstraint: {
540
+ nonce
541
+ }
542
+ };
543
+ Object.freeze(out);
544
+ return out;
545
+ }
546
+
547
+ // src/fee-payer.ts
548
+ function setTransactionFeePayer(feePayer, transaction) {
549
+ if ("feePayer" in transaction && feePayer === transaction.feePayer) {
550
+ return transaction;
551
+ }
552
+ const out = {
553
+ ...getUnsignedTransaction(transaction),
554
+ feePayer
555
+ };
556
+ Object.freeze(out);
557
+ return out;
558
+ }
559
+
560
+ // src/instructions.ts
561
+ function appendTransactionInstruction(instruction, transaction) {
562
+ const out = {
563
+ ...getUnsignedTransaction(transaction),
564
+ instructions: [...transaction.instructions, instruction]
565
+ };
566
+ Object.freeze(out);
567
+ return out;
568
+ }
569
+ function prependTransactionInstruction(instruction, transaction) {
570
+ const out = {
571
+ ...getUnsignedTransaction(transaction),
572
+ instructions: [instruction, ...transaction.instructions]
573
+ };
574
+ Object.freeze(out);
575
+ return out;
576
+ }
577
+
578
+ // ../codecs-data-structures/dist/index.browser.js
579
+ function sumCodecSizes(sizes) {
580
+ return sizes.reduce((all, size) => all === null || size === null ? null : all + size, 0);
581
+ }
582
+ function decodeArrayLikeCodecSize(size, childrenSizes, bytes, offset) {
583
+ if (typeof size === "number") {
584
+ return [size, offset];
585
+ }
586
+ if (typeof size === "object") {
587
+ return size.decode(bytes, offset);
588
+ }
589
+ if (size === "remainder") {
590
+ const childrenSize = sumCodecSizes(childrenSizes);
591
+ if (childrenSize === null) {
592
+ throw new Error('Codecs of "remainder" size must have fixed-size items.');
593
+ }
594
+ const remainder = bytes.slice(offset).length;
595
+ if (remainder % childrenSize !== 0) {
596
+ throw new Error(
597
+ `The remainder of the byte array (${remainder} bytes) cannot be split into chunks of ${childrenSize} bytes. Codecs of "remainder" size must have a remainder that is a multiple of its item size. In other words, ${remainder} modulo ${childrenSize} should be equal to zero.`
598
+ );
599
+ }
600
+ return [remainder / childrenSize, offset];
601
+ }
602
+ throw new Error(`Unrecognized array-like codec size: ${JSON.stringify(size)}`);
603
+ }
604
+ function getArrayLikeCodecSizeDescription(size) {
605
+ return typeof size === "object" ? size.description : `${size}`;
606
+ }
607
+ function getArrayLikeCodecSizeFromChildren(size, childrenSizes) {
608
+ if (typeof size !== "number")
609
+ return null;
610
+ if (size === 0)
611
+ return 0;
612
+ const childrenSize = sumCodecSizes(childrenSizes);
613
+ return childrenSize === null ? null : childrenSize * size;
614
+ }
615
+ function getArrayLikeCodecSizePrefix(size, realSize) {
616
+ return typeof size === "object" ? size.encode(realSize) : new Uint8Array();
617
+ }
618
+ function assertValidNumberOfItemsForCodec(codecDescription, expected, actual) {
619
+ if (expected !== actual) {
620
+ throw new Error(`Expected [${codecDescription}] to have ${expected} items, got ${actual}.`);
621
+ }
622
+ }
623
+ function arrayCodecHelper(item, size, description) {
624
+ if (size === "remainder" && item.fixedSize === null) {
625
+ throw new Error('Codecs of "remainder" size must have fixed-size items.');
626
+ }
627
+ return {
628
+ description: description ?? `array(${item.description}; ${getArrayLikeCodecSizeDescription(size)})`,
629
+ fixedSize: getArrayLikeCodecSizeFromChildren(size, [item.fixedSize]),
630
+ maxSize: getArrayLikeCodecSizeFromChildren(size, [item.maxSize])
631
+ };
632
+ }
633
+ function getArrayEncoder(item, options = {}) {
634
+ const size = options.size ?? getU32Encoder();
635
+ return {
636
+ ...arrayCodecHelper(item, size, options.description),
637
+ encode: (value) => {
638
+ if (typeof size === "number") {
639
+ assertValidNumberOfItemsForCodec("array", size, value.length);
640
+ }
641
+ return mergeBytes([getArrayLikeCodecSizePrefix(size, value.length), ...value.map((v) => item.encode(v))]);
642
+ }
643
+ };
644
+ }
645
+ function getArrayDecoder(item, options = {}) {
646
+ const size = options.size ?? getU32Decoder();
647
+ return {
648
+ ...arrayCodecHelper(item, size, options.description),
649
+ decode: (bytes, offset = 0) => {
650
+ if (typeof size === "object" && bytes.slice(offset).length === 0) {
651
+ return [[], offset];
652
+ }
653
+ const [resolvedSize, newOffset] = decodeArrayLikeCodecSize(size, [item.fixedSize], bytes, offset);
654
+ offset = newOffset;
655
+ const values = [];
656
+ for (let i = 0; i < resolvedSize; i += 1) {
657
+ const [value, newOffset2] = item.decode(bytes, offset);
658
+ values.push(value);
659
+ offset = newOffset2;
660
+ }
661
+ return [values, offset];
662
+ }
663
+ };
664
+ }
665
+ function getBytesEncoder(options = {}) {
666
+ const size = options.size ?? "variable";
667
+ const sizeDescription = typeof size === "object" ? size.description : `${size}`;
668
+ const description = options.description ?? `bytes(${sizeDescription})`;
669
+ const byteEncoder = {
670
+ description,
671
+ encode: (value) => value,
672
+ fixedSize: null,
673
+ maxSize: null
674
+ };
675
+ if (size === "variable") {
676
+ return byteEncoder;
677
+ }
678
+ if (typeof size === "number") {
679
+ return fixEncoder(byteEncoder, size, description);
680
+ }
681
+ return {
682
+ ...byteEncoder,
683
+ encode: (value) => {
684
+ const contentBytes = byteEncoder.encode(value);
685
+ const lengthBytes = size.encode(contentBytes.length);
686
+ return mergeBytes([lengthBytes, contentBytes]);
687
+ }
688
+ };
689
+ }
690
+ function getBytesDecoder(options = {}) {
691
+ const size = options.size ?? "variable";
692
+ const sizeDescription = typeof size === "object" ? size.description : `${size}`;
693
+ const description = options.description ?? `bytes(${sizeDescription})`;
694
+ const byteDecoder = {
695
+ decode: (bytes, offset = 0) => {
696
+ const slice = bytes.slice(offset);
697
+ return [slice, offset + slice.length];
698
+ },
699
+ description,
700
+ fixedSize: null,
701
+ maxSize: null
702
+ };
703
+ if (size === "variable") {
704
+ return byteDecoder;
705
+ }
706
+ if (typeof size === "number") {
707
+ return fixDecoder(byteDecoder, size, description);
708
+ }
709
+ return {
710
+ ...byteDecoder,
711
+ decode: (bytes, offset = 0) => {
712
+ assertByteArrayIsNotEmptyForCodec("bytes", bytes, offset);
713
+ const [lengthBigInt, lengthOffset] = size.decode(bytes, offset);
714
+ const length = Number(lengthBigInt);
715
+ offset = lengthOffset;
716
+ const contentBytes = bytes.slice(offset, offset + length);
717
+ assertByteArrayHasEnoughBytesForCodec("bytes", length, contentBytes);
718
+ const [value, contentOffset] = byteDecoder.decode(contentBytes);
719
+ offset += contentOffset;
720
+ return [value, offset];
721
+ }
722
+ };
723
+ }
724
+ function structCodecHelper(fields, description) {
725
+ const fieldDescriptions = fields.map(([name, codec]) => `${String(name)}: ${codec.description}`).join(", ");
726
+ return {
727
+ description: description ?? `struct(${fieldDescriptions})`,
728
+ fixedSize: sumCodecSizes(fields.map(([, field]) => field.fixedSize)),
729
+ maxSize: sumCodecSizes(fields.map(([, field]) => field.maxSize))
730
+ };
731
+ }
732
+ function getStructEncoder(fields, options = {}) {
733
+ return {
734
+ ...structCodecHelper(fields, options.description),
735
+ encode: (struct) => {
736
+ const fieldBytes = fields.map(([key, codec]) => codec.encode(struct[key]));
737
+ return mergeBytes(fieldBytes);
738
+ }
739
+ };
740
+ }
741
+ function getStructDecoder(fields, options = {}) {
742
+ return {
743
+ ...structCodecHelper(fields, options.description),
744
+ decode: (bytes, offset = 0) => {
745
+ const struct = {};
746
+ fields.forEach(([key, codec]) => {
747
+ const [value, newOffset] = codec.decode(bytes, offset);
748
+ offset = newOffset;
749
+ struct[key] = value;
750
+ });
751
+ return [struct, offset];
752
+ }
753
+ };
754
+ }
755
+
756
+ // ../assertions/dist/index.browser.js
757
+ function assertIsSecureContext() {
758
+ if (!globalThis.isSecureContext) {
759
+ throw new Error(
760
+ "Cryptographic operations are only allowed in secure browser contexts. Read more here: https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts"
761
+ );
762
+ }
763
+ }
764
+ async function assertKeyExporterIsAvailable() {
765
+ assertIsSecureContext();
766
+ if (typeof globalThis.crypto === "undefined" || typeof globalThis.crypto.subtle?.exportKey !== "function") {
767
+ throw new Error("No key export implementation could be found");
768
+ }
769
+ }
770
+ async function assertSigningCapabilityIsAvailable() {
771
+ assertIsSecureContext();
772
+ if (typeof globalThis.crypto === "undefined" || typeof globalThis.crypto.subtle?.sign !== "function") {
773
+ throw new Error("No signing implementation could be found");
774
+ }
775
+ }
776
+
777
+ // ../addresses/dist/index.browser.js
778
+ var memoizedBase58Encoder;
779
+ var memoizedBase58Decoder;
780
+ function getMemoizedBase58Encoder() {
781
+ if (!memoizedBase58Encoder)
782
+ memoizedBase58Encoder = getBase58Encoder();
783
+ return memoizedBase58Encoder;
784
+ }
785
+ function getMemoizedBase58Decoder() {
786
+ if (!memoizedBase58Decoder)
787
+ memoizedBase58Decoder = getBase58Decoder();
788
+ return memoizedBase58Decoder;
789
+ }
790
+ function assertIsAddress(putativeBase58EncodedAddress) {
791
+ try {
792
+ if (
793
+ // Lowest address (32 bytes of zeroes)
794
+ putativeBase58EncodedAddress.length < 32 || // Highest address (32 bytes of 255)
795
+ putativeBase58EncodedAddress.length > 44
796
+ ) {
797
+ throw new Error("Expected input string to decode to a byte array of length 32.");
798
+ }
799
+ const base58Encoder3 = getMemoizedBase58Encoder();
800
+ const bytes = base58Encoder3.encode(putativeBase58EncodedAddress);
801
+ const numBytes = bytes.byteLength;
802
+ if (numBytes !== 32) {
803
+ throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
804
+ }
805
+ } catch (e2) {
806
+ throw new Error(`\`${putativeBase58EncodedAddress}\` is not a base-58 encoded address`, {
807
+ cause: e2
808
+ });
809
+ }
810
+ }
811
+ function address(putativeBase58EncodedAddress) {
812
+ assertIsAddress(putativeBase58EncodedAddress);
813
+ return putativeBase58EncodedAddress;
814
+ }
815
+ function getAddressEncoder(config) {
816
+ return mapEncoder(
817
+ getStringEncoder({
818
+ description: config?.description ?? "Base58EncodedAddress",
819
+ encoding: getMemoizedBase58Encoder(),
820
+ size: 32
821
+ }),
822
+ (putativeAddress) => address(putativeAddress)
823
+ );
824
+ }
825
+ function getAddressDecoder(config) {
826
+ return getStringDecoder({
827
+ description: config?.description ?? "Base58EncodedAddress",
828
+ encoding: getMemoizedBase58Decoder(),
829
+ size: 32
830
+ });
831
+ }
832
+ function getAddressComparator() {
833
+ return new Intl.Collator("en", {
834
+ caseFirst: "lower",
835
+ ignorePunctuation: false,
836
+ localeMatcher: "best fit",
837
+ numeric: false,
838
+ sensitivity: "variant",
839
+ usage: "sort"
840
+ }).compare;
841
+ }
842
+ async function getAddressFromPublicKey(publicKey) {
843
+ await assertKeyExporterIsAvailable();
844
+ if (publicKey.type !== "public" || publicKey.algorithm.name !== "Ed25519") {
845
+ throw new Error("The `CryptoKey` must be an `Ed25519` public key");
846
+ }
847
+ const publicKeyBytes = await crypto.subtle.exportKey("raw", publicKey);
848
+ const [base58EncodedAddress] = getAddressDecoder().decode(new Uint8Array(publicKeyBytes));
849
+ return base58EncodedAddress;
850
+ }
851
+
852
+ // src/accounts.ts
853
+ function upsert(addressMap, address2, update) {
854
+ addressMap[address2] = update(addressMap[address2] ?? { role: AccountRole.READONLY });
855
+ }
856
+ var TYPE = Symbol("AddressMapTypeProperty");
857
+ function getAddressMapFromInstructions(feePayer, instructions) {
858
+ const addressMap = {
859
+ [feePayer]: { [TYPE]: 0 /* FEE_PAYER */, role: AccountRole.WRITABLE_SIGNER }
860
+ };
861
+ const addressesOfInvokedPrograms = /* @__PURE__ */ new Set();
862
+ for (const instruction of instructions) {
863
+ upsert(addressMap, instruction.programAddress, (entry) => {
864
+ addressesOfInvokedPrograms.add(instruction.programAddress);
865
+ if (TYPE in entry) {
866
+ if (isWritableRole(entry.role)) {
867
+ switch (entry[TYPE]) {
868
+ case 0 /* FEE_PAYER */:
869
+ throw new Error(
870
+ `This transaction includes an address (\`${instruction.programAddress}\`) which is both invoked and set as the fee payer. Program addresses may not pay fees.`
871
+ );
872
+ default:
873
+ throw new Error(
874
+ `This transaction includes an address (\`${instruction.programAddress}\`) which is both invoked and marked writable. Program addresses may not be writable.`
875
+ );
876
+ }
877
+ }
878
+ if (entry[TYPE] === 2 /* STATIC */) {
879
+ return entry;
880
+ }
881
+ }
882
+ return { [TYPE]: 2 /* STATIC */, role: AccountRole.READONLY };
883
+ });
884
+ let addressComparator;
885
+ if (!instruction.accounts) {
886
+ continue;
887
+ }
888
+ for (const account of instruction.accounts) {
889
+ upsert(addressMap, account.address, (entry) => {
890
+ const {
891
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
892
+ address: _,
893
+ ...accountMeta
894
+ } = account;
895
+ if (TYPE in entry) {
896
+ switch (entry[TYPE]) {
897
+ case 0 /* FEE_PAYER */:
898
+ return entry;
899
+ case 1 /* LOOKUP_TABLE */: {
900
+ const nextRole = mergeRoles(entry.role, accountMeta.role);
901
+ if ("lookupTableAddress" in accountMeta) {
902
+ const shouldReplaceEntry = (
903
+ // Consider using the new LOOKUP_TABLE if its address is different...
904
+ entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
905
+ (addressComparator || (addressComparator = getAddressComparator()))(
906
+ accountMeta.lookupTableAddress,
907
+ entry.lookupTableAddress
908
+ ) < 0
909
+ );
910
+ if (shouldReplaceEntry) {
911
+ return {
912
+ [TYPE]: 1 /* LOOKUP_TABLE */,
913
+ ...accountMeta,
914
+ role: nextRole
915
+ };
916
+ }
917
+ } else if (isSignerRole(accountMeta.role)) {
918
+ return {
919
+ [TYPE]: 2 /* STATIC */,
920
+ role: nextRole
921
+ };
922
+ }
923
+ if (entry.role !== nextRole) {
924
+ return {
925
+ ...entry,
926
+ role: nextRole
927
+ };
928
+ } else {
929
+ return entry;
930
+ }
931
+ }
932
+ case 2 /* STATIC */: {
933
+ const nextRole = mergeRoles(entry.role, accountMeta.role);
934
+ if (
935
+ // Check to see if this address represents a program that is invoked
936
+ // in this transaction.
937
+ addressesOfInvokedPrograms.has(account.address)
938
+ ) {
939
+ if (isWritableRole(accountMeta.role)) {
940
+ throw new Error(
941
+ `This transaction includes an address (\`${account.address}\`) which is both invoked and marked writable. Program addresses may not be writable.`
942
+ );
943
+ }
944
+ if (entry.role !== nextRole) {
945
+ return {
946
+ ...entry,
947
+ role: nextRole
948
+ };
949
+ } else {
950
+ return entry;
951
+ }
952
+ } else if ("lookupTableAddress" in accountMeta && // Static accounts can be 'upgraded' to lookup table accounts as
953
+ // long as they are not require to sign the transaction.
954
+ !isSignerRole(entry.role)) {
955
+ return {
956
+ ...accountMeta,
957
+ [TYPE]: 1 /* LOOKUP_TABLE */,
958
+ role: nextRole
959
+ };
960
+ } else {
961
+ if (entry.role !== nextRole) {
962
+ return {
963
+ ...entry,
964
+ role: nextRole
965
+ };
966
+ } else {
967
+ return entry;
968
+ }
969
+ }
970
+ }
971
+ }
972
+ }
973
+ if ("lookupTableAddress" in accountMeta) {
974
+ return {
975
+ ...accountMeta,
976
+ [TYPE]: 1 /* LOOKUP_TABLE */
977
+ };
978
+ } else {
979
+ return {
980
+ ...accountMeta,
981
+ [TYPE]: 2 /* STATIC */
982
+ };
983
+ }
984
+ });
985
+ }
986
+ }
987
+ return addressMap;
988
+ }
989
+ function getOrderedAccountsFromAddressMap(addressMap) {
990
+ let addressComparator;
991
+ const orderedAccounts = Object.entries(addressMap).sort(([leftAddress, leftEntry], [rightAddress, rightEntry]) => {
992
+ if (leftEntry[TYPE] !== rightEntry[TYPE]) {
993
+ if (leftEntry[TYPE] === 0 /* FEE_PAYER */) {
994
+ return -1;
995
+ } else if (rightEntry[TYPE] === 0 /* FEE_PAYER */) {
996
+ return 1;
997
+ } else if (leftEntry[TYPE] === 2 /* STATIC */) {
998
+ return -1;
999
+ } else if (rightEntry[TYPE] === 2 /* STATIC */) {
1000
+ return 1;
1001
+ }
1002
+ }
1003
+ const leftIsSigner = isSignerRole(leftEntry.role);
1004
+ if (leftIsSigner !== isSignerRole(rightEntry.role)) {
1005
+ return leftIsSigner ? -1 : 1;
1006
+ }
1007
+ const leftIsWritable = isWritableRole(leftEntry.role);
1008
+ if (leftIsWritable !== isWritableRole(rightEntry.role)) {
1009
+ return leftIsWritable ? -1 : 1;
1010
+ }
1011
+ addressComparator || (addressComparator = getAddressComparator());
1012
+ if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
1013
+ return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
1014
+ } else {
1015
+ return addressComparator(leftAddress, rightAddress);
1016
+ }
1017
+ }).map(([address2, addressMeta]) => ({
1018
+ address: address2,
1019
+ ...addressMeta
1020
+ }));
1021
+ return orderedAccounts;
1022
+ }
1023
+
1024
+ // src/compile-address-table-lookups.ts
1025
+ function getCompiledAddressTableLookups(orderedAccounts) {
1026
+ var _a;
1027
+ const index = {};
1028
+ for (const account of orderedAccounts) {
1029
+ if (!("lookupTableAddress" in account)) {
1030
+ continue;
1031
+ }
1032
+ const entry = index[_a = account.lookupTableAddress] || (index[_a] = {
1033
+ readableIndices: [],
1034
+ writableIndices: []
1035
+ });
1036
+ if (account.role === AccountRole.WRITABLE) {
1037
+ entry.writableIndices.push(account.addressIndex);
1038
+ } else {
1039
+ entry.readableIndices.push(account.addressIndex);
1040
+ }
1041
+ }
1042
+ return Object.keys(index).sort(getAddressComparator()).map((lookupTableAddress) => ({
1043
+ lookupTableAddress,
1044
+ ...index[lookupTableAddress]
1045
+ }));
1046
+ }
1047
+
1048
+ // src/compile-header.ts
1049
+ function getCompiledMessageHeader(orderedAccounts) {
1050
+ let numReadonlyNonSignerAccounts = 0;
1051
+ let numReadonlySignerAccounts = 0;
1052
+ let numSignerAccounts = 0;
1053
+ for (const account of orderedAccounts) {
1054
+ if ("lookupTableAddress" in account) {
1055
+ break;
1056
+ }
1057
+ const accountIsWritable = isWritableRole(account.role);
1058
+ if (isSignerRole(account.role)) {
1059
+ numSignerAccounts++;
1060
+ if (!accountIsWritable) {
1061
+ numReadonlySignerAccounts++;
1062
+ }
1063
+ } else if (!accountIsWritable) {
1064
+ numReadonlyNonSignerAccounts++;
1065
+ }
1066
+ }
1067
+ return {
1068
+ numReadonlyNonSignerAccounts,
1069
+ numReadonlySignerAccounts,
1070
+ numSignerAccounts
1071
+ };
1072
+ }
1073
+
1074
+ // src/compile-instructions.ts
1075
+ function getAccountIndex(orderedAccounts) {
1076
+ const out = {};
1077
+ for (const [index, account] of orderedAccounts.entries()) {
1078
+ out[account.address] = index;
1079
+ }
1080
+ return out;
1081
+ }
1082
+ function getCompiledInstructions(instructions, orderedAccounts) {
1083
+ const accountIndex = getAccountIndex(orderedAccounts);
1084
+ return instructions.map(({ accounts, data, programAddress }) => {
1085
+ return {
1086
+ programAddressIndex: accountIndex[programAddress],
1087
+ ...accounts ? { accountIndices: accounts.map(({ address: address2 }) => accountIndex[address2]) } : null,
1088
+ ...data ? { data } : null
1089
+ };
1090
+ });
1091
+ }
1092
+
1093
+ // src/compile-lifetime-token.ts
1094
+ function getCompiledLifetimeToken(lifetimeConstraint) {
1095
+ if ("nonce" in lifetimeConstraint) {
1096
+ return lifetimeConstraint.nonce;
1097
+ }
1098
+ return lifetimeConstraint.blockhash;
1099
+ }
1100
+
1101
+ // src/compile-static-accounts.ts
1102
+ function getCompiledStaticAccounts(orderedAccounts) {
1103
+ const firstLookupTableAccountIndex = orderedAccounts.findIndex((account) => "lookupTableAddress" in account);
1104
+ const orderedStaticAccounts = firstLookupTableAccountIndex === -1 ? orderedAccounts : orderedAccounts.slice(0, firstLookupTableAccountIndex);
1105
+ return orderedStaticAccounts.map(({ address: address2 }) => address2);
1106
+ }
1107
+
1108
+ // src/message.ts
1109
+ function compileMessage(transaction) {
1110
+ const addressMap = getAddressMapFromInstructions(transaction.feePayer, transaction.instructions);
1111
+ const orderedAccounts = getOrderedAccountsFromAddressMap(addressMap);
1112
+ return {
1113
+ ...transaction.version !== "legacy" ? { addressTableLookups: getCompiledAddressTableLookups(orderedAccounts) } : null,
1114
+ header: getCompiledMessageHeader(orderedAccounts),
1115
+ instructions: getCompiledInstructions(transaction.instructions, orderedAccounts),
1116
+ lifetimeToken: getCompiledLifetimeToken(transaction.lifetimeConstraint),
1117
+ staticAccounts: getCompiledStaticAccounts(orderedAccounts),
1118
+ version: transaction.version
1119
+ };
1120
+ }
1121
+
1122
+ // src/compile-transaction.ts
1123
+ function getCompiledTransaction(transaction) {
1124
+ const compiledMessage = compileMessage(transaction);
1125
+ let signatures;
1126
+ if ("signatures" in transaction) {
1127
+ signatures = [];
1128
+ for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
1129
+ signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
1130
+ }
1131
+ } else {
1132
+ signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
1133
+ }
1134
+ return {
1135
+ compiledMessage,
1136
+ signatures
1137
+ };
1138
+ }
1139
+
1140
+ // ../functional/dist/index.browser.js
1141
+ function pipe(init, ...fns) {
1142
+ return fns.reduce((acc, fn) => fn(acc), init);
1143
+ }
1144
+
1145
+ // src/decompile-transaction.ts
1146
+ function getAccountMetas(message) {
1147
+ const { header } = message;
1148
+ const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
1149
+ const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
1150
+ const accountMetas = [];
1151
+ let accountIndex = 0;
1152
+ for (let i = 0; i < numWritableSignerAccounts; i++) {
1153
+ accountMetas.push({
1154
+ address: message.staticAccounts[accountIndex],
1155
+ role: AccountRole.WRITABLE_SIGNER
1156
+ });
1157
+ accountIndex++;
1158
+ }
1159
+ for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
1160
+ accountMetas.push({
1161
+ address: message.staticAccounts[accountIndex],
1162
+ role: AccountRole.READONLY_SIGNER
1163
+ });
1164
+ accountIndex++;
1165
+ }
1166
+ for (let i = 0; i < numWritableNonSignerAccounts; i++) {
1167
+ accountMetas.push({
1168
+ address: message.staticAccounts[accountIndex],
1169
+ role: AccountRole.WRITABLE
1170
+ });
1171
+ accountIndex++;
1172
+ }
1173
+ for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
1174
+ accountMetas.push({
1175
+ address: message.staticAccounts[accountIndex],
1176
+ role: AccountRole.READONLY
1177
+ });
1178
+ accountIndex++;
1179
+ }
1180
+ return accountMetas;
1181
+ }
1182
+ function convertInstruction(instruction, accountMetas) {
1183
+ const programAddress = accountMetas[instruction.programAddressIndex]?.address;
1184
+ if (!programAddress) {
1185
+ throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
1186
+ }
1187
+ const accounts = instruction.accountIndices?.map((accountIndex) => accountMetas[accountIndex]);
1188
+ const { data } = instruction;
1189
+ return {
1190
+ programAddress,
1191
+ ...accounts && accounts.length ? { accounts } : {},
1192
+ ...data && data.length ? { data } : {}
1193
+ };
1194
+ }
1195
+ function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
1196
+ if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
1197
+ return {
1198
+ blockhash: messageLifetimeToken,
1199
+ lastValidBlockHeight: lastValidBlockHeight ?? 2n ** 64n - 1n
1200
+ // U64 MAX
1201
+ };
1202
+ } else {
1203
+ const nonceAccountAddress = firstInstruction.accounts[0].address;
1204
+ assertIsAddress(nonceAccountAddress);
1205
+ const nonceAuthorityAddress = firstInstruction.accounts[2].address;
1206
+ assertIsAddress(nonceAuthorityAddress);
1207
+ return {
1208
+ nonce: messageLifetimeToken,
1209
+ nonceAccountAddress,
1210
+ nonceAuthorityAddress
1211
+ };
1212
+ }
1213
+ }
1214
+ function convertSignatures(compiledTransaction) {
1215
+ const {
1216
+ compiledMessage: { staticAccounts },
1217
+ signatures
1218
+ } = compiledTransaction;
1219
+ return signatures.reduce((acc, sig, index) => {
1220
+ const allZeros = sig.every((byte) => byte === 0);
1221
+ if (allZeros)
1222
+ return acc;
1223
+ const address2 = staticAccounts[index];
1224
+ return { ...acc, [address2]: sig };
1225
+ }, {});
1226
+ }
1227
+ function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
1228
+ const { compiledMessage } = compiledTransaction;
1229
+ if ("addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups.length > 0) {
1230
+ throw new Error("Cannot convert transaction with addressTableLookups");
1231
+ }
1232
+ const feePayer = compiledMessage.staticAccounts[0];
1233
+ if (!feePayer)
1234
+ throw new Error("No fee payer set in CompiledTransaction");
1235
+ const accountMetas = getAccountMetas(compiledMessage);
1236
+ const instructions = compiledMessage.instructions.map(
1237
+ (compiledInstruction) => convertInstruction(compiledInstruction, accountMetas)
1238
+ );
1239
+ const firstInstruction = instructions[0];
1240
+ const lifetimeConstraint = getLifetimeConstraint(
1241
+ compiledMessage.lifetimeToken,
1242
+ firstInstruction,
1243
+ lastValidBlockHeight
1244
+ );
1245
+ const signatures = convertSignatures(compiledTransaction);
1246
+ return pipe(
1247
+ createTransaction({ version: compiledMessage.version }),
1248
+ (tx) => setTransactionFeePayer(feePayer, tx),
1249
+ (tx) => instructions.reduce((acc, instruction) => {
1250
+ return appendTransactionInstruction(instruction, acc);
1251
+ }, tx),
1252
+ (tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
1253
+ (tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
1254
+ );
1255
+ }
1256
+
1257
+ // src/serializers/address-table-lookup.ts
1258
+ var lookupTableAddressDescription = "The address of the address lookup table account from which instruction addresses should be looked up" ;
1259
+ var writableIndicesDescription = "The indices of the accounts in the lookup table that should be loaded as writeable" ;
1260
+ var readableIndicesDescription = "The indices of the accounts in the lookup table that should be loaded as read-only" ;
1261
+ var addressTableLookupDescription = "A pointer to the address of an address lookup table, along with the readonly/writeable indices of the addresses that should be loaded from it" ;
1262
+ var memoizedAddressTableLookupEncoder;
1263
+ function getAddressTableLookupEncoder() {
1264
+ if (!memoizedAddressTableLookupEncoder) {
1265
+ memoizedAddressTableLookupEncoder = getStructEncoder(
1266
+ [
1267
+ ["lookupTableAddress", getAddressEncoder({ description: lookupTableAddressDescription })],
1268
+ [
1269
+ "writableIndices",
1270
+ getArrayEncoder(getU8Encoder(), {
1271
+ description: writableIndicesDescription,
1272
+ size: getShortU16Encoder()
1273
+ })
1274
+ ],
1275
+ [
1276
+ "readableIndices",
1277
+ getArrayEncoder(getU8Encoder(), {
1278
+ description: readableIndicesDescription,
1279
+ size: getShortU16Encoder()
1280
+ })
1281
+ ]
1282
+ ],
1283
+ { description: addressTableLookupDescription }
1284
+ );
1285
+ }
1286
+ return memoizedAddressTableLookupEncoder;
1287
+ }
1288
+ var memoizedAddressTableLookupDecoder;
1289
+ function getAddressTableLookupDecoder() {
1290
+ if (!memoizedAddressTableLookupDecoder) {
1291
+ memoizedAddressTableLookupDecoder = getStructDecoder(
1292
+ [
1293
+ ["lookupTableAddress", getAddressDecoder({ description: lookupTableAddressDescription })],
1294
+ [
1295
+ "writableIndices",
1296
+ getArrayDecoder(getU8Decoder(), {
1297
+ description: writableIndicesDescription,
1298
+ size: getShortU16Decoder()
1299
+ })
1300
+ ],
1301
+ [
1302
+ "readableIndices",
1303
+ getArrayDecoder(getU8Decoder(), {
1304
+ description: readableIndicesDescription,
1305
+ size: getShortU16Decoder()
1306
+ })
1307
+ ]
1308
+ ],
1309
+ { description: addressTableLookupDescription }
1310
+ );
1311
+ }
1312
+ return memoizedAddressTableLookupDecoder;
1313
+ }
1314
+
1315
+ // src/serializers/header.ts
1316
+ var memoizedU8Encoder;
1317
+ function getMemoizedU8Encoder() {
1318
+ if (!memoizedU8Encoder)
1319
+ memoizedU8Encoder = getU8Encoder();
1320
+ return memoizedU8Encoder;
1321
+ }
1322
+ function getMemoizedU8EncoderDescription(description) {
1323
+ const encoder = getMemoizedU8Encoder();
1324
+ return {
1325
+ ...encoder,
1326
+ description: description ?? encoder.description
1327
+ };
1328
+ }
1329
+ var memoizedU8Decoder;
1330
+ function getMemoizedU8Decoder() {
1331
+ if (!memoizedU8Decoder)
1332
+ memoizedU8Decoder = getU8Decoder();
1333
+ return memoizedU8Decoder;
1334
+ }
1335
+ function getMemoizedU8DecoderDescription(description) {
1336
+ const decoder = getMemoizedU8Decoder();
1337
+ return {
1338
+ ...decoder,
1339
+ description: description ?? decoder.description
1340
+ };
1341
+ }
1342
+ var numSignerAccountsDescription = "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction" ;
1343
+ var numReadonlySignerAccountsDescription = "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction, but may not be writable" ;
1344
+ var numReadonlyNonSignerAccountsDescription = "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable" ;
1345
+ var messageHeaderDescription = "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses" ;
1346
+ function getMessageHeaderEncoder() {
1347
+ return getStructEncoder(
1348
+ [
1349
+ ["numSignerAccounts", getMemoizedU8EncoderDescription(numSignerAccountsDescription)],
1350
+ ["numReadonlySignerAccounts", getMemoizedU8EncoderDescription(numReadonlySignerAccountsDescription)],
1351
+ ["numReadonlyNonSignerAccounts", getMemoizedU8EncoderDescription(numReadonlyNonSignerAccountsDescription)]
1352
+ ],
1353
+ {
1354
+ description: messageHeaderDescription
1355
+ }
1356
+ );
1357
+ }
1358
+ function getMessageHeaderDecoder() {
1359
+ return getStructDecoder(
1360
+ [
1361
+ ["numSignerAccounts", getMemoizedU8DecoderDescription(numSignerAccountsDescription)],
1362
+ ["numReadonlySignerAccounts", getMemoizedU8DecoderDescription(numReadonlySignerAccountsDescription)],
1363
+ ["numReadonlyNonSignerAccounts", getMemoizedU8DecoderDescription(numReadonlyNonSignerAccountsDescription)]
1364
+ ],
1365
+ {
1366
+ description: messageHeaderDescription
1367
+ }
1368
+ );
1369
+ }
1370
+
1371
+ // src/serializers/instruction.ts
1372
+ var programAddressIndexDescription = "The index of the program being called, according to the well-ordered accounts list for this transaction" ;
1373
+ var accountIndexDescription = "The index of an account, according to the well-ordered accounts list for this transaction" ;
1374
+ var accountIndicesDescription = "An optional list of account indices, according to the well-ordered accounts list for this transaction, in the order in which the program being called expects them" ;
1375
+ var dataDescription = "An optional buffer of data passed to the instruction" ;
1376
+ var memoizedGetInstructionEncoder;
1377
+ function getInstructionEncoder() {
1378
+ if (!memoizedGetInstructionEncoder) {
1379
+ memoizedGetInstructionEncoder = mapEncoder(
1380
+ getStructEncoder([
1381
+ ["programAddressIndex", getU8Encoder({ description: programAddressIndexDescription })],
1382
+ [
1383
+ "accountIndices",
1384
+ getArrayEncoder(getU8Encoder({ description: accountIndexDescription }), {
1385
+ description: accountIndicesDescription,
1386
+ size: getShortU16Encoder()
1387
+ })
1388
+ ],
1389
+ ["data", getBytesEncoder({ description: dataDescription, size: getShortU16Encoder() })]
1390
+ ]),
1391
+ // Convert an instruction to have all fields defined
1392
+ (instruction) => {
1393
+ if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
1394
+ return instruction;
1395
+ }
1396
+ return {
1397
+ ...instruction,
1398
+ accountIndices: instruction.accountIndices ?? [],
1399
+ data: instruction.data ?? new Uint8Array(0)
1400
+ };
1401
+ }
1402
+ );
1403
+ }
1404
+ return memoizedGetInstructionEncoder;
1405
+ }
1406
+ var memoizedGetInstructionDecoder;
1407
+ function getInstructionDecoder() {
1408
+ if (!memoizedGetInstructionDecoder) {
1409
+ memoizedGetInstructionDecoder = mapDecoder(
1410
+ getStructDecoder([
1411
+ ["programAddressIndex", getU8Decoder({ description: programAddressIndexDescription })],
1412
+ [
1413
+ "accountIndices",
1414
+ getArrayDecoder(getU8Decoder({ description: accountIndexDescription }), {
1415
+ description: accountIndicesDescription,
1416
+ size: getShortU16Decoder()
1417
+ })
1418
+ ],
1419
+ ["data", getBytesDecoder({ description: dataDescription, size: getShortU16Decoder() })]
1420
+ ]),
1421
+ // Convert an instruction to exclude optional fields if they are empty
1422
+ (instruction) => {
1423
+ if (instruction.accountIndices.length && instruction.data.byteLength) {
1424
+ return instruction;
1425
+ }
1426
+ const { accountIndices, data, ...rest } = instruction;
1427
+ return {
1428
+ ...rest,
1429
+ ...accountIndices.length ? { accountIndices } : null,
1430
+ ...data.byteLength ? { data } : null
1431
+ };
1432
+ }
1433
+ );
1434
+ }
1435
+ return memoizedGetInstructionDecoder;
1436
+ }
1437
+
1438
+ // src/serializers/transaction-version.ts
1439
+ var VERSION_FLAG_MASK = 128;
1440
+ var BASE_CONFIG = {
1441
+ description: "A single byte that encodes the version of the transaction" ,
1442
+ fixedSize: null,
1443
+ maxSize: 1
1444
+ };
1445
+ function decode(bytes, offset = 0) {
1446
+ const firstByte = bytes[offset];
1447
+ if ((firstByte & VERSION_FLAG_MASK) === 0) {
1448
+ return ["legacy", offset];
1449
+ } else {
1450
+ const version = firstByte ^ VERSION_FLAG_MASK;
1451
+ return [version, offset + 1];
1452
+ }
1453
+ }
1454
+ function encode(value) {
1455
+ if (value === "legacy") {
1456
+ return new Uint8Array();
1457
+ }
1458
+ if (value < 0 || value > 127) {
1459
+ throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
1460
+ }
1461
+ return new Uint8Array([value | VERSION_FLAG_MASK]);
1462
+ }
1463
+ function getTransactionVersionDecoder() {
1464
+ return {
1465
+ ...BASE_CONFIG,
1466
+ decode
1467
+ };
1468
+ }
1469
+ function getTransactionVersionEncoder() {
1470
+ return {
1471
+ ...BASE_CONFIG,
1472
+ encode
1473
+ };
1474
+ }
1475
+
1476
+ // src/serializers/message.ts
1477
+ var staticAccountsDescription = "A compact-array of static account addresses belonging to this transaction" ;
1478
+ var lifetimeTokenDescription = "A 32-byte token that specifies the lifetime of this transaction (eg. a recent blockhash, or a durable nonce)" ;
1479
+ var instructionsDescription = "A compact-array of instructions belonging to this transaction" ;
1480
+ var addressTableLookupsDescription = "A compact array of address table lookups belonging to this transaction" ;
1481
+ function getCompiledMessageLegacyEncoder() {
1482
+ return getStructEncoder(getPreludeStructEncoderTuple());
1483
+ }
1484
+ function getCompiledMessageVersionedEncoder() {
1485
+ return mapEncoder(
1486
+ getStructEncoder([
1487
+ ...getPreludeStructEncoderTuple(),
1488
+ ["addressTableLookups", getAddressTableLookupArrayEncoder()]
1489
+ ]),
1490
+ (value) => {
1491
+ if (value.version === "legacy") {
1492
+ return value;
1493
+ }
1494
+ return {
1495
+ ...value,
1496
+ addressTableLookups: value.addressTableLookups ?? []
1497
+ };
1498
+ }
1499
+ );
1500
+ }
1501
+ function getPreludeStructEncoderTuple() {
1502
+ return [
1503
+ ["version", getTransactionVersionEncoder()],
1504
+ ["header", getMessageHeaderEncoder()],
1505
+ [
1506
+ "staticAccounts",
1507
+ getArrayEncoder(getAddressEncoder(), {
1508
+ description: staticAccountsDescription,
1509
+ size: getShortU16Encoder()
1510
+ })
1511
+ ],
1512
+ [
1513
+ "lifetimeToken",
1514
+ getStringEncoder({
1515
+ description: lifetimeTokenDescription,
1516
+ encoding: getBase58Encoder(),
1517
+ size: 32
1518
+ })
1519
+ ],
1520
+ [
1521
+ "instructions",
1522
+ getArrayEncoder(getInstructionEncoder(), {
1523
+ description: instructionsDescription,
1524
+ size: getShortU16Encoder()
1525
+ })
1526
+ ]
1527
+ ];
1528
+ }
1529
+ function getPreludeStructDecoderTuple() {
1530
+ return [
1531
+ ["version", getTransactionVersionDecoder()],
1532
+ ["header", getMessageHeaderDecoder()],
1533
+ [
1534
+ "staticAccounts",
1535
+ getArrayDecoder(getAddressDecoder(), {
1536
+ description: staticAccountsDescription,
1537
+ size: getShortU16Decoder()
1538
+ })
1539
+ ],
1540
+ [
1541
+ "lifetimeToken",
1542
+ getStringDecoder({
1543
+ description: lifetimeTokenDescription,
1544
+ encoding: getBase58Decoder(),
1545
+ size: 32
1546
+ })
1547
+ ],
1548
+ [
1549
+ "instructions",
1550
+ getArrayDecoder(getInstructionDecoder(), {
1551
+ description: instructionsDescription,
1552
+ size: getShortU16Decoder()
1553
+ })
1554
+ ],
1555
+ ["addressTableLookups", getAddressTableLookupArrayDecoder()]
1556
+ ];
1557
+ }
1558
+ function getAddressTableLookupArrayEncoder() {
1559
+ return getArrayEncoder(getAddressTableLookupEncoder(), {
1560
+ description: addressTableLookupsDescription,
1561
+ size: getShortU16Encoder()
1562
+ });
1563
+ }
1564
+ function getAddressTableLookupArrayDecoder() {
1565
+ return getArrayDecoder(getAddressTableLookupDecoder(), {
1566
+ description: addressTableLookupsDescription,
1567
+ size: getShortU16Decoder()
1568
+ });
1569
+ }
1570
+ var messageDescription = "The wire format of a Solana transaction message" ;
1571
+ function getCompiledMessageEncoder() {
1572
+ return {
1573
+ description: messageDescription,
1574
+ encode: (compiledMessage) => {
1575
+ if (compiledMessage.version === "legacy") {
1576
+ return getCompiledMessageLegacyEncoder().encode(compiledMessage);
1577
+ } else {
1578
+ return getCompiledMessageVersionedEncoder().encode(compiledMessage);
1579
+ }
1580
+ },
1581
+ fixedSize: null,
1582
+ maxSize: null
1583
+ };
1584
+ }
1585
+ function getCompiledMessageDecoder() {
1586
+ return mapDecoder(
1587
+ getStructDecoder(getPreludeStructDecoderTuple(), {
1588
+ description: messageDescription
1589
+ }),
1590
+ ({ addressTableLookups, ...restOfMessage }) => {
1591
+ if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
1592
+ return restOfMessage;
1593
+ }
1594
+ return { ...restOfMessage, addressTableLookups };
1595
+ }
1596
+ );
1597
+ }
1598
+
1599
+ // src/serializers/transaction.ts
1600
+ var signaturesDescription = "A compact array of 64-byte, base-64 encoded Ed25519 signatures" ;
1601
+ var transactionDescription = "The wire format of a Solana transaction" ;
1602
+ function getCompiledTransactionEncoder() {
1603
+ return getStructEncoder(
1604
+ [
1605
+ [
1606
+ "signatures",
1607
+ getArrayEncoder(getBytesEncoder({ size: 64 }), {
1608
+ description: signaturesDescription,
1609
+ size: getShortU16Encoder()
1610
+ })
1611
+ ],
1612
+ ["compiledMessage", getCompiledMessageEncoder()]
1613
+ ],
1614
+ {
1615
+ description: transactionDescription
1616
+ }
1617
+ );
1618
+ }
1619
+ function getSignatureDecoder() {
1620
+ return mapDecoder(getBytesDecoder({ size: 64 }), (bytes) => bytes);
1621
+ }
1622
+ function getCompiledTransactionDecoder() {
1623
+ return getStructDecoder(
1624
+ [
1625
+ [
1626
+ "signatures",
1627
+ getArrayDecoder(getSignatureDecoder(), {
1628
+ description: signaturesDescription,
1629
+ size: getShortU16Decoder()
1630
+ })
1631
+ ],
1632
+ ["compiledMessage", getCompiledMessageDecoder()]
1633
+ ],
1634
+ {
1635
+ description: transactionDescription
1636
+ }
1637
+ );
1638
+ }
1639
+ function getTransactionEncoder() {
1640
+ return mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
1641
+ }
1642
+ function getTransactionDecoder(lastValidBlockHeight) {
1643
+ return mapDecoder(
1644
+ getCompiledTransactionDecoder(),
1645
+ (compiledTransaction) => decompileTransaction(compiledTransaction, lastValidBlockHeight)
1646
+ );
1647
+ }
1648
+ function getTransactionCodec(lastValidBlockHeight) {
1649
+ return combineCodec(getTransactionEncoder(), getTransactionDecoder(lastValidBlockHeight));
1650
+ }
1651
+
1652
+ // ../keys/dist/index.browser.js
1653
+ async function signBytes(key, data) {
1654
+ await assertSigningCapabilityIsAvailable();
1655
+ const signedData = await crypto.subtle.sign("Ed25519", key, data);
1656
+ return new Uint8Array(signedData);
1657
+ }
1658
+
1659
+ // src/signatures.ts
1660
+ var base58Encoder2;
1661
+ var base58Decoder;
1662
+ function assertIsTransactionSignature(putativeTransactionSignature) {
1663
+ if (!base58Encoder2)
1664
+ base58Encoder2 = getBase58Encoder();
1665
+ try {
1666
+ if (
1667
+ // Lowest value (64 bytes of zeroes)
1668
+ putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
1669
+ putativeTransactionSignature.length > 88
1670
+ ) {
1671
+ throw new Error("Expected input string to decode to a byte array of length 64.");
1672
+ }
1673
+ const bytes = base58Encoder2.encode(putativeTransactionSignature);
1674
+ const numBytes = bytes.byteLength;
1675
+ if (numBytes !== 64) {
1676
+ throw new Error(`Expected input string to decode to a byte array of length 64. Actual length: ${numBytes}`);
1677
+ }
1678
+ } catch (e2) {
1679
+ throw new Error(`\`${putativeTransactionSignature}\` is not a transaction signature`, {
1680
+ cause: e2
1681
+ });
1682
+ }
1683
+ }
1684
+ function isTransactionSignature(putativeTransactionSignature) {
1685
+ if (!base58Encoder2)
1686
+ base58Encoder2 = getBase58Encoder();
1687
+ if (
1688
+ // Lowest value (64 bytes of zeroes)
1689
+ putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
1690
+ putativeTransactionSignature.length > 88
1691
+ ) {
1692
+ return false;
1693
+ }
1694
+ const bytes = base58Encoder2.encode(putativeTransactionSignature);
1695
+ const numBytes = bytes.byteLength;
1696
+ if (numBytes !== 64) {
1697
+ return false;
1698
+ }
1699
+ return true;
1700
+ }
1701
+ function getSignatureFromTransaction(transaction) {
1702
+ if (!base58Decoder)
1703
+ base58Decoder = getBase58Decoder();
1704
+ const signatureBytes = transaction.signatures[transaction.feePayer];
1705
+ if (!signatureBytes) {
1706
+ throw new Error(
1707
+ "Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
1708
+ );
1709
+ }
1710
+ const transactionSignature2 = base58Decoder.decode(signatureBytes)[0];
1711
+ return transactionSignature2;
1712
+ }
1713
+ async function signTransaction(keyPairs, transaction) {
1714
+ const compiledMessage = compileMessage(transaction);
1715
+ const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
1716
+ const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
1717
+ const publicKeySignaturePairs = await Promise.all(
1718
+ keyPairs.map(
1719
+ (keyPair) => Promise.all([getAddressFromPublicKey(keyPair.publicKey), signBytes(keyPair.privateKey, wireMessageBytes)])
1720
+ )
1721
+ );
1722
+ for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
1723
+ nextSignatures[signerPublicKey] = signature;
1724
+ }
1725
+ const out = {
1726
+ ...transaction,
1727
+ signatures: nextSignatures
1728
+ };
1729
+ Object.freeze(out);
1730
+ return out;
1731
+ }
1732
+ function transactionSignature(putativeTransactionSignature) {
1733
+ assertIsTransactionSignature(putativeTransactionSignature);
1734
+ return putativeTransactionSignature;
1735
+ }
1736
+ function assertTransactionIsFullySigned(transaction) {
1737
+ const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => i.accounts?.filter((a) => isSignerRole(a.role)) ?? []).map((a) => a.address);
1738
+ const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
1739
+ requiredSigners.forEach((address2) => {
1740
+ if (!transaction.signatures[address2]) {
1741
+ throw new Error(`Transaction is missing signature for address \`${address2}\``);
1742
+ }
1743
+ });
1744
+ }
1745
+
1746
+ // src/wire-transaction.ts
1747
+ function getBase64EncodedWireTransaction(transaction) {
1748
+ const wireTransactionBytes = getTransactionEncoder().encode(transaction);
1749
+ {
1750
+ return btoa(String.fromCharCode(...wireTransactionBytes));
1751
+ }
1752
+ }
1753
+
1754
+ exports.appendTransactionInstruction = appendTransactionInstruction;
1755
+ exports.assertIsBlockhash = assertIsBlockhash;
1756
+ exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
1757
+ exports.assertIsTransactionSignature = assertIsTransactionSignature;
1758
+ exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
1759
+ exports.createTransaction = createTransaction;
1760
+ exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
1761
+ exports.getSignatureFromTransaction = getSignatureFromTransaction;
1762
+ exports.getTransactionCodec = getTransactionCodec;
1763
+ exports.getTransactionDecoder = getTransactionDecoder;
1764
+ exports.getTransactionEncoder = getTransactionEncoder;
1765
+ exports.isAdvanceNonceAccountInstruction = isAdvanceNonceAccountInstruction;
1766
+ exports.isTransactionSignature = isTransactionSignature;
1767
+ exports.prependTransactionInstruction = prependTransactionInstruction;
1768
+ exports.setTransactionFeePayer = setTransactionFeePayer;
1769
+ exports.setTransactionLifetimeUsingBlockhash = setTransactionLifetimeUsingBlockhash;
1770
+ exports.setTransactionLifetimeUsingDurableNonce = setTransactionLifetimeUsingDurableNonce;
1771
+ exports.signTransaction = signTransaction;
1772
+ exports.transactionSignature = transactionSignature;
1773
+
1774
+ return exports;
1775
+
1776
+ })({});
1777
+ //# sourceMappingURL=out.js.map
1778
+ //# sourceMappingURL=index.development.js.map