@solana/transactions 2.0.0-experimental.ee9f3d8 → 2.0.0-experimental.ef09aec

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 (41) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +272 -5
  3. package/dist/index.browser.cjs +1019 -39
  4. package/dist/index.browser.cjs.map +1 -1
  5. package/dist/index.browser.js +1003 -38
  6. package/dist/index.browser.js.map +1 -1
  7. package/dist/index.development.js +1734 -37
  8. package/dist/index.development.js.map +1 -1
  9. package/dist/index.native.js +1003 -38
  10. package/dist/index.native.js.map +1 -1
  11. package/dist/index.node.cjs +1019 -37
  12. package/dist/index.node.cjs.map +1 -1
  13. package/dist/index.node.js +1005 -38
  14. package/dist/index.node.js.map +1 -1
  15. package/dist/index.production.min.js +22 -5
  16. package/dist/types/accounts.d.ts +28 -0
  17. package/dist/types/blockhash.d.ts +9 -1
  18. package/dist/types/compilable-transaction.d.ts +7 -0
  19. package/dist/types/compile-address-table-lookups.d.ts +10 -0
  20. package/dist/types/compile-header.d.ts +9 -0
  21. package/dist/types/compile-instructions.d.ts +10 -0
  22. package/dist/types/compile-lifetime-token.d.ts +3 -0
  23. package/dist/types/compile-static-accounts.d.ts +4 -0
  24. package/dist/types/compile-transaction.d.ts +10 -0
  25. package/dist/types/decompile-transaction.d.ts +5 -0
  26. package/dist/types/durable-nonce.d.ts +23 -10
  27. package/dist/types/fee-payer.d.ts +4 -3
  28. package/dist/types/index.d.ts +4 -0
  29. package/dist/types/message.d.ts +26 -0
  30. package/dist/types/serializers/address-table-lookup.d.ts +8 -0
  31. package/dist/types/serializers/header.d.ts +8 -0
  32. package/dist/types/serializers/index.d.ts +3 -0
  33. package/dist/types/serializers/instruction.d.ts +8 -0
  34. package/dist/types/serializers/message.d.ts +6 -0
  35. package/dist/types/serializers/transaction-version.d.ts +6 -0
  36. package/dist/types/serializers/transaction.d.ts +7 -0
  37. package/dist/types/signatures.d.ts +10 -7
  38. package/dist/types/types.d.ts +13 -13
  39. package/dist/types/unsigned-transaction.d.ts +4 -0
  40. package/dist/types/wire-transaction.d.ts +6 -0
  41. package/package.json +22 -20
@@ -1,5 +1,66 @@
1
1
  'use strict';
2
2
 
3
+ var codecsStrings = require('@solana/codecs-strings');
4
+ var addresses = require('@solana/addresses');
5
+ var codecsCore = require('@solana/codecs-core');
6
+ var codecsDataStructures = require('@solana/codecs-data-structures');
7
+ var codecsNumbers = require('@solana/codecs-numbers');
8
+ var functional = require('@solana/functional');
9
+ var keys = require('@solana/keys');
10
+
11
+ // ../build-scripts/env-shim.ts
12
+ var __DEV__ = /* @__PURE__ */ (() => process["env"].NODE_ENV === "development")();
13
+
14
+ // src/unsigned-transaction.ts
15
+ function getUnsignedTransaction(transaction) {
16
+ if ("signatures" in transaction) {
17
+ const {
18
+ signatures: _,
19
+ // eslint-disable-line @typescript-eslint/no-unused-vars
20
+ ...unsignedTransaction
21
+ } = transaction;
22
+ return unsignedTransaction;
23
+ } else {
24
+ return transaction;
25
+ }
26
+ }
27
+
28
+ // src/blockhash.ts
29
+ var base58Encoder;
30
+ function assertIsBlockhash(putativeBlockhash) {
31
+ if (!base58Encoder)
32
+ base58Encoder = codecsStrings.getBase58Encoder();
33
+ try {
34
+ if (
35
+ // Lowest value (32 bytes of zeroes)
36
+ putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
37
+ putativeBlockhash.length > 44
38
+ ) {
39
+ throw new Error("Expected input string to decode to a byte array of length 32.");
40
+ }
41
+ const bytes = base58Encoder.encode(putativeBlockhash);
42
+ const numBytes = bytes.byteLength;
43
+ if (numBytes !== 32) {
44
+ throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
45
+ }
46
+ } catch (e) {
47
+ throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
48
+ cause: e
49
+ });
50
+ }
51
+ }
52
+ function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
53
+ if ("lifetimeConstraint" in transaction && transaction.lifetimeConstraint.blockhash === blockhashLifetimeConstraint.blockhash && transaction.lifetimeConstraint.lastValidBlockHeight === blockhashLifetimeConstraint.lastValidBlockHeight) {
54
+ return transaction;
55
+ }
56
+ const out = {
57
+ ...getUnsignedTransaction(transaction),
58
+ lifetimeConstraint: blockhashLifetimeConstraint
59
+ };
60
+ Object.freeze(out);
61
+ return out;
62
+ }
63
+
3
64
  // src/create-transaction.ts
4
65
  function createTransaction({
5
66
  version
@@ -12,69 +73,988 @@ function createTransaction({
12
73
  return out;
13
74
  }
14
75
 
76
+ // ../instructions/dist/index.browser.js
77
+ var AccountRole = /* @__PURE__ */ ((AccountRole2) => {
78
+ AccountRole2[AccountRole2["WRITABLE_SIGNER"] = /* 3 */
79
+ 3] = "WRITABLE_SIGNER";
80
+ AccountRole2[AccountRole2["READONLY_SIGNER"] = /* 2 */
81
+ 2] = "READONLY_SIGNER";
82
+ AccountRole2[AccountRole2["WRITABLE"] = /* 1 */
83
+ 1] = "WRITABLE";
84
+ AccountRole2[AccountRole2["READONLY"] = /* 0 */
85
+ 0] = "READONLY";
86
+ return AccountRole2;
87
+ })(AccountRole || {});
88
+ var IS_WRITABLE_BITMASK = 1;
89
+ function isSignerRole(role) {
90
+ return role >= 2;
91
+ }
92
+ function isWritableRole(role) {
93
+ return (role & IS_WRITABLE_BITMASK) !== 0;
94
+ }
95
+ function mergeRoles(roleA, roleB) {
96
+ return roleA | roleB;
97
+ }
98
+
99
+ // src/durable-nonce.ts
100
+ var RECENT_BLOCKHASHES_SYSVAR_ADDRESS = "SysvarRecentB1ockHashes11111111111111111111";
101
+ var SYSTEM_PROGRAM_ADDRESS = "11111111111111111111111111111111";
102
+ function assertIsDurableNonceTransaction(transaction) {
103
+ if (!isDurableNonceTransaction(transaction)) {
104
+ throw new Error("Transaction is not a durable nonce transaction");
105
+ }
106
+ }
107
+ function createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress) {
108
+ return {
109
+ accounts: [
110
+ { address: nonceAccountAddress, role: AccountRole.WRITABLE },
111
+ {
112
+ address: RECENT_BLOCKHASHES_SYSVAR_ADDRESS,
113
+ role: AccountRole.READONLY
114
+ },
115
+ { address: nonceAuthorityAddress, role: AccountRole.READONLY_SIGNER }
116
+ ],
117
+ data: new Uint8Array([4, 0, 0, 0]),
118
+ programAddress: SYSTEM_PROGRAM_ADDRESS
119
+ };
120
+ }
121
+ function isAdvanceNonceAccountInstruction(instruction) {
122
+ return instruction.programAddress === SYSTEM_PROGRAM_ADDRESS && // Test for `AdvanceNonceAccount` instruction data
123
+ instruction.data != null && isAdvanceNonceAccountInstructionData(instruction.data) && // Test for exactly 3 accounts
124
+ instruction.accounts?.length === 3 && // First account is nonce account address
125
+ instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
126
+ instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
127
+ instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
128
+ }
129
+ function isAdvanceNonceAccountInstructionData(data) {
130
+ return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
131
+ }
132
+ function isDurableNonceTransaction(transaction) {
133
+ return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
134
+ }
135
+ function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
136
+ return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
137
+ }
138
+ function setTransactionLifetimeUsingDurableNonce({
139
+ nonce,
140
+ nonceAccountAddress,
141
+ nonceAuthorityAddress
142
+ }, transaction) {
143
+ let newInstructions;
144
+ const firstInstruction = transaction.instructions[0];
145
+ if (firstInstruction && isAdvanceNonceAccountInstruction(firstInstruction)) {
146
+ if (isAdvanceNonceAccountInstructionForNonce(firstInstruction, nonceAccountAddress, nonceAuthorityAddress)) {
147
+ if (isDurableNonceTransaction(transaction) && transaction.lifetimeConstraint.nonce === nonce) {
148
+ return transaction;
149
+ } else {
150
+ newInstructions = [firstInstruction, ...transaction.instructions.slice(1)];
151
+ }
152
+ } else {
153
+ newInstructions = [
154
+ createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
155
+ ...transaction.instructions.slice(1)
156
+ ];
157
+ }
158
+ } else {
159
+ newInstructions = [
160
+ createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
161
+ ...transaction.instructions
162
+ ];
163
+ }
164
+ const out = {
165
+ ...getUnsignedTransaction(transaction),
166
+ instructions: newInstructions,
167
+ lifetimeConstraint: {
168
+ nonce
169
+ }
170
+ };
171
+ Object.freeze(out);
172
+ return out;
173
+ }
174
+
15
175
  // src/fee-payer.ts
16
176
  function setTransactionFeePayer(feePayer, transaction) {
17
177
  if ("feePayer" in transaction && feePayer === transaction.feePayer) {
18
178
  return transaction;
19
179
  }
20
- let out;
21
- if ("signatures" in transaction) {
22
- const {
23
- signatures: _,
24
- // eslint-disable-line @typescript-eslint/no-unused-vars
25
- ...unsignedTransaction
26
- } = transaction;
27
- out = {
28
- ...unsignedTransaction,
29
- feePayer
30
- };
31
- } else {
32
- out = {
33
- ...transaction,
34
- feePayer
35
- };
36
- }
180
+ const out = {
181
+ ...getUnsignedTransaction(transaction),
182
+ feePayer
183
+ };
37
184
  Object.freeze(out);
38
185
  return out;
39
186
  }
40
187
 
41
188
  // src/instructions.ts
42
- function replaceInstructions(transaction, nextInstructions) {
43
- let out;
189
+ function appendTransactionInstruction(instruction, transaction) {
190
+ const out = {
191
+ ...getUnsignedTransaction(transaction),
192
+ instructions: [...transaction.instructions, instruction]
193
+ };
194
+ Object.freeze(out);
195
+ return out;
196
+ }
197
+ function prependTransactionInstruction(instruction, transaction) {
198
+ const out = {
199
+ ...getUnsignedTransaction(transaction),
200
+ instructions: [instruction, ...transaction.instructions]
201
+ };
202
+ Object.freeze(out);
203
+ return out;
204
+ }
205
+ function upsert(addressMap, address, update) {
206
+ addressMap[address] = update(addressMap[address] ?? { role: AccountRole.READONLY });
207
+ }
208
+ var TYPE = Symbol("AddressMapTypeProperty");
209
+ function getAddressMapFromInstructions(feePayer, instructions) {
210
+ const addressMap = {
211
+ [feePayer]: { [TYPE]: 0 /* FEE_PAYER */, role: AccountRole.WRITABLE_SIGNER }
212
+ };
213
+ const addressesOfInvokedPrograms = /* @__PURE__ */ new Set();
214
+ for (const instruction of instructions) {
215
+ upsert(addressMap, instruction.programAddress, (entry) => {
216
+ addressesOfInvokedPrograms.add(instruction.programAddress);
217
+ if (TYPE in entry) {
218
+ if (isWritableRole(entry.role)) {
219
+ switch (entry[TYPE]) {
220
+ case 0 /* FEE_PAYER */:
221
+ throw new Error(
222
+ `This transaction includes an address (\`${instruction.programAddress}\`) which is both invoked and set as the fee payer. Program addresses may not pay fees.`
223
+ );
224
+ default:
225
+ throw new Error(
226
+ `This transaction includes an address (\`${instruction.programAddress}\`) which is both invoked and marked writable. Program addresses may not be writable.`
227
+ );
228
+ }
229
+ }
230
+ if (entry[TYPE] === 2 /* STATIC */) {
231
+ return entry;
232
+ }
233
+ }
234
+ return { [TYPE]: 2 /* STATIC */, role: AccountRole.READONLY };
235
+ });
236
+ let addressComparator;
237
+ if (!instruction.accounts) {
238
+ continue;
239
+ }
240
+ for (const account of instruction.accounts) {
241
+ upsert(addressMap, account.address, (entry) => {
242
+ const {
243
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
244
+ address: _,
245
+ ...accountMeta
246
+ } = account;
247
+ if (TYPE in entry) {
248
+ switch (entry[TYPE]) {
249
+ case 0 /* FEE_PAYER */:
250
+ return entry;
251
+ case 1 /* LOOKUP_TABLE */: {
252
+ const nextRole = mergeRoles(entry.role, accountMeta.role);
253
+ if ("lookupTableAddress" in accountMeta) {
254
+ const shouldReplaceEntry = (
255
+ // Consider using the new LOOKUP_TABLE if its address is different...
256
+ entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
257
+ (addressComparator ||= addresses.getAddressComparator())(
258
+ accountMeta.lookupTableAddress,
259
+ entry.lookupTableAddress
260
+ ) < 0
261
+ );
262
+ if (shouldReplaceEntry) {
263
+ return {
264
+ [TYPE]: 1 /* LOOKUP_TABLE */,
265
+ ...accountMeta,
266
+ role: nextRole
267
+ };
268
+ }
269
+ } else if (isSignerRole(accountMeta.role)) {
270
+ return {
271
+ [TYPE]: 2 /* STATIC */,
272
+ role: nextRole
273
+ };
274
+ }
275
+ if (entry.role !== nextRole) {
276
+ return {
277
+ ...entry,
278
+ role: nextRole
279
+ };
280
+ } else {
281
+ return entry;
282
+ }
283
+ }
284
+ case 2 /* STATIC */: {
285
+ const nextRole = mergeRoles(entry.role, accountMeta.role);
286
+ if (
287
+ // Check to see if this address represents a program that is invoked
288
+ // in this transaction.
289
+ addressesOfInvokedPrograms.has(account.address)
290
+ ) {
291
+ if (isWritableRole(accountMeta.role)) {
292
+ throw new Error(
293
+ `This transaction includes an address (\`${account.address}\`) which is both invoked and marked writable. Program addresses may not be writable.`
294
+ );
295
+ }
296
+ if (entry.role !== nextRole) {
297
+ return {
298
+ ...entry,
299
+ role: nextRole
300
+ };
301
+ } else {
302
+ return entry;
303
+ }
304
+ } else if ("lookupTableAddress" in accountMeta && // Static accounts can be 'upgraded' to lookup table accounts as
305
+ // long as they are not require to sign the transaction.
306
+ !isSignerRole(entry.role)) {
307
+ return {
308
+ ...accountMeta,
309
+ [TYPE]: 1 /* LOOKUP_TABLE */,
310
+ role: nextRole
311
+ };
312
+ } else {
313
+ if (entry.role !== nextRole) {
314
+ return {
315
+ ...entry,
316
+ role: nextRole
317
+ };
318
+ } else {
319
+ return entry;
320
+ }
321
+ }
322
+ }
323
+ }
324
+ }
325
+ if ("lookupTableAddress" in accountMeta) {
326
+ return {
327
+ ...accountMeta,
328
+ [TYPE]: 1 /* LOOKUP_TABLE */
329
+ };
330
+ } else {
331
+ return {
332
+ ...accountMeta,
333
+ [TYPE]: 2 /* STATIC */
334
+ };
335
+ }
336
+ });
337
+ }
338
+ }
339
+ return addressMap;
340
+ }
341
+ function getOrderedAccountsFromAddressMap(addressMap) {
342
+ let addressComparator;
343
+ const orderedAccounts = Object.entries(addressMap).sort(([leftAddress, leftEntry], [rightAddress, rightEntry]) => {
344
+ if (leftEntry[TYPE] !== rightEntry[TYPE]) {
345
+ if (leftEntry[TYPE] === 0 /* FEE_PAYER */) {
346
+ return -1;
347
+ } else if (rightEntry[TYPE] === 0 /* FEE_PAYER */) {
348
+ return 1;
349
+ } else if (leftEntry[TYPE] === 2 /* STATIC */) {
350
+ return -1;
351
+ } else if (rightEntry[TYPE] === 2 /* STATIC */) {
352
+ return 1;
353
+ }
354
+ }
355
+ const leftIsSigner = isSignerRole(leftEntry.role);
356
+ if (leftIsSigner !== isSignerRole(rightEntry.role)) {
357
+ return leftIsSigner ? -1 : 1;
358
+ }
359
+ const leftIsWritable = isWritableRole(leftEntry.role);
360
+ if (leftIsWritable !== isWritableRole(rightEntry.role)) {
361
+ return leftIsWritable ? -1 : 1;
362
+ }
363
+ addressComparator ||= addresses.getAddressComparator();
364
+ if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
365
+ return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
366
+ } else {
367
+ return addressComparator(leftAddress, rightAddress);
368
+ }
369
+ }).map(([address, addressMeta]) => ({
370
+ address,
371
+ ...addressMeta
372
+ }));
373
+ return orderedAccounts;
374
+ }
375
+ function getCompiledAddressTableLookups(orderedAccounts) {
376
+ const index = {};
377
+ for (const account of orderedAccounts) {
378
+ if (!("lookupTableAddress" in account)) {
379
+ continue;
380
+ }
381
+ const entry = index[account.lookupTableAddress] ||= {
382
+ readableIndices: [],
383
+ writableIndices: []
384
+ };
385
+ if (account.role === AccountRole.WRITABLE) {
386
+ entry.writableIndices.push(account.addressIndex);
387
+ } else {
388
+ entry.readableIndices.push(account.addressIndex);
389
+ }
390
+ }
391
+ return Object.keys(index).sort(addresses.getAddressComparator()).map((lookupTableAddress) => ({
392
+ lookupTableAddress,
393
+ ...index[lookupTableAddress]
394
+ }));
395
+ }
396
+
397
+ // src/compile-header.ts
398
+ function getCompiledMessageHeader(orderedAccounts) {
399
+ let numReadonlyNonSignerAccounts = 0;
400
+ let numReadonlySignerAccounts = 0;
401
+ let numSignerAccounts = 0;
402
+ for (const account of orderedAccounts) {
403
+ if ("lookupTableAddress" in account) {
404
+ break;
405
+ }
406
+ const accountIsWritable = isWritableRole(account.role);
407
+ if (isSignerRole(account.role)) {
408
+ numSignerAccounts++;
409
+ if (!accountIsWritable) {
410
+ numReadonlySignerAccounts++;
411
+ }
412
+ } else if (!accountIsWritable) {
413
+ numReadonlyNonSignerAccounts++;
414
+ }
415
+ }
416
+ return {
417
+ numReadonlyNonSignerAccounts,
418
+ numReadonlySignerAccounts,
419
+ numSignerAccounts
420
+ };
421
+ }
422
+
423
+ // src/compile-instructions.ts
424
+ function getAccountIndex(orderedAccounts) {
425
+ const out = {};
426
+ for (const [index, account] of orderedAccounts.entries()) {
427
+ out[account.address] = index;
428
+ }
429
+ return out;
430
+ }
431
+ function getCompiledInstructions(instructions, orderedAccounts) {
432
+ const accountIndex = getAccountIndex(orderedAccounts);
433
+ return instructions.map(({ accounts, data, programAddress }) => {
434
+ return {
435
+ programAddressIndex: accountIndex[programAddress],
436
+ ...accounts ? { accountIndices: accounts.map(({ address }) => accountIndex[address]) } : null,
437
+ ...data ? { data } : null
438
+ };
439
+ });
440
+ }
441
+
442
+ // src/compile-lifetime-token.ts
443
+ function getCompiledLifetimeToken(lifetimeConstraint) {
444
+ if ("nonce" in lifetimeConstraint) {
445
+ return lifetimeConstraint.nonce;
446
+ }
447
+ return lifetimeConstraint.blockhash;
448
+ }
449
+
450
+ // src/compile-static-accounts.ts
451
+ function getCompiledStaticAccounts(orderedAccounts) {
452
+ const firstLookupTableAccountIndex = orderedAccounts.findIndex((account) => "lookupTableAddress" in account);
453
+ const orderedStaticAccounts = firstLookupTableAccountIndex === -1 ? orderedAccounts : orderedAccounts.slice(0, firstLookupTableAccountIndex);
454
+ return orderedStaticAccounts.map(({ address }) => address);
455
+ }
456
+
457
+ // src/message.ts
458
+ function compileMessage(transaction) {
459
+ const addressMap = getAddressMapFromInstructions(transaction.feePayer, transaction.instructions);
460
+ const orderedAccounts = getOrderedAccountsFromAddressMap(addressMap);
461
+ return {
462
+ ...transaction.version !== "legacy" ? { addressTableLookups: getCompiledAddressTableLookups(orderedAccounts) } : null,
463
+ header: getCompiledMessageHeader(orderedAccounts),
464
+ instructions: getCompiledInstructions(transaction.instructions, orderedAccounts),
465
+ lifetimeToken: getCompiledLifetimeToken(transaction.lifetimeConstraint),
466
+ staticAccounts: getCompiledStaticAccounts(orderedAccounts),
467
+ version: transaction.version
468
+ };
469
+ }
470
+ var lookupTableAddressDescription = __DEV__ ? "The address of the address lookup table account from which instruction addresses should be looked up" : "lookupTableAddress";
471
+ var writableIndicesDescription = __DEV__ ? "The indices of the accounts in the lookup table that should be loaded as writeable" : "writableIndices";
472
+ var readableIndicesDescription = __DEV__ ? "The indices of the accounts in the lookup table that should be loaded as read-only" : "readableIndices";
473
+ var addressTableLookupDescription = __DEV__ ? "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" : "addressTableLookup";
474
+ var memoizedAddressTableLookupEncoder;
475
+ function getAddressTableLookupEncoder() {
476
+ if (!memoizedAddressTableLookupEncoder) {
477
+ memoizedAddressTableLookupEncoder = codecsDataStructures.getStructEncoder(
478
+ [
479
+ ["lookupTableAddress", addresses.getAddressEncoder({ description: lookupTableAddressDescription })],
480
+ [
481
+ "writableIndices",
482
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), {
483
+ description: writableIndicesDescription,
484
+ size: codecsNumbers.getShortU16Encoder()
485
+ })
486
+ ],
487
+ [
488
+ "readableIndices",
489
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), {
490
+ description: readableIndicesDescription,
491
+ size: codecsNumbers.getShortU16Encoder()
492
+ })
493
+ ]
494
+ ],
495
+ { description: addressTableLookupDescription }
496
+ );
497
+ }
498
+ return memoizedAddressTableLookupEncoder;
499
+ }
500
+ var memoizedAddressTableLookupDecoder;
501
+ function getAddressTableLookupDecoder() {
502
+ if (!memoizedAddressTableLookupDecoder) {
503
+ memoizedAddressTableLookupDecoder = codecsDataStructures.getStructDecoder(
504
+ [
505
+ ["lookupTableAddress", addresses.getAddressDecoder({ description: lookupTableAddressDescription })],
506
+ [
507
+ "writableIndices",
508
+ codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), {
509
+ description: writableIndicesDescription,
510
+ size: codecsNumbers.getShortU16Decoder()
511
+ })
512
+ ],
513
+ [
514
+ "readableIndices",
515
+ codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), {
516
+ description: readableIndicesDescription,
517
+ size: codecsNumbers.getShortU16Decoder()
518
+ })
519
+ ]
520
+ ],
521
+ { description: addressTableLookupDescription }
522
+ );
523
+ }
524
+ return memoizedAddressTableLookupDecoder;
525
+ }
526
+ var memoizedU8Encoder;
527
+ function getMemoizedU8Encoder() {
528
+ if (!memoizedU8Encoder)
529
+ memoizedU8Encoder = codecsNumbers.getU8Encoder();
530
+ return memoizedU8Encoder;
531
+ }
532
+ function getMemoizedU8EncoderDescription(description) {
533
+ const encoder = getMemoizedU8Encoder();
534
+ return {
535
+ ...encoder,
536
+ description: description ?? encoder.description
537
+ };
538
+ }
539
+ var memoizedU8Decoder;
540
+ function getMemoizedU8Decoder() {
541
+ if (!memoizedU8Decoder)
542
+ memoizedU8Decoder = codecsNumbers.getU8Decoder();
543
+ return memoizedU8Decoder;
544
+ }
545
+ function getMemoizedU8DecoderDescription(description) {
546
+ const decoder = getMemoizedU8Decoder();
547
+ return {
548
+ ...decoder,
549
+ description: description ?? decoder.description
550
+ };
551
+ }
552
+ 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;
553
+ 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;
554
+ var numReadonlyNonSignerAccountsDescription = __DEV__ ? "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable" : void 0;
555
+ var messageHeaderDescription = __DEV__ ? "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses" : void 0;
556
+ function getMessageHeaderEncoder() {
557
+ return codecsDataStructures.getStructEncoder(
558
+ [
559
+ ["numSignerAccounts", getMemoizedU8EncoderDescription(numSignerAccountsDescription)],
560
+ ["numReadonlySignerAccounts", getMemoizedU8EncoderDescription(numReadonlySignerAccountsDescription)],
561
+ ["numReadonlyNonSignerAccounts", getMemoizedU8EncoderDescription(numReadonlyNonSignerAccountsDescription)]
562
+ ],
563
+ {
564
+ description: messageHeaderDescription
565
+ }
566
+ );
567
+ }
568
+ function getMessageHeaderDecoder() {
569
+ return codecsDataStructures.getStructDecoder(
570
+ [
571
+ ["numSignerAccounts", getMemoizedU8DecoderDescription(numSignerAccountsDescription)],
572
+ ["numReadonlySignerAccounts", getMemoizedU8DecoderDescription(numReadonlySignerAccountsDescription)],
573
+ ["numReadonlyNonSignerAccounts", getMemoizedU8DecoderDescription(numReadonlyNonSignerAccountsDescription)]
574
+ ],
575
+ {
576
+ description: messageHeaderDescription
577
+ }
578
+ );
579
+ }
580
+ var programAddressIndexDescription = __DEV__ ? "The index of the program being called, according to the well-ordered accounts list for this transaction" : "programAddressIndex";
581
+ var accountIndexDescription = __DEV__ ? "The index of an account, according to the well-ordered accounts list for this transaction" : void 0;
582
+ var accountIndicesDescription = __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" : "accountIndices";
583
+ var dataDescription = __DEV__ ? "An optional buffer of data passed to the instruction" : "data";
584
+ var memoizedGetInstructionEncoder;
585
+ function getInstructionEncoder() {
586
+ if (!memoizedGetInstructionEncoder) {
587
+ memoizedGetInstructionEncoder = codecsCore.mapEncoder(
588
+ codecsDataStructures.getStructEncoder([
589
+ ["programAddressIndex", codecsNumbers.getU8Encoder({ description: programAddressIndexDescription })],
590
+ [
591
+ "accountIndices",
592
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder({ description: accountIndexDescription }), {
593
+ description: accountIndicesDescription,
594
+ size: codecsNumbers.getShortU16Encoder()
595
+ })
596
+ ],
597
+ ["data", codecsDataStructures.getBytesEncoder({ description: dataDescription, size: codecsNumbers.getShortU16Encoder() })]
598
+ ]),
599
+ // Convert an instruction to have all fields defined
600
+ (instruction) => {
601
+ if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
602
+ return instruction;
603
+ }
604
+ return {
605
+ ...instruction,
606
+ accountIndices: instruction.accountIndices ?? [],
607
+ data: instruction.data ?? new Uint8Array(0)
608
+ };
609
+ }
610
+ );
611
+ }
612
+ return memoizedGetInstructionEncoder;
613
+ }
614
+ var memoizedGetInstructionDecoder;
615
+ function getInstructionDecoder() {
616
+ if (!memoizedGetInstructionDecoder) {
617
+ memoizedGetInstructionDecoder = codecsCore.mapDecoder(
618
+ codecsDataStructures.getStructDecoder([
619
+ ["programAddressIndex", codecsNumbers.getU8Decoder({ description: programAddressIndexDescription })],
620
+ [
621
+ "accountIndices",
622
+ codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder({ description: accountIndexDescription }), {
623
+ description: accountIndicesDescription,
624
+ size: codecsNumbers.getShortU16Decoder()
625
+ })
626
+ ],
627
+ ["data", codecsDataStructures.getBytesDecoder({ description: dataDescription, size: codecsNumbers.getShortU16Decoder() })]
628
+ ]),
629
+ // Convert an instruction to exclude optional fields if they are empty
630
+ (instruction) => {
631
+ if (instruction.accountIndices.length && instruction.data.byteLength) {
632
+ return instruction;
633
+ }
634
+ const { accountIndices, data, ...rest } = instruction;
635
+ return {
636
+ ...rest,
637
+ ...accountIndices.length ? { accountIndices } : null,
638
+ ...data.byteLength ? { data } : null
639
+ };
640
+ }
641
+ );
642
+ }
643
+ return memoizedGetInstructionDecoder;
644
+ }
645
+ var VERSION_FLAG_MASK = 128;
646
+ var BASE_CONFIG = {
647
+ description: __DEV__ ? "A single byte that encodes the version of the transaction" : "",
648
+ fixedSize: null,
649
+ maxSize: 1
650
+ };
651
+ function decode(bytes, offset = 0) {
652
+ const firstByte = bytes[offset];
653
+ if ((firstByte & VERSION_FLAG_MASK) === 0) {
654
+ return ["legacy", offset];
655
+ } else {
656
+ const version = firstByte ^ VERSION_FLAG_MASK;
657
+ return [version, offset + 1];
658
+ }
659
+ }
660
+ function encode(value) {
661
+ if (value === "legacy") {
662
+ return new Uint8Array();
663
+ }
664
+ if (value < 0 || value > 127) {
665
+ throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
666
+ }
667
+ return new Uint8Array([value | VERSION_FLAG_MASK]);
668
+ }
669
+ function getTransactionVersionDecoder() {
670
+ return {
671
+ ...BASE_CONFIG,
672
+ decode
673
+ };
674
+ }
675
+ function getTransactionVersionEncoder() {
676
+ return {
677
+ ...BASE_CONFIG,
678
+ encode
679
+ };
680
+ }
681
+
682
+ // src/serializers/message.ts
683
+ var staticAccountsDescription = __DEV__ ? "A compact-array of static account addresses belonging to this transaction" : "staticAccounts";
684
+ var lifetimeTokenDescription = __DEV__ ? "A 32-byte token that specifies the lifetime of this transaction (eg. a recent blockhash, or a durable nonce)" : "lifetimeToken";
685
+ var instructionsDescription = __DEV__ ? "A compact-array of instructions belonging to this transaction" : "instructions";
686
+ var addressTableLookupsDescription = __DEV__ ? "A compact array of address table lookups belonging to this transaction" : "addressTableLookups";
687
+ function getCompiledMessageLegacyEncoder() {
688
+ return codecsDataStructures.getStructEncoder(getPreludeStructEncoderTuple());
689
+ }
690
+ function getCompiledMessageVersionedEncoder() {
691
+ return codecsCore.mapEncoder(
692
+ codecsDataStructures.getStructEncoder([
693
+ ...getPreludeStructEncoderTuple(),
694
+ ["addressTableLookups", getAddressTableLookupArrayEncoder()]
695
+ ]),
696
+ (value) => {
697
+ if (value.version === "legacy") {
698
+ return value;
699
+ }
700
+ return {
701
+ ...value,
702
+ addressTableLookups: value.addressTableLookups ?? []
703
+ };
704
+ }
705
+ );
706
+ }
707
+ function getPreludeStructEncoderTuple() {
708
+ return [
709
+ ["version", getTransactionVersionEncoder()],
710
+ ["header", getMessageHeaderEncoder()],
711
+ [
712
+ "staticAccounts",
713
+ codecsDataStructures.getArrayEncoder(addresses.getAddressEncoder(), {
714
+ description: staticAccountsDescription,
715
+ size: codecsNumbers.getShortU16Encoder()
716
+ })
717
+ ],
718
+ [
719
+ "lifetimeToken",
720
+ codecsStrings.getStringEncoder({
721
+ description: lifetimeTokenDescription,
722
+ encoding: codecsStrings.getBase58Encoder(),
723
+ size: 32
724
+ })
725
+ ],
726
+ [
727
+ "instructions",
728
+ codecsDataStructures.getArrayEncoder(getInstructionEncoder(), {
729
+ description: instructionsDescription,
730
+ size: codecsNumbers.getShortU16Encoder()
731
+ })
732
+ ]
733
+ ];
734
+ }
735
+ function getPreludeStructDecoderTuple() {
736
+ return [
737
+ ["version", getTransactionVersionDecoder()],
738
+ ["header", getMessageHeaderDecoder()],
739
+ [
740
+ "staticAccounts",
741
+ codecsDataStructures.getArrayDecoder(addresses.getAddressDecoder(), {
742
+ description: staticAccountsDescription,
743
+ size: codecsNumbers.getShortU16Decoder()
744
+ })
745
+ ],
746
+ [
747
+ "lifetimeToken",
748
+ codecsStrings.getStringDecoder({
749
+ description: lifetimeTokenDescription,
750
+ encoding: codecsStrings.getBase58Decoder(),
751
+ size: 32
752
+ })
753
+ ],
754
+ [
755
+ "instructions",
756
+ codecsDataStructures.getArrayDecoder(getInstructionDecoder(), {
757
+ description: instructionsDescription,
758
+ size: codecsNumbers.getShortU16Decoder()
759
+ })
760
+ ],
761
+ ["addressTableLookups", getAddressTableLookupArrayDecoder()]
762
+ ];
763
+ }
764
+ function getAddressTableLookupArrayEncoder() {
765
+ return codecsDataStructures.getArrayEncoder(getAddressTableLookupEncoder(), {
766
+ description: addressTableLookupsDescription,
767
+ size: codecsNumbers.getShortU16Encoder()
768
+ });
769
+ }
770
+ function getAddressTableLookupArrayDecoder() {
771
+ return codecsDataStructures.getArrayDecoder(getAddressTableLookupDecoder(), {
772
+ description: addressTableLookupsDescription,
773
+ size: codecsNumbers.getShortU16Decoder()
774
+ });
775
+ }
776
+ var messageDescription = __DEV__ ? "The wire format of a Solana transaction message" : "message";
777
+ function getCompiledMessageEncoder() {
778
+ return {
779
+ description: messageDescription,
780
+ encode: (compiledMessage) => {
781
+ if (compiledMessage.version === "legacy") {
782
+ return getCompiledMessageLegacyEncoder().encode(compiledMessage);
783
+ } else {
784
+ return getCompiledMessageVersionedEncoder().encode(compiledMessage);
785
+ }
786
+ },
787
+ fixedSize: null,
788
+ maxSize: null
789
+ };
790
+ }
791
+ function getCompiledMessageDecoder() {
792
+ return codecsCore.mapDecoder(
793
+ codecsDataStructures.getStructDecoder(getPreludeStructDecoderTuple(), {
794
+ description: messageDescription
795
+ }),
796
+ ({ addressTableLookups, ...restOfMessage }) => {
797
+ if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
798
+ return restOfMessage;
799
+ }
800
+ return { ...restOfMessage, addressTableLookups };
801
+ }
802
+ );
803
+ }
804
+ function getCompiledMessageCodec() {
805
+ return codecsCore.combineCodec(getCompiledMessageEncoder(), getCompiledMessageDecoder());
806
+ }
807
+
808
+ // src/compile-transaction.ts
809
+ function getCompiledTransaction(transaction) {
810
+ const compiledMessage = compileMessage(transaction);
811
+ let signatures;
44
812
  if ("signatures" in transaction) {
45
- const {
46
- signatures: _,
47
- // eslint-disable-line @typescript-eslint/no-unused-vars
48
- ...unsignedTransaction
49
- } = transaction;
50
- out = {
51
- ...unsignedTransaction,
52
- instructions: nextInstructions
813
+ signatures = [];
814
+ for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
815
+ signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
816
+ }
817
+ } else {
818
+ signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
819
+ }
820
+ return {
821
+ compiledMessage,
822
+ signatures
823
+ };
824
+ }
825
+ function getAccountMetas(message) {
826
+ const { header } = message;
827
+ const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
828
+ const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
829
+ const accountMetas = [];
830
+ let accountIndex = 0;
831
+ for (let i = 0; i < numWritableSignerAccounts; i++) {
832
+ accountMetas.push({
833
+ address: message.staticAccounts[accountIndex],
834
+ role: AccountRole.WRITABLE_SIGNER
835
+ });
836
+ accountIndex++;
837
+ }
838
+ for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
839
+ accountMetas.push({
840
+ address: message.staticAccounts[accountIndex],
841
+ role: AccountRole.READONLY_SIGNER
842
+ });
843
+ accountIndex++;
844
+ }
845
+ for (let i = 0; i < numWritableNonSignerAccounts; i++) {
846
+ accountMetas.push({
847
+ address: message.staticAccounts[accountIndex],
848
+ role: AccountRole.WRITABLE
849
+ });
850
+ accountIndex++;
851
+ }
852
+ for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
853
+ accountMetas.push({
854
+ address: message.staticAccounts[accountIndex],
855
+ role: AccountRole.READONLY
856
+ });
857
+ accountIndex++;
858
+ }
859
+ return accountMetas;
860
+ }
861
+ function convertInstruction(instruction, accountMetas) {
862
+ const programAddress = accountMetas[instruction.programAddressIndex]?.address;
863
+ if (!programAddress) {
864
+ throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
865
+ }
866
+ const accounts = instruction.accountIndices?.map((accountIndex) => accountMetas[accountIndex]);
867
+ const { data } = instruction;
868
+ return {
869
+ programAddress,
870
+ ...accounts && accounts.length ? { accounts } : {},
871
+ ...data && data.length ? { data } : {}
872
+ };
873
+ }
874
+ function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
875
+ if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
876
+ return {
877
+ blockhash: messageLifetimeToken,
878
+ lastValidBlockHeight: lastValidBlockHeight ?? 2n ** 64n - 1n
879
+ // U64 MAX
53
880
  };
54
881
  } else {
55
- out = {
56
- ...transaction,
57
- instructions: nextInstructions
882
+ const nonceAccountAddress = firstInstruction.accounts[0].address;
883
+ addresses.assertIsAddress(nonceAccountAddress);
884
+ const nonceAuthorityAddress = firstInstruction.accounts[2].address;
885
+ addresses.assertIsAddress(nonceAuthorityAddress);
886
+ return {
887
+ nonce: messageLifetimeToken,
888
+ nonceAccountAddress,
889
+ nonceAuthorityAddress
58
890
  };
59
891
  }
60
- return out;
61
892
  }
62
- function appendTransactionInstruction(instruction, transaction) {
63
- const nextInstructions = [...transaction.instructions, instruction];
64
- const out = replaceInstructions(transaction, nextInstructions);
893
+ function convertSignatures(compiledTransaction) {
894
+ const {
895
+ compiledMessage: { staticAccounts },
896
+ signatures
897
+ } = compiledTransaction;
898
+ return signatures.reduce((acc, sig, index) => {
899
+ const allZeros = sig.every((byte) => byte === 0);
900
+ if (allZeros)
901
+ return acc;
902
+ const address = staticAccounts[index];
903
+ return { ...acc, [address]: sig };
904
+ }, {});
905
+ }
906
+ function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
907
+ const { compiledMessage } = compiledTransaction;
908
+ if ("addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups.length > 0) {
909
+ throw new Error("Cannot convert transaction with addressTableLookups");
910
+ }
911
+ const feePayer = compiledMessage.staticAccounts[0];
912
+ if (!feePayer)
913
+ throw new Error("No fee payer set in CompiledTransaction");
914
+ const accountMetas = getAccountMetas(compiledMessage);
915
+ const instructions = compiledMessage.instructions.map(
916
+ (compiledInstruction) => convertInstruction(compiledInstruction, accountMetas)
917
+ );
918
+ const firstInstruction = instructions[0];
919
+ const lifetimeConstraint = getLifetimeConstraint(
920
+ compiledMessage.lifetimeToken,
921
+ firstInstruction,
922
+ lastValidBlockHeight
923
+ );
924
+ const signatures = convertSignatures(compiledTransaction);
925
+ return functional.pipe(
926
+ createTransaction({ version: compiledMessage.version }),
927
+ (tx) => setTransactionFeePayer(feePayer, tx),
928
+ (tx) => instructions.reduce((acc, instruction) => {
929
+ return appendTransactionInstruction(instruction, acc);
930
+ }, tx),
931
+ (tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
932
+ (tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
933
+ );
934
+ }
935
+
936
+ // src/serializers/transaction.ts
937
+ var signaturesDescription = __DEV__ ? "A compact array of 64-byte, base-64 encoded Ed25519 signatures" : "signatures";
938
+ var transactionDescription = __DEV__ ? "The wire format of a Solana transaction" : "transaction";
939
+ function getCompiledTransactionEncoder() {
940
+ return codecsDataStructures.getStructEncoder(
941
+ [
942
+ [
943
+ "signatures",
944
+ codecsDataStructures.getArrayEncoder(codecsDataStructures.getBytesEncoder({ size: 64 }), {
945
+ description: signaturesDescription,
946
+ size: codecsNumbers.getShortU16Encoder()
947
+ })
948
+ ],
949
+ ["compiledMessage", getCompiledMessageEncoder()]
950
+ ],
951
+ {
952
+ description: transactionDescription
953
+ }
954
+ );
955
+ }
956
+ function getSignatureDecoder() {
957
+ return codecsCore.mapDecoder(codecsDataStructures.getBytesDecoder({ size: 64 }), (bytes) => bytes);
958
+ }
959
+ function getCompiledTransactionDecoder() {
960
+ return codecsDataStructures.getStructDecoder(
961
+ [
962
+ [
963
+ "signatures",
964
+ codecsDataStructures.getArrayDecoder(getSignatureDecoder(), {
965
+ description: signaturesDescription,
966
+ size: codecsNumbers.getShortU16Decoder()
967
+ })
968
+ ],
969
+ ["compiledMessage", getCompiledMessageDecoder()]
970
+ ],
971
+ {
972
+ description: transactionDescription
973
+ }
974
+ );
975
+ }
976
+ function getTransactionEncoder() {
977
+ return codecsCore.mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
978
+ }
979
+ function getTransactionDecoder(lastValidBlockHeight) {
980
+ return codecsCore.mapDecoder(
981
+ getCompiledTransactionDecoder(),
982
+ (compiledTransaction) => decompileTransaction(compiledTransaction, lastValidBlockHeight)
983
+ );
984
+ }
985
+ function getTransactionCodec(lastValidBlockHeight) {
986
+ return codecsCore.combineCodec(getTransactionEncoder(), getTransactionDecoder(lastValidBlockHeight));
987
+ }
988
+ var base58Decoder;
989
+ function getSignatureFromTransaction(transaction) {
990
+ if (!base58Decoder)
991
+ base58Decoder = codecsStrings.getBase58Decoder();
992
+ const signatureBytes = transaction.signatures[transaction.feePayer];
993
+ if (!signatureBytes) {
994
+ throw new Error(
995
+ "Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
996
+ );
997
+ }
998
+ const transactionSignature = base58Decoder.decode(signatureBytes)[0];
999
+ return transactionSignature;
1000
+ }
1001
+ async function partiallySignTransaction(keyPairs, transaction) {
1002
+ const compiledMessage = compileMessage(transaction);
1003
+ const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
1004
+ const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
1005
+ const publicKeySignaturePairs = await Promise.all(
1006
+ keyPairs.map(
1007
+ (keyPair) => Promise.all([addresses.getAddressFromPublicKey(keyPair.publicKey), keys.signBytes(keyPair.privateKey, wireMessageBytes)])
1008
+ )
1009
+ );
1010
+ for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
1011
+ nextSignatures[signerPublicKey] = signature;
1012
+ }
1013
+ const out = {
1014
+ ...transaction,
1015
+ signatures: nextSignatures
1016
+ };
65
1017
  Object.freeze(out);
66
1018
  return out;
67
1019
  }
68
- function prependTransactionInstruction(instruction, transaction) {
69
- const nextInstructions = [instruction, ...transaction.instructions];
70
- const out = replaceInstructions(transaction, nextInstructions);
1020
+ async function signTransaction(keyPairs, transaction) {
1021
+ const out = await partiallySignTransaction(keyPairs, transaction);
1022
+ assertTransactionIsFullySigned(out);
71
1023
  Object.freeze(out);
72
1024
  return out;
73
1025
  }
1026
+ function assertTransactionIsFullySigned(transaction) {
1027
+ const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => i.accounts?.filter((a) => isSignerRole(a.role)) ?? []).map((a) => a.address);
1028
+ const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
1029
+ requiredSigners.forEach((address) => {
1030
+ if (!transaction.signatures[address]) {
1031
+ throw new Error(`Transaction is missing signature for address \`${address}\``);
1032
+ }
1033
+ });
1034
+ }
1035
+ function getBase64EncodedWireTransaction(transaction) {
1036
+ const wireTransactionBytes = getTransactionEncoder().encode(transaction);
1037
+ return codecsStrings.getBase64Decoder().decode(wireTransactionBytes)[0];
1038
+ }
74
1039
 
75
1040
  exports.appendTransactionInstruction = appendTransactionInstruction;
1041
+ exports.assertIsBlockhash = assertIsBlockhash;
1042
+ exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
1043
+ exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
1044
+ exports.compileMessage = compileMessage;
76
1045
  exports.createTransaction = createTransaction;
1046
+ exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
1047
+ exports.getCompiledMessageCodec = getCompiledMessageCodec;
1048
+ exports.getCompiledMessageDecoder = getCompiledMessageDecoder;
1049
+ exports.getCompiledMessageEncoder = getCompiledMessageEncoder;
1050
+ exports.getSignatureFromTransaction = getSignatureFromTransaction;
1051
+ exports.getTransactionCodec = getTransactionCodec;
1052
+ exports.getTransactionDecoder = getTransactionDecoder;
1053
+ exports.getTransactionEncoder = getTransactionEncoder;
1054
+ exports.isAdvanceNonceAccountInstruction = isAdvanceNonceAccountInstruction;
1055
+ exports.partiallySignTransaction = partiallySignTransaction;
77
1056
  exports.prependTransactionInstruction = prependTransactionInstruction;
78
1057
  exports.setTransactionFeePayer = setTransactionFeePayer;
79
- //# sourceMappingURL=out.js.map
80
- //# sourceMappingURL=index.browser.cjs.map
1058
+ exports.setTransactionLifetimeUsingBlockhash = setTransactionLifetimeUsingBlockhash;
1059
+ exports.setTransactionLifetimeUsingDurableNonce = setTransactionLifetimeUsingDurableNonce;
1060
+ exports.signTransaction = signTransaction;