@solana/transactions 2.0.0-experimental.71b920d → 2.0.0-experimental.71dcc4e

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