@solana/transactions 2.0.0-experimental.0108bc7 → 2.0.0-experimental.025ef21

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 (66) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +272 -5
  3. package/dist/index.browser.cjs +492 -292
  4. package/dist/index.browser.cjs.map +1 -1
  5. package/dist/index.browser.js +479 -293
  6. package/dist/index.browser.js.map +1 -1
  7. package/dist/index.native.js +479 -293
  8. package/dist/index.native.js.map +1 -1
  9. package/dist/index.node.cjs +490 -292
  10. package/dist/index.node.cjs.map +1 -1
  11. package/dist/index.node.js +477 -293
  12. package/dist/index.node.js.map +1 -1
  13. package/dist/types/accounts.d.ts +3 -3
  14. package/dist/types/accounts.d.ts.map +1 -1
  15. package/dist/types/blockhash.d.ts +5 -7
  16. package/dist/types/blockhash.d.ts.map +1 -1
  17. package/dist/types/compilable-transaction.d.ts +7 -0
  18. package/dist/types/compilable-transaction.d.ts.map +1 -0
  19. package/dist/types/compile-address-table-lookups.d.ts +3 -3
  20. package/dist/types/compile-address-table-lookups.d.ts.map +1 -1
  21. package/dist/types/compile-header.d.ts +1 -1
  22. package/dist/types/compile-instructions.d.ts +1 -1
  23. package/dist/types/compile-lifetime-token.d.ts +1 -1
  24. package/dist/types/compile-static-accounts.d.ts +3 -3
  25. package/dist/types/compile-static-accounts.d.ts.map +1 -1
  26. package/dist/types/compile-transaction.d.ts +6 -7
  27. package/dist/types/compile-transaction.d.ts.map +1 -1
  28. package/dist/types/create-transaction.d.ts +1 -1
  29. package/dist/types/decompile-transaction.d.ts +13 -0
  30. package/dist/types/decompile-transaction.d.ts.map +1 -0
  31. package/dist/types/durable-nonce.d.ts +11 -10
  32. package/dist/types/durable-nonce.d.ts.map +1 -1
  33. package/dist/types/fee-payer.d.ts +6 -5
  34. package/dist/types/fee-payer.d.ts.map +1 -1
  35. package/dist/types/index.d.ts +13 -8
  36. package/dist/types/index.d.ts.map +1 -1
  37. package/dist/types/instructions.d.ts +2 -2
  38. package/dist/types/message.d.ts +6 -10
  39. package/dist/types/message.d.ts.map +1 -1
  40. package/dist/types/serializers/address-table-lookup.d.ts +5 -3
  41. package/dist/types/serializers/address-table-lookup.d.ts.map +1 -1
  42. package/dist/types/serializers/header.d.ts +5 -3
  43. package/dist/types/serializers/header.d.ts.map +1 -1
  44. package/dist/types/serializers/index.d.ts +3 -0
  45. package/dist/types/serializers/index.d.ts.map +1 -0
  46. package/dist/types/serializers/instruction.d.ts +5 -3
  47. package/dist/types/serializers/instruction.d.ts.map +1 -1
  48. package/dist/types/serializers/message.d.ts +5 -5
  49. package/dist/types/serializers/message.d.ts.map +1 -1
  50. package/dist/types/serializers/transaction-version.d.ts +5 -5
  51. package/dist/types/serializers/transaction-version.d.ts.map +1 -1
  52. package/dist/types/serializers/transaction.d.ts +9 -5
  53. package/dist/types/serializers/transaction.d.ts.map +1 -1
  54. package/dist/types/signatures.d.ts +10 -6
  55. package/dist/types/signatures.d.ts.map +1 -1
  56. package/dist/types/types.d.ts +13 -13
  57. package/dist/types/types.d.ts.map +1 -1
  58. package/dist/types/unsigned-transaction.d.ts +1 -1
  59. package/dist/types/wire-transaction.d.ts +3 -3
  60. package/dist/types/wire-transaction.d.ts.map +1 -1
  61. package/package.json +26 -18
  62. package/dist/index.development.js +0 -1327
  63. package/dist/index.development.js.map +0 -1
  64. package/dist/index.production.min.js +0 -20
  65. package/dist/types/serializers/unimplemented.d.ts +0 -3
  66. package/dist/types/serializers/unimplemented.d.ts.map +0 -1
@@ -1,11 +1,38 @@
1
1
  'use strict';
2
2
 
3
- var umiSerializers = require('@metaplex-foundation/umi-serializers');
3
+ var codecsStrings = require('@solana/codecs-strings');
4
4
  var addresses = require('@solana/addresses');
5
+ var functional = require('@solana/functional');
6
+ var codecsCore = require('@solana/codecs-core');
7
+ var codecsDataStructures = require('@solana/codecs-data-structures');
8
+ var codecsNumbers = require('@solana/codecs-numbers');
9
+ var errors = require('@solana/errors');
5
10
  var keys = require('@solana/keys');
6
11
 
7
- // ../build-scripts/env-shim.ts
8
- var __DEV__ = /* @__PURE__ */ (() => process["env"].NODE_ENV === "development")();
12
+ // ../rpc-types/dist/index.browser.js
13
+ var base58Encoder;
14
+ function assertIsBlockhash(putativeBlockhash) {
15
+ if (!base58Encoder)
16
+ base58Encoder = codecsStrings.getBase58Encoder();
17
+ try {
18
+ if (
19
+ // Lowest value (32 bytes of zeroes)
20
+ putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
21
+ putativeBlockhash.length > 44
22
+ ) {
23
+ throw new Error("Expected input string to decode to a byte array of length 32.");
24
+ }
25
+ const bytes = base58Encoder.encode(putativeBlockhash);
26
+ const numBytes = bytes.byteLength;
27
+ if (numBytes !== 32) {
28
+ throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
29
+ }
30
+ } catch (e) {
31
+ throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
32
+ cause: e
33
+ });
34
+ }
35
+ }
9
36
 
10
37
  // src/unsigned-transaction.ts
11
38
  function getUnsignedTransaction(transaction) {
@@ -22,24 +49,20 @@ function getUnsignedTransaction(transaction) {
22
49
  }
23
50
 
24
51
  // src/blockhash.ts
25
- function assertIsBlockhash(putativeBlockhash) {
52
+ function isTransactionWithBlockhashLifetime(transaction) {
53
+ const lifetimeConstraintShapeMatches = "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.blockhash === "string" && typeof transaction.lifetimeConstraint.lastValidBlockHeight === "bigint";
54
+ if (!lifetimeConstraintShapeMatches)
55
+ return false;
26
56
  try {
27
- if (
28
- // Lowest value (32 bytes of zeroes)
29
- putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
30
- putativeBlockhash.length > 44
31
- ) {
32
- throw new Error("Expected input string to decode to a byte array of length 32.");
33
- }
34
- const bytes3 = umiSerializers.base58.serialize(putativeBlockhash);
35
- const numBytes = bytes3.byteLength;
36
- if (numBytes !== 32) {
37
- throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
38
- }
39
- } catch (e) {
40
- throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
41
- cause: e
42
- });
57
+ assertIsBlockhash(transaction.lifetimeConstraint.blockhash);
58
+ return true;
59
+ } catch {
60
+ return false;
61
+ }
62
+ }
63
+ function assertIsTransactionWithBlockhashLifetime(transaction) {
64
+ if (!isTransactionWithBlockhashLifetime(transaction)) {
65
+ throw new Error("Transaction does not have a blockhash lifetime");
43
66
  }
44
67
  }
45
68
  function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
@@ -117,7 +140,7 @@ function isAdvanceNonceAccountInstruction(instruction) {
117
140
  instruction.accounts?.length === 3 && // First account is nonce account address
118
141
  instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
119
142
  instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
120
- instruction.accounts[2].address != null && instruction.accounts[2].role === AccountRole.READONLY_SIGNER;
143
+ instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
121
144
  }
122
145
  function isAdvanceNonceAccountInstructionData(data) {
123
146
  return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
@@ -125,21 +148,38 @@ function isAdvanceNonceAccountInstructionData(data) {
125
148
  function isDurableNonceTransaction(transaction) {
126
149
  return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
127
150
  }
151
+ function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
152
+ return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
153
+ }
128
154
  function setTransactionLifetimeUsingDurableNonce({
129
155
  nonce,
130
156
  nonceAccountAddress,
131
157
  nonceAuthorityAddress
132
158
  }, transaction) {
133
- const isAlreadyDurableNonceTransaction = isDurableNonceTransaction(transaction);
134
- if (isAlreadyDurableNonceTransaction && transaction.lifetimeConstraint.nonce === nonce && transaction.instructions[0].accounts[0].address === nonceAccountAddress && transaction.instructions[0].accounts[2].address === nonceAuthorityAddress) {
135
- return transaction;
159
+ let newInstructions;
160
+ const firstInstruction = transaction.instructions[0];
161
+ if (firstInstruction && isAdvanceNonceAccountInstruction(firstInstruction)) {
162
+ if (isAdvanceNonceAccountInstructionForNonce(firstInstruction, nonceAccountAddress, nonceAuthorityAddress)) {
163
+ if (isDurableNonceTransaction(transaction) && transaction.lifetimeConstraint.nonce === nonce) {
164
+ return transaction;
165
+ } else {
166
+ newInstructions = [firstInstruction, ...transaction.instructions.slice(1)];
167
+ }
168
+ } else {
169
+ newInstructions = [
170
+ createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
171
+ ...transaction.instructions.slice(1)
172
+ ];
173
+ }
174
+ } else {
175
+ newInstructions = [
176
+ createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
177
+ ...transaction.instructions
178
+ ];
136
179
  }
137
180
  const out = {
138
181
  ...getUnsignedTransaction(transaction),
139
- instructions: [
140
- createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
141
- ...isAlreadyDurableNonceTransaction ? transaction.instructions.slice(1) : transaction.instructions
142
- ],
182
+ instructions: newInstructions,
143
183
  lifetimeConstraint: {
144
184
  nonce
145
185
  }
@@ -178,6 +218,151 @@ function prependTransactionInstruction(instruction, transaction) {
178
218
  Object.freeze(out);
179
219
  return out;
180
220
  }
221
+
222
+ // src/decompile-transaction.ts
223
+ function getAccountMetas(message) {
224
+ const { header } = message;
225
+ const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
226
+ const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
227
+ const accountMetas = [];
228
+ let accountIndex = 0;
229
+ for (let i = 0; i < numWritableSignerAccounts; i++) {
230
+ accountMetas.push({
231
+ address: message.staticAccounts[accountIndex],
232
+ role: AccountRole.WRITABLE_SIGNER
233
+ });
234
+ accountIndex++;
235
+ }
236
+ for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
237
+ accountMetas.push({
238
+ address: message.staticAccounts[accountIndex],
239
+ role: AccountRole.READONLY_SIGNER
240
+ });
241
+ accountIndex++;
242
+ }
243
+ for (let i = 0; i < numWritableNonSignerAccounts; i++) {
244
+ accountMetas.push({
245
+ address: message.staticAccounts[accountIndex],
246
+ role: AccountRole.WRITABLE
247
+ });
248
+ accountIndex++;
249
+ }
250
+ for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
251
+ accountMetas.push({
252
+ address: message.staticAccounts[accountIndex],
253
+ role: AccountRole.READONLY
254
+ });
255
+ accountIndex++;
256
+ }
257
+ return accountMetas;
258
+ }
259
+ function getAddressLookupMetas(compiledAddressTableLookups, addressesByLookupTableAddress) {
260
+ const compiledAddressTableLookupAddresses = compiledAddressTableLookups.map((l) => l.lookupTableAddress);
261
+ const missing = compiledAddressTableLookupAddresses.filter((a) => addressesByLookupTableAddress[a] === void 0);
262
+ if (missing.length > 0) {
263
+ const missingAddresses = missing.join(", ");
264
+ throw new Error(`Addresses not provided for lookup tables: [${missingAddresses}]`);
265
+ }
266
+ const readOnlyMetas = [];
267
+ const writableMetas = [];
268
+ for (const lookup of compiledAddressTableLookups) {
269
+ const addresses = addressesByLookupTableAddress[lookup.lookupTableAddress];
270
+ const highestIndex = Math.max(...lookup.readableIndices, ...lookup.writableIndices);
271
+ if (highestIndex >= addresses.length) {
272
+ throw new Error(
273
+ `Cannot look up index ${highestIndex} in lookup table [${lookup.lookupTableAddress}]. The lookup table may have been extended since the addresses provided were retrieved.`
274
+ );
275
+ }
276
+ const readOnlyForLookup = lookup.readableIndices.map((r) => ({
277
+ address: addresses[r],
278
+ addressIndex: r,
279
+ lookupTableAddress: lookup.lookupTableAddress,
280
+ role: AccountRole.READONLY
281
+ }));
282
+ readOnlyMetas.push(...readOnlyForLookup);
283
+ const writableForLookup = lookup.writableIndices.map((w) => ({
284
+ address: addresses[w],
285
+ addressIndex: w,
286
+ lookupTableAddress: lookup.lookupTableAddress,
287
+ role: AccountRole.WRITABLE
288
+ }));
289
+ writableMetas.push(...writableForLookup);
290
+ }
291
+ return [...writableMetas, ...readOnlyMetas];
292
+ }
293
+ function convertInstruction(instruction, accountMetas) {
294
+ const programAddress = accountMetas[instruction.programAddressIndex]?.address;
295
+ if (!programAddress) {
296
+ throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
297
+ }
298
+ const accounts = instruction.accountIndices?.map((accountIndex) => accountMetas[accountIndex]);
299
+ const { data } = instruction;
300
+ return {
301
+ programAddress,
302
+ ...accounts && accounts.length ? { accounts } : {},
303
+ ...data && data.length ? { data } : {}
304
+ };
305
+ }
306
+ function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
307
+ if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
308
+ return {
309
+ blockhash: messageLifetimeToken,
310
+ lastValidBlockHeight: lastValidBlockHeight ?? 2n ** 64n - 1n
311
+ // U64 MAX
312
+ };
313
+ } else {
314
+ const nonceAccountAddress = firstInstruction.accounts[0].address;
315
+ addresses.assertIsAddress(nonceAccountAddress);
316
+ const nonceAuthorityAddress = firstInstruction.accounts[2].address;
317
+ addresses.assertIsAddress(nonceAuthorityAddress);
318
+ return {
319
+ nonce: messageLifetimeToken,
320
+ nonceAccountAddress,
321
+ nonceAuthorityAddress
322
+ };
323
+ }
324
+ }
325
+ function convertSignatures(compiledTransaction) {
326
+ const {
327
+ compiledMessage: { staticAccounts },
328
+ signatures
329
+ } = compiledTransaction;
330
+ return signatures.reduce((acc, sig, index) => {
331
+ const allZeros = sig.every((byte) => byte === 0);
332
+ if (allZeros)
333
+ return acc;
334
+ const address = staticAccounts[index];
335
+ return { ...acc, [address]: sig };
336
+ }, {});
337
+ }
338
+ function decompileTransaction(compiledTransaction, config) {
339
+ const { compiledMessage } = compiledTransaction;
340
+ const feePayer = compiledMessage.staticAccounts[0];
341
+ if (!feePayer)
342
+ throw new Error("No fee payer set in CompiledTransaction");
343
+ const accountMetas = getAccountMetas(compiledMessage);
344
+ const accountLookupMetas = "addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups !== void 0 && compiledMessage.addressTableLookups.length > 0 ? getAddressLookupMetas(compiledMessage.addressTableLookups, config?.addressesByLookupTableAddress ?? {}) : [];
345
+ const transactionMetas = [...accountMetas, ...accountLookupMetas];
346
+ const instructions = compiledMessage.instructions.map(
347
+ (compiledInstruction) => convertInstruction(compiledInstruction, transactionMetas)
348
+ );
349
+ const firstInstruction = instructions[0];
350
+ const lifetimeConstraint = getLifetimeConstraint(
351
+ compiledMessage.lifetimeToken,
352
+ firstInstruction,
353
+ config?.lastValidBlockHeight
354
+ );
355
+ const signatures = convertSignatures(compiledTransaction);
356
+ return functional.pipe(
357
+ createTransaction({ version: compiledMessage.version }),
358
+ (tx) => setTransactionFeePayer(feePayer, tx),
359
+ (tx) => instructions.reduce((acc, instruction) => {
360
+ return appendTransactionInstruction(instruction, acc);
361
+ }, tx),
362
+ (tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
363
+ (tx) => Object.keys(signatures).length > 0 ? { ...tx, signatures } : tx
364
+ );
365
+ }
181
366
  function upsert(addressMap, address, update) {
182
367
  addressMap[address] = update(addressMap[address] ?? { role: AccountRole.READONLY });
183
368
  }
@@ -230,7 +415,7 @@ function getAddressMapFromInstructions(feePayer, instructions) {
230
415
  const shouldReplaceEntry = (
231
416
  // Consider using the new LOOKUP_TABLE if its address is different...
232
417
  entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
233
- (addressComparator || (addressComparator = addresses.getBase58EncodedAddressComparator()))(
418
+ (addressComparator ||= addresses.getAddressComparator())(
234
419
  accountMeta.lookupTableAddress,
235
420
  entry.lookupTableAddress
236
421
  ) < 0
@@ -336,7 +521,7 @@ function getOrderedAccountsFromAddressMap(addressMap) {
336
521
  if (leftIsWritable !== isWritableRole(rightEntry.role)) {
337
522
  return leftIsWritable ? -1 : 1;
338
523
  }
339
- addressComparator || (addressComparator = addresses.getBase58EncodedAddressComparator());
524
+ addressComparator ||= addresses.getAddressComparator();
340
525
  if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
341
526
  return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
342
527
  } else {
@@ -349,23 +534,22 @@ function getOrderedAccountsFromAddressMap(addressMap) {
349
534
  return orderedAccounts;
350
535
  }
351
536
  function getCompiledAddressTableLookups(orderedAccounts) {
352
- var _a;
353
537
  const index = {};
354
538
  for (const account of orderedAccounts) {
355
539
  if (!("lookupTableAddress" in account)) {
356
540
  continue;
357
541
  }
358
- const entry = index[_a = account.lookupTableAddress] || (index[_a] = {
542
+ const entry = index[account.lookupTableAddress] ||= {
359
543
  readableIndices: [],
360
544
  writableIndices: []
361
- });
545
+ };
362
546
  if (account.role === AccountRole.WRITABLE) {
363
547
  entry.writableIndices.push(account.addressIndex);
364
548
  } else {
365
549
  entry.readableIndices.push(account.addressIndex);
366
550
  }
367
551
  }
368
- return Object.keys(index).sort(addresses.getBase58EncodedAddressComparator()).map((lookupTableAddress) => ({
552
+ return Object.keys(index).sort(addresses.getAddressComparator()).map((lookupTableAddress) => ({
369
553
  lookupTableAddress,
370
554
  ...index[lookupTableAddress]
371
555
  }));
@@ -444,266 +628,215 @@ function compileMessage(transaction) {
444
628
  version: transaction.version
445
629
  };
446
630
  }
447
- function getAddressTableLookupCodec() {
448
- return umiSerializers.struct(
449
- [
450
- [
451
- "lookupTableAddress",
452
- addresses.getBase58EncodedAddressCodec(
453
- __DEV__ ? {
454
- description: "The address of the address lookup table account from which instruction addresses should be looked up"
455
- } : void 0
456
- )
457
- ],
631
+ var memoizedAddressTableLookupEncoder;
632
+ function getAddressTableLookupEncoder() {
633
+ if (!memoizedAddressTableLookupEncoder) {
634
+ memoizedAddressTableLookupEncoder = codecsDataStructures.getStructEncoder([
635
+ ["lookupTableAddress", addresses.getAddressEncoder()],
458
636
  [
459
637
  "writableIndices",
460
- umiSerializers.array(umiSerializers.u8(), {
461
- ...__DEV__ ? {
462
- description: "The indices of the accounts in the lookup table that should be loaded as writeable"
463
- } : null,
464
- size: umiSerializers.shortU16()
465
- })
638
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), { size: codecsNumbers.getShortU16Encoder() })
466
639
  ],
467
640
  [
468
641
  "readableIndices",
469
- umiSerializers.array(umiSerializers.u8(), {
470
- ...__DEV__ ? {
471
- description: "The indices of the accounts in the lookup table that should be loaded as read-only"
472
- } : void 0,
473
- size: umiSerializers.shortU16()
474
- })
642
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), { size: codecsNumbers.getShortU16Encoder() })
475
643
  ]
476
- ],
477
- __DEV__ ? {
478
- description: "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"
479
- } : void 0
480
- );
644
+ ]);
645
+ }
646
+ return memoizedAddressTableLookupEncoder;
647
+ }
648
+ var memoizedAddressTableLookupDecoder;
649
+ function getAddressTableLookupDecoder() {
650
+ if (!memoizedAddressTableLookupDecoder) {
651
+ memoizedAddressTableLookupDecoder = codecsDataStructures.getStructDecoder([
652
+ ["lookupTableAddress", addresses.getAddressDecoder()],
653
+ ["writableIndices", codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), { size: codecsNumbers.getShortU16Decoder() })],
654
+ ["readableIndices", codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), { size: codecsNumbers.getShortU16Decoder() })]
655
+ ]);
656
+ }
657
+ return memoizedAddressTableLookupDecoder;
658
+ }
659
+ var memoizedU8Encoder;
660
+ function getMemoizedU8Encoder() {
661
+ if (!memoizedU8Encoder)
662
+ memoizedU8Encoder = codecsNumbers.getU8Encoder();
663
+ return memoizedU8Encoder;
664
+ }
665
+ var memoizedU8Decoder;
666
+ function getMemoizedU8Decoder() {
667
+ if (!memoizedU8Decoder)
668
+ memoizedU8Decoder = codecsNumbers.getU8Decoder();
669
+ return memoizedU8Decoder;
670
+ }
671
+ function getMessageHeaderEncoder() {
672
+ return codecsDataStructures.getStructEncoder([
673
+ ["numSignerAccounts", getMemoizedU8Encoder()],
674
+ ["numReadonlySignerAccounts", getMemoizedU8Encoder()],
675
+ ["numReadonlyNonSignerAccounts", getMemoizedU8Encoder()]
676
+ ]);
481
677
  }
482
- function getMessageHeaderCodec() {
483
- return umiSerializers.struct(
484
- [
485
- [
486
- "numSignerAccounts",
487
- umiSerializers.u8(
488
- __DEV__ ? {
489
- description: "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction"
490
- } : void 0
491
- )
492
- ],
493
- [
494
- "numReadonlySignerAccounts",
495
- umiSerializers.u8(
496
- __DEV__ ? {
497
- description: "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"
498
- } : void 0
499
- )
500
- ],
501
- [
502
- "numReadonlyNonSignerAccounts",
503
- umiSerializers.u8(
504
- __DEV__ ? {
505
- description: "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable"
506
- } : void 0
507
- )
508
- ]
509
- ],
510
- __DEV__ ? {
511
- description: "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses"
512
- } : void 0
513
- );
678
+ function getMessageHeaderDecoder() {
679
+ return codecsDataStructures.getStructDecoder([
680
+ ["numSignerAccounts", getMemoizedU8Decoder()],
681
+ ["numReadonlySignerAccounts", getMemoizedU8Decoder()],
682
+ ["numReadonlyNonSignerAccounts", getMemoizedU8Decoder()]
683
+ ]);
514
684
  }
515
- function getInstructionCodec() {
516
- return umiSerializers.mapSerializer(
517
- umiSerializers.struct([
518
- [
519
- "programAddressIndex",
520
- umiSerializers.u8(
521
- __DEV__ ? {
522
- description: "The index of the program being called, according to the well-ordered accounts list for this transaction"
523
- } : void 0
524
- )
525
- ],
526
- [
527
- "accountIndices",
528
- umiSerializers.array(
529
- umiSerializers.u8({
530
- description: __DEV__ ? "The index of an account, according to the well-ordered accounts list for this transaction" : ""
531
- }),
532
- {
533
- description: __DEV__ ? "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" : "",
534
- size: umiSerializers.shortU16()
535
- }
536
- )
537
- ],
538
- [
539
- "data",
540
- umiSerializers.bytes({
541
- description: __DEV__ ? "An optional buffer of data passed to the instruction" : "",
542
- size: umiSerializers.shortU16()
543
- })
544
- ]
685
+ var memoizedGetInstructionEncoder;
686
+ function getInstructionEncoder() {
687
+ if (!memoizedGetInstructionEncoder) {
688
+ memoizedGetInstructionEncoder = codecsCore.mapEncoder(
689
+ codecsDataStructures.getStructEncoder([
690
+ ["programAddressIndex", codecsNumbers.getU8Encoder()],
691
+ ["accountIndices", codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), { size: codecsNumbers.getShortU16Encoder() })],
692
+ ["data", codecsDataStructures.getBytesEncoder({ size: codecsNumbers.getShortU16Encoder() })]
693
+ ]),
694
+ // Convert an instruction to have all fields defined
695
+ (instruction) => {
696
+ if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
697
+ return instruction;
698
+ }
699
+ return {
700
+ ...instruction,
701
+ accountIndices: instruction.accountIndices ?? [],
702
+ data: instruction.data ?? new Uint8Array(0)
703
+ };
704
+ }
705
+ );
706
+ }
707
+ return memoizedGetInstructionEncoder;
708
+ }
709
+ var memoizedGetInstructionDecoder;
710
+ function getInstructionDecoder() {
711
+ if (!memoizedGetInstructionDecoder) {
712
+ memoizedGetInstructionDecoder = codecsCore.mapDecoder(
713
+ codecsDataStructures.getStructDecoder([
714
+ ["programAddressIndex", codecsNumbers.getU8Decoder()],
715
+ ["accountIndices", codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), { size: codecsNumbers.getShortU16Decoder() })],
716
+ ["data", codecsDataStructures.getBytesDecoder({ size: codecsNumbers.getShortU16Decoder() })]
717
+ ]),
718
+ // Convert an instruction to exclude optional fields if they are empty
719
+ (instruction) => {
720
+ if (instruction.accountIndices.length && instruction.data.byteLength) {
721
+ return instruction;
722
+ }
723
+ const { accountIndices, data, ...rest } = instruction;
724
+ return {
725
+ ...rest,
726
+ ...accountIndices.length ? { accountIndices } : null,
727
+ ...data.byteLength ? { data } : null
728
+ };
729
+ }
730
+ );
731
+ }
732
+ return memoizedGetInstructionDecoder;
733
+ }
734
+ var VERSION_FLAG_MASK = 128;
735
+ function getTransactionVersionEncoder() {
736
+ return codecsCore.createEncoder({
737
+ getSizeFromValue: (value) => value === "legacy" ? 0 : 1,
738
+ maxSize: 1,
739
+ write: (value, bytes, offset) => {
740
+ if (value === "legacy") {
741
+ return offset;
742
+ }
743
+ if (value < 0 || value > 127) {
744
+ throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
745
+ }
746
+ bytes.set([value | VERSION_FLAG_MASK], offset);
747
+ return offset + 1;
748
+ }
749
+ });
750
+ }
751
+ function getTransactionVersionDecoder() {
752
+ return codecsCore.createDecoder({
753
+ maxSize: 1,
754
+ read: (bytes, offset) => {
755
+ const firstByte = bytes[offset];
756
+ if ((firstByte & VERSION_FLAG_MASK) === 0) {
757
+ return ["legacy", offset];
758
+ } else {
759
+ const version = firstByte ^ VERSION_FLAG_MASK;
760
+ return [version, offset + 1];
761
+ }
762
+ }
763
+ });
764
+ }
765
+
766
+ // src/serializers/message.ts
767
+ function getCompiledMessageLegacyEncoder() {
768
+ return codecsDataStructures.getStructEncoder(getPreludeStructEncoderTuple());
769
+ }
770
+ function getCompiledMessageVersionedEncoder() {
771
+ return codecsCore.mapEncoder(
772
+ codecsDataStructures.getStructEncoder([
773
+ ...getPreludeStructEncoderTuple(),
774
+ ["addressTableLookups", getAddressTableLookupArrayEncoder()]
545
775
  ]),
546
776
  (value) => {
547
- if (value.accountIndices !== void 0 && value.data !== void 0) {
777
+ if (value.version === "legacy") {
548
778
  return value;
549
779
  }
550
780
  return {
551
781
  ...value,
552
- accountIndices: value.accountIndices ?? [],
553
- data: value.data ?? new Uint8Array(0)
554
- };
555
- },
556
- (value) => {
557
- if (value.accountIndices.length && value.data.byteLength) {
558
- return value;
559
- }
560
- const { accountIndices, data, ...rest } = value;
561
- return {
562
- ...rest,
563
- ...accountIndices.length ? { accountIndices } : null,
564
- ...data.byteLength ? { data } : null
782
+ addressTableLookups: value.addressTableLookups ?? []
565
783
  };
566
784
  }
567
785
  );
568
786
  }
569
-
570
- // src/serializers/unimplemented.ts
571
- function getError(type, name) {
572
- const functionSuffix = name + type[0].toUpperCase() + type.slice(1);
573
- return new Error(
574
- `No ${type} exists for ${name}. Use \`get${functionSuffix}()\` if you need a ${type}, and \`get${name}Codec()\` if you need to both encode and decode ${name}`
575
- );
576
- }
577
- function getUnimplementedDecoder(name) {
578
- return () => {
579
- throw getError("decoder", name);
580
- };
581
- }
582
-
583
- // src/serializers/transaction-version.ts
584
- var VERSION_FLAG_MASK = 128;
585
- var BASE_CONFIG = {
586
- description: __DEV__ ? "A single byte that encodes the version of the transaction" : "",
587
- fixedSize: null,
588
- maxSize: 1
589
- };
590
- function deserialize(bytes3, offset = 0) {
591
- const firstByte = bytes3[offset];
592
- if ((firstByte & VERSION_FLAG_MASK) === 0) {
593
- return ["legacy", offset];
594
- } else {
595
- const version = firstByte ^ VERSION_FLAG_MASK;
596
- return [version, offset + 1];
597
- }
598
- }
599
- function serialize(value) {
600
- if (value === "legacy") {
601
- return new Uint8Array();
602
- }
603
- if (value < 0 || value > 127) {
604
- throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
605
- }
606
- return new Uint8Array([value | VERSION_FLAG_MASK]);
607
- }
608
- function getTransactionVersionCodec() {
609
- return {
610
- ...BASE_CONFIG,
611
- deserialize,
612
- serialize
613
- };
614
- }
615
-
616
- // src/serializers/message.ts
617
- var BASE_CONFIG2 = {
618
- description: __DEV__ ? "The wire format of a Solana transaction message" : "",
619
- fixedSize: null,
620
- maxSize: null
621
- };
622
- function serialize2(compiledMessage) {
623
- if (compiledMessage.version === "legacy") {
624
- return umiSerializers.struct(getPreludeStructSerializerTuple()).serialize(compiledMessage);
625
- } else {
626
- return umiSerializers.mapSerializer(
627
- umiSerializers.struct([
628
- ...getPreludeStructSerializerTuple(),
629
- ["addressTableLookups", getAddressTableLookupsSerializer()]
630
- ]),
631
- (value) => {
632
- if (value.version === "legacy") {
633
- return value;
634
- }
635
- return {
636
- ...value,
637
- addressTableLookups: value.addressTableLookups ?? []
638
- };
639
- }
640
- ).serialize(compiledMessage);
641
- }
787
+ function getPreludeStructEncoderTuple() {
788
+ return [
789
+ ["version", getTransactionVersionEncoder()],
790
+ ["header", getMessageHeaderEncoder()],
791
+ ["staticAccounts", codecsDataStructures.getArrayEncoder(addresses.getAddressEncoder(), { size: codecsNumbers.getShortU16Encoder() })],
792
+ ["lifetimeToken", codecsStrings.getStringEncoder({ encoding: codecsStrings.getBase58Encoder(), size: 32 })],
793
+ ["instructions", codecsDataStructures.getArrayEncoder(getInstructionEncoder(), { size: codecsNumbers.getShortU16Encoder() })]
794
+ ];
642
795
  }
643
- function getPreludeStructSerializerTuple() {
796
+ function getPreludeStructDecoderTuple() {
644
797
  return [
645
- ["version", getTransactionVersionCodec()],
646
- ["header", getMessageHeaderCodec()],
647
- [
648
- "staticAccounts",
649
- umiSerializers.array(addresses.getBase58EncodedAddressCodec(), {
650
- description: __DEV__ ? "A compact-array of static account addresses belonging to this transaction" : "",
651
- size: umiSerializers.shortU16()
652
- })
653
- ],
654
- [
655
- "lifetimeToken",
656
- umiSerializers.string({
657
- description: __DEV__ ? "A 32-byte token that specifies the lifetime of this transaction (eg. a recent blockhash, or a durable nonce)" : "",
658
- encoding: umiSerializers.base58,
659
- size: 32
660
- })
661
- ],
662
- [
663
- "instructions",
664
- umiSerializers.array(getInstructionCodec(), {
665
- description: __DEV__ ? "A compact-array of instructions belonging to this transaction" : "",
666
- size: umiSerializers.shortU16()
667
- })
668
- ]
798
+ ["version", getTransactionVersionDecoder()],
799
+ ["header", getMessageHeaderDecoder()],
800
+ ["staticAccounts", codecsDataStructures.getArrayDecoder(addresses.getAddressDecoder(), { size: codecsNumbers.getShortU16Decoder() })],
801
+ ["lifetimeToken", codecsStrings.getStringDecoder({ encoding: codecsStrings.getBase58Decoder(), size: 32 })],
802
+ ["instructions", codecsDataStructures.getArrayDecoder(getInstructionDecoder(), { size: codecsNumbers.getShortU16Decoder() })],
803
+ ["addressTableLookups", getAddressTableLookupArrayDecoder()]
669
804
  ];
670
805
  }
671
- function getAddressTableLookupsSerializer() {
672
- return umiSerializers.array(getAddressTableLookupCodec(), {
673
- ...__DEV__ ? { description: "A compact array of address table lookups belonging to this transaction" } : null,
674
- size: umiSerializers.shortU16()
675
- });
806
+ function getAddressTableLookupArrayEncoder() {
807
+ return codecsDataStructures.getArrayEncoder(getAddressTableLookupEncoder(), { size: codecsNumbers.getShortU16Encoder() });
808
+ }
809
+ function getAddressTableLookupArrayDecoder() {
810
+ return codecsDataStructures.getArrayDecoder(getAddressTableLookupDecoder(), { size: codecsNumbers.getShortU16Decoder() });
676
811
  }
677
812
  function getCompiledMessageEncoder() {
678
- return {
679
- ...BASE_CONFIG2,
680
- deserialize: getUnimplementedDecoder("CompiledMessage"),
681
- serialize: serialize2
682
- };
813
+ return codecsCore.createEncoder({
814
+ getSizeFromValue: (compiledMessage) => {
815
+ if (compiledMessage.version === "legacy") {
816
+ return getCompiledMessageLegacyEncoder().getSizeFromValue(compiledMessage);
817
+ } else {
818
+ return getCompiledMessageVersionedEncoder().getSizeFromValue(compiledMessage);
819
+ }
820
+ },
821
+ write: (compiledMessage, bytes, offset) => {
822
+ if (compiledMessage.version === "legacy") {
823
+ return getCompiledMessageLegacyEncoder().write(compiledMessage, bytes, offset);
824
+ } else {
825
+ return getCompiledMessageVersionedEncoder().write(compiledMessage, bytes, offset);
826
+ }
827
+ }
828
+ });
683
829
  }
684
-
685
- // src/signatures.ts
686
- async function getCompiledMessageSignature(message, secretKey) {
687
- const wireMessageBytes = getCompiledMessageEncoder().serialize(message);
688
- const signature = await keys.signBytes(secretKey, wireMessageBytes);
689
- return signature;
830
+ function getCompiledMessageDecoder() {
831
+ return codecsCore.mapDecoder(codecsDataStructures.getStructDecoder(getPreludeStructDecoderTuple()), ({ addressTableLookups, ...restOfMessage }) => {
832
+ if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
833
+ return restOfMessage;
834
+ }
835
+ return { ...restOfMessage, addressTableLookups };
836
+ });
690
837
  }
691
- async function signTransaction(keyPair, transaction) {
692
- const compiledMessage = compileMessage(transaction);
693
- const [signerPublicKey, signature] = await Promise.all([
694
- addresses.getBase58EncodedAddressFromPublicKey(keyPair.publicKey),
695
- getCompiledMessageSignature(compiledMessage, keyPair.privateKey)
696
- ]);
697
- const nextSignatures = {
698
- ..."signatures" in transaction ? transaction.signatures : null,
699
- ...{ [signerPublicKey]: signature }
700
- };
701
- const out = {
702
- ...transaction,
703
- signatures: nextSignatures
704
- };
705
- Object.freeze(out);
706
- return out;
838
+ function getCompiledMessageCodec() {
839
+ return codecsCore.combineCodec(getCompiledMessageEncoder(), getCompiledMessageDecoder());
707
840
  }
708
841
 
709
842
  // src/compile-transaction.ts
@@ -725,47 +858,114 @@ function getCompiledTransaction(transaction) {
725
858
  }
726
859
 
727
860
  // src/serializers/transaction.ts
728
- var BASE_CONFIG3 = {
729
- description: __DEV__ ? "The wire format of a Solana transaction" : "",
730
- fixedSize: null,
731
- maxSize: null
732
- };
733
- function serialize3(transaction) {
734
- const compiledTransaction = getCompiledTransaction(transaction);
735
- return umiSerializers.struct([
861
+ function getCompiledTransactionEncoder() {
862
+ return codecsDataStructures.getStructEncoder([
863
+ ["signatures", codecsDataStructures.getArrayEncoder(codecsDataStructures.getBytesEncoder({ size: 64 }), { size: codecsNumbers.getShortU16Encoder() })],
864
+ ["compiledMessage", getCompiledMessageEncoder()]
865
+ ]);
866
+ }
867
+ function getCompiledTransactionDecoder() {
868
+ return codecsDataStructures.getStructDecoder([
736
869
  [
737
870
  "signatures",
738
- umiSerializers.array(umiSerializers.bytes({ size: 64 }), {
739
- ...__DEV__ ? { description: "A compact array of 64-byte, base-64 encoded Ed25519 signatures" } : null,
740
- size: umiSerializers.shortU16()
871
+ codecsDataStructures.getArrayDecoder(codecsDataStructures.getBytesDecoder({ size: 64 }), {
872
+ size: codecsNumbers.getShortU16Decoder()
741
873
  })
742
874
  ],
743
- ["compiledMessage", getCompiledMessageEncoder()]
744
- ]).serialize(compiledTransaction);
875
+ ["compiledMessage", getCompiledMessageDecoder()]
876
+ ]);
745
877
  }
746
878
  function getTransactionEncoder() {
747
- return {
748
- ...BASE_CONFIG3,
749
- deserialize: getUnimplementedDecoder("CompiledMessage"),
750
- serialize: serialize3
879
+ return codecsCore.mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
880
+ }
881
+ function getTransactionDecoder(config) {
882
+ return codecsCore.mapDecoder(
883
+ getCompiledTransactionDecoder(),
884
+ (compiledTransaction) => decompileTransaction(compiledTransaction, config)
885
+ );
886
+ }
887
+ function getTransactionCodec(config) {
888
+ return codecsCore.combineCodec(getTransactionEncoder(), getTransactionDecoder(config));
889
+ }
890
+ var base58Decoder;
891
+ function getSignatureFromTransaction(transaction) {
892
+ if (!base58Decoder)
893
+ base58Decoder = codecsStrings.getBase58Decoder();
894
+ const signatureBytes = transaction.signatures[transaction.feePayer];
895
+ if (!signatureBytes) {
896
+ throw new errors.SolanaError(errors.SOLANA_ERROR__TRANSACTION_SIGNATURE_NOT_COMPUTABLE);
897
+ }
898
+ const transactionSignature = base58Decoder.decode(signatureBytes);
899
+ return transactionSignature;
900
+ }
901
+ async function partiallySignTransaction(keyPairs, transaction) {
902
+ const compiledMessage = compileMessage(transaction);
903
+ const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
904
+ const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
905
+ const publicKeySignaturePairs = await Promise.all(
906
+ keyPairs.map(
907
+ (keyPair) => Promise.all([addresses.getAddressFromPublicKey(keyPair.publicKey), keys.signBytes(keyPair.privateKey, wireMessageBytes)])
908
+ )
909
+ );
910
+ for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
911
+ nextSignatures[signerPublicKey] = signature;
912
+ }
913
+ const out = {
914
+ ...transaction,
915
+ signatures: nextSignatures
751
916
  };
917
+ Object.freeze(out);
918
+ return out;
752
919
  }
753
-
754
- // src/wire-transaction.ts
755
- function getBase64EncodedWireTransaction(transaction) {
756
- const wireTransactionBytes = getTransactionEncoder().serialize(transaction);
757
- {
758
- return btoa(String.fromCharCode(...wireTransactionBytes));
920
+ async function signTransaction(keyPairs, transaction) {
921
+ const out = await partiallySignTransaction(keyPairs, transaction);
922
+ assertTransactionIsFullySigned(out);
923
+ Object.freeze(out);
924
+ return out;
925
+ }
926
+ function assertTransactionIsFullySigned(transaction) {
927
+ const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => i.accounts?.filter((a) => isSignerRole(a.role)) ?? []).map((a) => a.address);
928
+ const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
929
+ const missingSigs = [];
930
+ requiredSigners.forEach((address) => {
931
+ if (!transaction.signatures[address]) {
932
+ missingSigs.push(address);
933
+ }
934
+ });
935
+ if (missingSigs.length > 0) {
936
+ throw new errors.SolanaError(errors.SOLANA_ERROR__TRANSACTION_MISSING_SIGNATURES, {
937
+ addresses: missingSigs
938
+ });
759
939
  }
760
940
  }
941
+ function getBase64EncodedWireTransaction(transaction) {
942
+ const wireTransactionBytes = getTransactionEncoder().encode(transaction);
943
+ return codecsStrings.getBase64Decoder().decode(wireTransactionBytes);
944
+ }
761
945
 
762
946
  exports.appendTransactionInstruction = appendTransactionInstruction;
763
- exports.assertIsBlockhash = assertIsBlockhash;
764
947
  exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
948
+ exports.assertIsTransactionWithBlockhashLifetime = assertIsTransactionWithBlockhashLifetime;
949
+ exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
950
+ exports.compileMessage = compileMessage;
765
951
  exports.createTransaction = createTransaction;
952
+ exports.decompileTransaction = decompileTransaction;
766
953
  exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
954
+ exports.getCompiledMessageCodec = getCompiledMessageCodec;
955
+ exports.getCompiledMessageDecoder = getCompiledMessageDecoder;
956
+ exports.getCompiledMessageEncoder = getCompiledMessageEncoder;
957
+ exports.getCompiledTransactionDecoder = getCompiledTransactionDecoder;
958
+ exports.getSignatureFromTransaction = getSignatureFromTransaction;
959
+ exports.getTransactionCodec = getTransactionCodec;
960
+ exports.getTransactionDecoder = getTransactionDecoder;
961
+ exports.getTransactionEncoder = getTransactionEncoder;
962
+ exports.getUnsignedTransaction = getUnsignedTransaction;
963
+ exports.isAdvanceNonceAccountInstruction = isAdvanceNonceAccountInstruction;
964
+ exports.partiallySignTransaction = partiallySignTransaction;
767
965
  exports.prependTransactionInstruction = prependTransactionInstruction;
768
966
  exports.setTransactionFeePayer = setTransactionFeePayer;
769
967
  exports.setTransactionLifetimeUsingBlockhash = setTransactionLifetimeUsingBlockhash;
770
968
  exports.setTransactionLifetimeUsingDurableNonce = setTransactionLifetimeUsingDurableNonce;
771
969
  exports.signTransaction = signTransaction;
970
+ //# sourceMappingURL=out.js.map
971
+ //# sourceMappingURL=index.browser.cjs.map