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