@solana/transactions 2.0.0-experimental.9e133fd → 2.0.0-experimental.9f08044

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