@solana/transactions 2.0.0-experimental.7539d42 → 2.0.0-experimental.762ff13

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 (59) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +314 -5
  3. package/dist/index.browser.cjs +571 -246
  4. package/dist/index.browser.cjs.map +1 -1
  5. package/dist/index.browser.js +564 -246
  6. package/dist/index.browser.js.map +1 -1
  7. package/dist/index.development.js +1111 -660
  8. package/dist/index.development.js.map +1 -1
  9. package/dist/index.native.js +564 -246
  10. package/dist/index.native.js.map +1 -1
  11. package/dist/index.node.cjs +571 -246
  12. package/dist/index.node.cjs.map +1 -1
  13. package/dist/index.node.js +566 -246
  14. package/dist/index.node.js.map +1 -1
  15. package/dist/index.production.min.js +20 -11
  16. package/dist/types/accounts.d.ts +1 -1
  17. package/dist/types/blockhash.d.ts +1 -1
  18. package/dist/types/compile-instructions.d.ts +1 -1
  19. package/dist/types/decompile-transaction.d.ts +7 -0
  20. package/dist/types/durable-nonce.d.ts +7 -6
  21. package/dist/types/fee-payer.d.ts +2 -1
  22. package/dist/types/index.d.ts +1 -0
  23. package/dist/types/serializers/address-table-lookup.d.ts +5 -3
  24. package/dist/types/serializers/header.d.ts +4 -2
  25. package/dist/types/serializers/index.d.ts +2 -0
  26. package/dist/types/serializers/instruction.d.ts +4 -2
  27. package/dist/types/serializers/message.d.ts +4 -4
  28. package/dist/types/serializers/transaction-version.d.ts +4 -4
  29. package/dist/types/serializers/transaction.d.ts +7 -4
  30. package/dist/types/signatures.d.ts +11 -2
  31. package/dist/types/types.d.ts +7 -0
  32. package/dist/types/wire-transaction.d.ts +2 -2
  33. package/package.json +21 -15
  34. package/dist/types/accounts.d.ts.map +0 -1
  35. package/dist/types/blockhash.d.ts.map +0 -1
  36. package/dist/types/compile-address-table-lookups.d.ts.map +0 -1
  37. package/dist/types/compile-header.d.ts.map +0 -1
  38. package/dist/types/compile-instructions.d.ts.map +0 -1
  39. package/dist/types/compile-lifetime-token.d.ts.map +0 -1
  40. package/dist/types/compile-static-accounts.d.ts.map +0 -1
  41. package/dist/types/compile-transaction.d.ts.map +0 -1
  42. package/dist/types/create-transaction.d.ts.map +0 -1
  43. package/dist/types/durable-nonce.d.ts.map +0 -1
  44. package/dist/types/fee-payer.d.ts.map +0 -1
  45. package/dist/types/index.d.ts.map +0 -1
  46. package/dist/types/instructions.d.ts.map +0 -1
  47. package/dist/types/message.d.ts.map +0 -1
  48. package/dist/types/serializers/address-table-lookup.d.ts.map +0 -1
  49. package/dist/types/serializers/header.d.ts.map +0 -1
  50. package/dist/types/serializers/instruction.d.ts.map +0 -1
  51. package/dist/types/serializers/message.d.ts.map +0 -1
  52. package/dist/types/serializers/transaction-version.d.ts.map +0 -1
  53. package/dist/types/serializers/transaction.d.ts.map +0 -1
  54. package/dist/types/serializers/unimplemented.d.ts +0 -3
  55. package/dist/types/serializers/unimplemented.d.ts.map +0 -1
  56. package/dist/types/signatures.d.ts.map +0 -1
  57. package/dist/types/types.d.ts.map +0 -1
  58. package/dist/types/unsigned-transaction.d.ts.map +0 -1
  59. package/dist/types/wire-transaction.d.ts.map +0 -1
@@ -1,7 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var umiSerializers = require('@metaplex-foundation/umi-serializers');
3
+ var codecsStrings = require('@solana/codecs-strings');
4
+ var codecsCore = require('@solana/codecs-core');
5
+ var codecsDataStructures = require('@solana/codecs-data-structures');
6
+ var codecsNumbers = require('@solana/codecs-numbers');
4
7
  var addresses = require('@solana/addresses');
8
+ var functional = require('@solana/functional');
5
9
  var keys = require('@solana/keys');
6
10
 
7
11
  // ../build-scripts/env-shim.ts
@@ -22,7 +26,10 @@ function getUnsignedTransaction(transaction) {
22
26
  }
23
27
 
24
28
  // src/blockhash.ts
29
+ var base58Encoder;
25
30
  function assertIsBlockhash(putativeBlockhash) {
31
+ if (!base58Encoder)
32
+ base58Encoder = codecsStrings.getBase58Encoder();
26
33
  try {
27
34
  if (
28
35
  // Lowest value (32 bytes of zeroes)
@@ -31,8 +38,8 @@ function assertIsBlockhash(putativeBlockhash) {
31
38
  ) {
32
39
  throw new Error("Expected input string to decode to a byte array of length 32.");
33
40
  }
34
- const bytes3 = umiSerializers.base58.serialize(putativeBlockhash);
35
- const numBytes = bytes3.byteLength;
41
+ const bytes = base58Encoder.encode(putativeBlockhash);
42
+ const numBytes = bytes.byteLength;
36
43
  if (numBytes !== 32) {
37
44
  throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
38
45
  }
@@ -117,7 +124,7 @@ function isAdvanceNonceAccountInstruction(instruction) {
117
124
  instruction.accounts?.length === 3 && // First account is nonce account address
118
125
  instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
119
126
  instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
120
- instruction.accounts[2].address != null && instruction.accounts[2].role === AccountRole.READONLY_SIGNER;
127
+ instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
121
128
  }
122
129
  function isAdvanceNonceAccountInstructionData(data) {
123
130
  return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
@@ -125,21 +132,38 @@ function isAdvanceNonceAccountInstructionData(data) {
125
132
  function isDurableNonceTransaction(transaction) {
126
133
  return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
127
134
  }
135
+ function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
136
+ return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
137
+ }
128
138
  function setTransactionLifetimeUsingDurableNonce({
129
139
  nonce,
130
140
  nonceAccountAddress,
131
141
  nonceAuthorityAddress
132
142
  }, transaction) {
133
- const isAlreadyDurableNonceTransaction = isDurableNonceTransaction(transaction);
134
- if (isAlreadyDurableNonceTransaction && transaction.lifetimeConstraint.nonce === nonce && transaction.instructions[0].accounts[0].address === nonceAccountAddress && transaction.instructions[0].accounts[2].address === nonceAuthorityAddress) {
135
- return transaction;
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
+ ];
136
163
  }
137
164
  const out = {
138
165
  ...getUnsignedTransaction(transaction),
139
- instructions: [
140
- createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
141
- ...isAlreadyDurableNonceTransaction ? transaction.instructions.slice(1) : transaction.instructions
142
- ],
166
+ instructions: newInstructions,
143
167
  lifetimeConstraint: {
144
168
  nonce
145
169
  }
@@ -230,7 +254,7 @@ function getAddressMapFromInstructions(feePayer, instructions) {
230
254
  const shouldReplaceEntry = (
231
255
  // Consider using the new LOOKUP_TABLE if its address is different...
232
256
  entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
233
- (addressComparator || (addressComparator = addresses.getBase58EncodedAddressComparator()))(
257
+ (addressComparator || (addressComparator = addresses.getAddressComparator()))(
234
258
  accountMeta.lookupTableAddress,
235
259
  entry.lookupTableAddress
236
260
  ) < 0
@@ -336,7 +360,7 @@ function getOrderedAccountsFromAddressMap(addressMap) {
336
360
  if (leftIsWritable !== isWritableRole(rightEntry.role)) {
337
361
  return leftIsWritable ? -1 : 1;
338
362
  }
339
- addressComparator || (addressComparator = addresses.getBase58EncodedAddressComparator());
363
+ addressComparator || (addressComparator = addresses.getAddressComparator());
340
364
  if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
341
365
  return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
342
366
  } else {
@@ -365,7 +389,7 @@ function getCompiledAddressTableLookups(orderedAccounts) {
365
389
  entry.readableIndices.push(account.addressIndex);
366
390
  }
367
391
  }
368
- return Object.keys(index).sort(addresses.getBase58EncodedAddressComparator()).map((lookupTableAddress) => ({
392
+ return Object.keys(index).sort(addresses.getAddressComparator()).map((lookupTableAddress) => ({
369
393
  lookupTableAddress,
370
394
  ...index[lookupTableAddress]
371
395
  }));
@@ -444,151 +468,317 @@ function compileMessage(transaction) {
444
468
  version: transaction.version
445
469
  };
446
470
  }
447
- function getAddressTableLookupCodec() {
448
- return umiSerializers.struct(
449
- [
450
- [
451
- "lookupTableAddress",
452
- addresses.getBase58EncodedAddressCodec(
453
- __DEV__ ? {
454
- description: "The address of the address lookup table account from which instruction addresses should be looked up"
455
- } : void 0
456
- )
457
- ],
458
- [
459
- "writableIndices",
460
- umiSerializers.array(umiSerializers.u8(), {
461
- ...__DEV__ ? {
462
- description: "The indices of the accounts in the lookup table that should be loaded as writeable"
463
- } : null,
464
- size: umiSerializers.shortU16()
465
- })
466
- ],
467
- [
468
- "readableIndices",
469
- umiSerializers.array(umiSerializers.u8(), {
470
- ...__DEV__ ? {
471
- description: "The indices of the accounts in the lookup table that should be loaded as read-only"
472
- } : void 0,
473
- size: umiSerializers.shortU16()
474
- })
475
- ]
476
- ],
477
- __DEV__ ? {
478
- description: "A pointer to the address of an address lookup table, along with the readonly/writeable indices of the addresses that should be loaded from it"
479
- } : void 0
471
+
472
+ // src/compile-transaction.ts
473
+ function getCompiledTransaction(transaction) {
474
+ const compiledMessage = compileMessage(transaction);
475
+ let signatures;
476
+ if ("signatures" in transaction) {
477
+ signatures = [];
478
+ for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
479
+ signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
480
+ }
481
+ } else {
482
+ signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
483
+ }
484
+ return {
485
+ compiledMessage,
486
+ signatures
487
+ };
488
+ }
489
+ function getAccountMetas(message) {
490
+ const { header } = message;
491
+ const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
492
+ const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
493
+ const accountMetas = [];
494
+ let accountIndex = 0;
495
+ for (let i = 0; i < numWritableSignerAccounts; i++) {
496
+ accountMetas.push({
497
+ address: message.staticAccounts[accountIndex],
498
+ role: AccountRole.WRITABLE_SIGNER
499
+ });
500
+ accountIndex++;
501
+ }
502
+ for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
503
+ accountMetas.push({
504
+ address: message.staticAccounts[accountIndex],
505
+ role: AccountRole.READONLY_SIGNER
506
+ });
507
+ accountIndex++;
508
+ }
509
+ for (let i = 0; i < numWritableNonSignerAccounts; i++) {
510
+ accountMetas.push({
511
+ address: message.staticAccounts[accountIndex],
512
+ role: AccountRole.WRITABLE
513
+ });
514
+ accountIndex++;
515
+ }
516
+ for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
517
+ accountMetas.push({
518
+ address: message.staticAccounts[accountIndex],
519
+ role: AccountRole.READONLY
520
+ });
521
+ accountIndex++;
522
+ }
523
+ return accountMetas;
524
+ }
525
+ function convertInstruction(instruction, accountMetas) {
526
+ const programAddress = accountMetas[instruction.programAddressIndex]?.address;
527
+ if (!programAddress) {
528
+ throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
529
+ }
530
+ const accounts = instruction.accountIndices?.map((accountIndex) => accountMetas[accountIndex]);
531
+ const { data } = instruction;
532
+ return {
533
+ programAddress,
534
+ ...accounts && accounts.length ? { accounts } : {},
535
+ ...data && data.length ? { data } : {}
536
+ };
537
+ }
538
+ function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
539
+ if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
540
+ return {
541
+ blockhash: messageLifetimeToken,
542
+ lastValidBlockHeight: lastValidBlockHeight ?? 2n ** 64n - 1n
543
+ // U64 MAX
544
+ };
545
+ } else {
546
+ const nonceAccountAddress = firstInstruction.accounts[0].address;
547
+ addresses.assertIsAddress(nonceAccountAddress);
548
+ const nonceAuthorityAddress = firstInstruction.accounts[2].address;
549
+ addresses.assertIsAddress(nonceAuthorityAddress);
550
+ return {
551
+ nonce: messageLifetimeToken,
552
+ nonceAccountAddress,
553
+ nonceAuthorityAddress
554
+ };
555
+ }
556
+ }
557
+ function convertSignatures(compiledTransaction) {
558
+ const {
559
+ compiledMessage: { staticAccounts },
560
+ signatures
561
+ } = compiledTransaction;
562
+ return signatures.reduce((acc, sig, index) => {
563
+ const allZeros = sig.every((byte) => byte === 0);
564
+ if (allZeros)
565
+ return acc;
566
+ const address = staticAccounts[index];
567
+ return { ...acc, [address]: sig };
568
+ }, {});
569
+ }
570
+ function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
571
+ const { compiledMessage } = compiledTransaction;
572
+ if ("addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups.length > 0) {
573
+ throw new Error("Cannot convert transaction with addressTableLookups");
574
+ }
575
+ const feePayer = compiledMessage.staticAccounts[0];
576
+ if (!feePayer)
577
+ throw new Error("No fee payer set in CompiledTransaction");
578
+ const accountMetas = getAccountMetas(compiledMessage);
579
+ const instructions = compiledMessage.instructions.map(
580
+ (compiledInstruction) => convertInstruction(compiledInstruction, accountMetas)
581
+ );
582
+ const firstInstruction = instructions[0];
583
+ const lifetimeConstraint = getLifetimeConstraint(
584
+ compiledMessage.lifetimeToken,
585
+ firstInstruction,
586
+ lastValidBlockHeight
587
+ );
588
+ const signatures = convertSignatures(compiledTransaction);
589
+ return functional.pipe(
590
+ createTransaction({ version: compiledMessage.version }),
591
+ (tx) => setTransactionFeePayer(feePayer, tx),
592
+ (tx) => instructions.reduce((acc, instruction) => {
593
+ return appendTransactionInstruction(instruction, acc);
594
+ }, tx),
595
+ (tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
596
+ (tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
480
597
  );
481
598
  }
482
- function getMessageHeaderCodec() {
483
- return umiSerializers.struct(
484
- [
599
+ var lookupTableAddressDescription = __DEV__ ? "The address of the address lookup table account from which instruction addresses should be looked up" : "lookupTableAddress";
600
+ var writableIndicesDescription = __DEV__ ? "The indices of the accounts in the lookup table that should be loaded as writeable" : "writableIndices";
601
+ var readableIndicesDescription = __DEV__ ? "The indices of the accounts in the lookup table that should be loaded as read-only" : "readableIndices";
602
+ 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";
603
+ var memoizedAddressTableLookupEncoder;
604
+ function getAddressTableLookupEncoder() {
605
+ if (!memoizedAddressTableLookupEncoder) {
606
+ memoizedAddressTableLookupEncoder = codecsDataStructures.getStructEncoder(
485
607
  [
486
- "numSignerAccounts",
487
- umiSerializers.u8(
488
- __DEV__ ? {
489
- description: "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction"
490
- } : void 0
491
- )
608
+ ["lookupTableAddress", addresses.getAddressEncoder({ description: lookupTableAddressDescription })],
609
+ [
610
+ "writableIndices",
611
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), {
612
+ description: writableIndicesDescription,
613
+ size: codecsNumbers.getShortU16Encoder()
614
+ })
615
+ ],
616
+ [
617
+ "readableIndices",
618
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), {
619
+ description: readableIndicesDescription,
620
+ size: codecsNumbers.getShortU16Encoder()
621
+ })
622
+ ]
492
623
  ],
624
+ { description: addressTableLookupDescription }
625
+ );
626
+ }
627
+ return memoizedAddressTableLookupEncoder;
628
+ }
629
+ var memoizedAddressTableLookupDecoder;
630
+ function getAddressTableLookupDecoder() {
631
+ if (!memoizedAddressTableLookupDecoder) {
632
+ memoizedAddressTableLookupDecoder = codecsDataStructures.getStructDecoder(
493
633
  [
494
- "numReadonlySignerAccounts",
495
- umiSerializers.u8(
496
- __DEV__ ? {
497
- description: "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction, but may not be writable"
498
- } : void 0
499
- )
634
+ ["lookupTableAddress", addresses.getAddressDecoder({ description: lookupTableAddressDescription })],
635
+ [
636
+ "writableIndices",
637
+ codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), {
638
+ description: writableIndicesDescription,
639
+ size: codecsNumbers.getShortU16Decoder()
640
+ })
641
+ ],
642
+ [
643
+ "readableIndices",
644
+ codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), {
645
+ description: readableIndicesDescription,
646
+ size: codecsNumbers.getShortU16Decoder()
647
+ })
648
+ ]
500
649
  ],
501
- [
502
- "numReadonlyNonSignerAccounts",
503
- umiSerializers.u8(
504
- __DEV__ ? {
505
- description: "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable"
506
- } : void 0
507
- )
508
- ]
650
+ { description: addressTableLookupDescription }
651
+ );
652
+ }
653
+ return memoizedAddressTableLookupDecoder;
654
+ }
655
+ var memoizedU8Encoder;
656
+ function getMemoizedU8Encoder() {
657
+ if (!memoizedU8Encoder)
658
+ memoizedU8Encoder = codecsNumbers.getU8Encoder();
659
+ return memoizedU8Encoder;
660
+ }
661
+ function getMemoizedU8EncoderDescription(description) {
662
+ const encoder = getMemoizedU8Encoder();
663
+ return {
664
+ ...encoder,
665
+ description: description ?? encoder.description
666
+ };
667
+ }
668
+ var memoizedU8Decoder;
669
+ function getMemoizedU8Decoder() {
670
+ if (!memoizedU8Decoder)
671
+ memoizedU8Decoder = codecsNumbers.getU8Decoder();
672
+ return memoizedU8Decoder;
673
+ }
674
+ function getMemoizedU8DecoderDescription(description) {
675
+ const decoder = getMemoizedU8Decoder();
676
+ return {
677
+ ...decoder,
678
+ description: description ?? decoder.description
679
+ };
680
+ }
681
+ 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;
682
+ 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;
683
+ var numReadonlyNonSignerAccountsDescription = __DEV__ ? "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable" : void 0;
684
+ var messageHeaderDescription = __DEV__ ? "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses" : void 0;
685
+ function getMessageHeaderEncoder() {
686
+ return codecsDataStructures.getStructEncoder(
687
+ [
688
+ ["numSignerAccounts", getMemoizedU8EncoderDescription(numSignerAccountsDescription)],
689
+ ["numReadonlySignerAccounts", getMemoizedU8EncoderDescription(numReadonlySignerAccountsDescription)],
690
+ ["numReadonlyNonSignerAccounts", getMemoizedU8EncoderDescription(numReadonlyNonSignerAccountsDescription)]
509
691
  ],
510
- __DEV__ ? {
511
- description: "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses"
512
- } : void 0
692
+ {
693
+ description: messageHeaderDescription
694
+ }
513
695
  );
514
696
  }
515
- function getInstructionCodec() {
516
- return umiSerializers.mapSerializer(
517
- umiSerializers.struct([
518
- [
519
- "programAddressIndex",
520
- umiSerializers.u8(
521
- __DEV__ ? {
522
- description: "The index of the program being called, according to the well-ordered accounts list for this transaction"
523
- } : void 0
524
- )
525
- ],
526
- [
527
- "addressIndices",
528
- umiSerializers.array(
529
- umiSerializers.u8({
530
- description: __DEV__ ? "The index of an account, according to the well-ordered accounts list for this transaction" : ""
531
- }),
532
- {
533
- description: __DEV__ ? "An optional list of account indices, according to the well-ordered accounts list for this transaction, in the order in which the program being called expects them" : "",
534
- size: umiSerializers.shortU16()
535
- }
536
- )
537
- ],
538
- [
539
- "data",
540
- umiSerializers.bytes({
541
- description: __DEV__ ? "An optional buffer of data passed to the instruction" : "",
542
- size: umiSerializers.shortU16()
543
- })
544
- ]
545
- ]),
546
- (value) => {
547
- if (value.addressIndices !== void 0 && value.data !== void 0) {
548
- return value;
549
- }
550
- return {
551
- ...value,
552
- addressIndices: value.addressIndices ?? [],
553
- data: value.data ?? new Uint8Array(0)
554
- };
555
- },
556
- (value) => {
557
- if (value.addressIndices.length && value.data.byteLength) {
558
- return value;
559
- }
560
- const { addressIndices, data, ...rest } = value;
561
- return {
562
- ...rest,
563
- ...addressIndices.length ? { addressIndices } : null,
564
- ...data.byteLength ? { data } : null
565
- };
697
+ function getMessageHeaderDecoder() {
698
+ return codecsDataStructures.getStructDecoder(
699
+ [
700
+ ["numSignerAccounts", getMemoizedU8DecoderDescription(numSignerAccountsDescription)],
701
+ ["numReadonlySignerAccounts", getMemoizedU8DecoderDescription(numReadonlySignerAccountsDescription)],
702
+ ["numReadonlyNonSignerAccounts", getMemoizedU8DecoderDescription(numReadonlyNonSignerAccountsDescription)]
703
+ ],
704
+ {
705
+ description: messageHeaderDescription
566
706
  }
567
707
  );
568
708
  }
569
-
570
- // src/serializers/unimplemented.ts
571
- function getError(type, name) {
572
- const functionSuffix = name + type[0].toUpperCase() + type.slice(1);
573
- return new Error(
574
- `No ${type} exists for ${name}. Use \`get${functionSuffix}()\` if you need a ${type}, and \`get${name}Codec()\` if you need to both encode and decode ${name}`
575
- );
709
+ var programAddressIndexDescription = __DEV__ ? "The index of the program being called, according to the well-ordered accounts list for this transaction" : "programAddressIndex";
710
+ var accountIndexDescription = __DEV__ ? "The index of an account, according to the well-ordered accounts list for this transaction" : void 0;
711
+ 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";
712
+ var dataDescription = __DEV__ ? "An optional buffer of data passed to the instruction" : "data";
713
+ var memoizedGetInstructionEncoder;
714
+ function getInstructionEncoder() {
715
+ if (!memoizedGetInstructionEncoder) {
716
+ memoizedGetInstructionEncoder = codecsCore.mapEncoder(
717
+ codecsDataStructures.getStructEncoder([
718
+ ["programAddressIndex", codecsNumbers.getU8Encoder({ description: programAddressIndexDescription })],
719
+ [
720
+ "accountIndices",
721
+ codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder({ description: accountIndexDescription }), {
722
+ description: accountIndicesDescription,
723
+ size: codecsNumbers.getShortU16Encoder()
724
+ })
725
+ ],
726
+ ["data", codecsDataStructures.getBytesEncoder({ description: dataDescription, size: codecsNumbers.getShortU16Encoder() })]
727
+ ]),
728
+ // Convert an instruction to have all fields defined
729
+ (instruction) => {
730
+ if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
731
+ return instruction;
732
+ }
733
+ return {
734
+ ...instruction,
735
+ accountIndices: instruction.accountIndices ?? [],
736
+ data: instruction.data ?? new Uint8Array(0)
737
+ };
738
+ }
739
+ );
740
+ }
741
+ return memoizedGetInstructionEncoder;
576
742
  }
577
- function getUnimplementedDecoder(name) {
578
- return () => {
579
- throw getError("decoder", name);
580
- };
743
+ var memoizedGetInstructionDecoder;
744
+ function getInstructionDecoder() {
745
+ if (!memoizedGetInstructionDecoder) {
746
+ memoizedGetInstructionDecoder = codecsCore.mapDecoder(
747
+ codecsDataStructures.getStructDecoder([
748
+ ["programAddressIndex", codecsNumbers.getU8Decoder({ description: programAddressIndexDescription })],
749
+ [
750
+ "accountIndices",
751
+ codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder({ description: accountIndexDescription }), {
752
+ description: accountIndicesDescription,
753
+ size: codecsNumbers.getShortU16Decoder()
754
+ })
755
+ ],
756
+ ["data", codecsDataStructures.getBytesDecoder({ description: dataDescription, size: codecsNumbers.getShortU16Decoder() })]
757
+ ]),
758
+ // Convert an instruction to exclude optional fields if they are empty
759
+ (instruction) => {
760
+ if (instruction.accountIndices.length && instruction.data.byteLength) {
761
+ return instruction;
762
+ }
763
+ const { accountIndices, data, ...rest } = instruction;
764
+ return {
765
+ ...rest,
766
+ ...accountIndices.length ? { accountIndices } : null,
767
+ ...data.byteLength ? { data } : null
768
+ };
769
+ }
770
+ );
771
+ }
772
+ return memoizedGetInstructionDecoder;
581
773
  }
582
-
583
- // src/serializers/transaction-version.ts
584
774
  var VERSION_FLAG_MASK = 128;
585
775
  var BASE_CONFIG = {
586
776
  description: __DEV__ ? "A single byte that encodes the version of the transaction" : "",
587
777
  fixedSize: null,
588
778
  maxSize: 1
589
779
  };
590
- function deserialize(bytes3, offset = 0) {
591
- const firstByte = bytes3[offset];
780
+ function decode(bytes, offset = 0) {
781
+ const firstByte = bytes[offset];
592
782
  if ((firstByte & VERSION_FLAG_MASK) === 0) {
593
783
  return ["legacy", offset];
594
784
  } else {
@@ -596,7 +786,7 @@ function deserialize(bytes3, offset = 0) {
596
786
  return [version, offset + 1];
597
787
  }
598
788
  }
599
- function serialize(value) {
789
+ function encode(value) {
600
790
  if (value === "legacy") {
601
791
  return new Uint8Array();
602
792
  }
@@ -605,99 +795,259 @@ function serialize(value) {
605
795
  }
606
796
  return new Uint8Array([value | VERSION_FLAG_MASK]);
607
797
  }
608
- function getTransactionVersionCodec() {
798
+ function getTransactionVersionDecoder() {
609
799
  return {
610
800
  ...BASE_CONFIG,
611
- deserialize,
612
- serialize
801
+ decode
802
+ };
803
+ }
804
+ function getTransactionVersionEncoder() {
805
+ return {
806
+ ...BASE_CONFIG,
807
+ encode
613
808
  };
614
809
  }
615
810
 
616
811
  // src/serializers/message.ts
617
- var BASE_CONFIG2 = {
618
- description: __DEV__ ? "The wire format of a Solana transaction message" : "",
619
- fixedSize: null,
620
- maxSize: null
621
- };
622
- function serialize2(compiledMessage) {
623
- if (compiledMessage.version === "legacy") {
624
- return umiSerializers.struct(getPreludeStructSerializerTuple()).serialize(compiledMessage);
625
- } else {
626
- return umiSerializers.mapSerializer(
627
- umiSerializers.struct([
628
- ...getPreludeStructSerializerTuple(),
629
- ["addressTableLookups", getAddressTableLookupsSerializer()]
630
- ]),
631
- (value) => {
632
- if (value.version === "legacy") {
633
- return value;
634
- }
635
- return {
636
- ...value,
637
- addressTableLookups: value.addressTableLookups ?? []
638
- };
812
+ var staticAccountsDescription = __DEV__ ? "A compact-array of static account addresses belonging to this transaction" : "staticAccounts";
813
+ var lifetimeTokenDescription = __DEV__ ? "A 32-byte token that specifies the lifetime of this transaction (eg. a recent blockhash, or a durable nonce)" : "lifetimeToken";
814
+ var instructionsDescription = __DEV__ ? "A compact-array of instructions belonging to this transaction" : "instructions";
815
+ var addressTableLookupsDescription = __DEV__ ? "A compact array of address table lookups belonging to this transaction" : "addressTableLookups";
816
+ function getCompiledMessageLegacyEncoder() {
817
+ return codecsDataStructures.getStructEncoder(getPreludeStructEncoderTuple());
818
+ }
819
+ function getCompiledMessageVersionedEncoder() {
820
+ return codecsCore.mapEncoder(
821
+ codecsDataStructures.getStructEncoder([
822
+ ...getPreludeStructEncoderTuple(),
823
+ ["addressTableLookups", getAddressTableLookupArrayEncoder()]
824
+ ]),
825
+ (value) => {
826
+ if (value.version === "legacy") {
827
+ return value;
639
828
  }
640
- ).serialize(compiledMessage);
641
- }
829
+ return {
830
+ ...value,
831
+ addressTableLookups: value.addressTableLookups ?? []
832
+ };
833
+ }
834
+ );
642
835
  }
643
- function getPreludeStructSerializerTuple() {
836
+ function getPreludeStructEncoderTuple() {
644
837
  return [
645
- ["version", getTransactionVersionCodec()],
646
- ["header", getMessageHeaderCodec()],
838
+ ["version", getTransactionVersionEncoder()],
839
+ ["header", getMessageHeaderEncoder()],
647
840
  [
648
841
  "staticAccounts",
649
- umiSerializers.array(addresses.getBase58EncodedAddressCodec(), {
650
- description: __DEV__ ? "A compact-array of static account addresses belonging to this transaction" : "",
651
- size: umiSerializers.shortU16()
842
+ codecsDataStructures.getArrayEncoder(addresses.getAddressEncoder(), {
843
+ description: staticAccountsDescription,
844
+ size: codecsNumbers.getShortU16Encoder()
652
845
  })
653
846
  ],
654
847
  [
655
848
  "lifetimeToken",
656
- umiSerializers.string({
657
- description: __DEV__ ? "A 32-byte token that specifies the lifetime of this transaction (eg. a recent blockhash, or a durable nonce)" : "",
658
- encoding: umiSerializers.base58,
849
+ codecsStrings.getStringEncoder({
850
+ description: lifetimeTokenDescription,
851
+ encoding: codecsStrings.getBase58Encoder(),
659
852
  size: 32
660
853
  })
661
854
  ],
662
855
  [
663
856
  "instructions",
664
- umiSerializers.array(getInstructionCodec(), {
665
- description: __DEV__ ? "A compact-array of instructions belonging to this transaction" : "",
666
- size: umiSerializers.shortU16()
857
+ codecsDataStructures.getArrayEncoder(getInstructionEncoder(), {
858
+ description: instructionsDescription,
859
+ size: codecsNumbers.getShortU16Encoder()
667
860
  })
668
861
  ]
669
862
  ];
670
863
  }
671
- function getAddressTableLookupsSerializer() {
672
- return umiSerializers.array(getAddressTableLookupCodec(), {
673
- ...__DEV__ ? { description: "A compact array of address table lookups belonging to this transaction" } : null,
674
- size: umiSerializers.shortU16()
864
+ function getPreludeStructDecoderTuple() {
865
+ return [
866
+ ["version", getTransactionVersionDecoder()],
867
+ ["header", getMessageHeaderDecoder()],
868
+ [
869
+ "staticAccounts",
870
+ codecsDataStructures.getArrayDecoder(addresses.getAddressDecoder(), {
871
+ description: staticAccountsDescription,
872
+ size: codecsNumbers.getShortU16Decoder()
873
+ })
874
+ ],
875
+ [
876
+ "lifetimeToken",
877
+ codecsStrings.getStringDecoder({
878
+ description: lifetimeTokenDescription,
879
+ encoding: codecsStrings.getBase58Decoder(),
880
+ size: 32
881
+ })
882
+ ],
883
+ [
884
+ "instructions",
885
+ codecsDataStructures.getArrayDecoder(getInstructionDecoder(), {
886
+ description: instructionsDescription,
887
+ size: codecsNumbers.getShortU16Decoder()
888
+ })
889
+ ],
890
+ ["addressTableLookups", getAddressTableLookupArrayDecoder()]
891
+ ];
892
+ }
893
+ function getAddressTableLookupArrayEncoder() {
894
+ return codecsDataStructures.getArrayEncoder(getAddressTableLookupEncoder(), {
895
+ description: addressTableLookupsDescription,
896
+ size: codecsNumbers.getShortU16Encoder()
675
897
  });
676
898
  }
899
+ function getAddressTableLookupArrayDecoder() {
900
+ return codecsDataStructures.getArrayDecoder(getAddressTableLookupDecoder(), {
901
+ description: addressTableLookupsDescription,
902
+ size: codecsNumbers.getShortU16Decoder()
903
+ });
904
+ }
905
+ var messageDescription = __DEV__ ? "The wire format of a Solana transaction message" : "message";
677
906
  function getCompiledMessageEncoder() {
678
907
  return {
679
- ...BASE_CONFIG2,
680
- deserialize: getUnimplementedDecoder("CompiledMessage"),
681
- serialize: serialize2
908
+ description: messageDescription,
909
+ encode: (compiledMessage) => {
910
+ if (compiledMessage.version === "legacy") {
911
+ return getCompiledMessageLegacyEncoder().encode(compiledMessage);
912
+ } else {
913
+ return getCompiledMessageVersionedEncoder().encode(compiledMessage);
914
+ }
915
+ },
916
+ fixedSize: null,
917
+ maxSize: null
682
918
  };
683
919
  }
920
+ function getCompiledMessageDecoder() {
921
+ return codecsCore.mapDecoder(
922
+ codecsDataStructures.getStructDecoder(getPreludeStructDecoderTuple(), {
923
+ description: messageDescription
924
+ }),
925
+ ({ addressTableLookups, ...restOfMessage }) => {
926
+ if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
927
+ return restOfMessage;
928
+ }
929
+ return { ...restOfMessage, addressTableLookups };
930
+ }
931
+ );
932
+ }
684
933
 
685
- // src/signatures.ts
686
- async function getCompiledMessageSignature(message, secretKey) {
687
- const wireMessageBytes = getCompiledMessageEncoder().serialize(message);
688
- const signature = await keys.signBytes(secretKey, wireMessageBytes);
689
- return signature;
934
+ // src/serializers/transaction.ts
935
+ var signaturesDescription = __DEV__ ? "A compact array of 64-byte, base-64 encoded Ed25519 signatures" : "signatures";
936
+ var transactionDescription = __DEV__ ? "The wire format of a Solana transaction" : "transaction";
937
+ function getCompiledTransactionEncoder() {
938
+ return codecsDataStructures.getStructEncoder(
939
+ [
940
+ [
941
+ "signatures",
942
+ codecsDataStructures.getArrayEncoder(codecsDataStructures.getBytesEncoder({ size: 64 }), {
943
+ description: signaturesDescription,
944
+ size: codecsNumbers.getShortU16Encoder()
945
+ })
946
+ ],
947
+ ["compiledMessage", getCompiledMessageEncoder()]
948
+ ],
949
+ {
950
+ description: transactionDescription
951
+ }
952
+ );
690
953
  }
691
- async function signTransaction(keyPair, transaction) {
954
+ function getSignatureDecoder() {
955
+ return codecsCore.mapDecoder(codecsDataStructures.getBytesDecoder({ size: 64 }), (bytes) => bytes);
956
+ }
957
+ function getCompiledTransactionDecoder() {
958
+ return codecsDataStructures.getStructDecoder(
959
+ [
960
+ [
961
+ "signatures",
962
+ codecsDataStructures.getArrayDecoder(getSignatureDecoder(), {
963
+ description: signaturesDescription,
964
+ size: codecsNumbers.getShortU16Decoder()
965
+ })
966
+ ],
967
+ ["compiledMessage", getCompiledMessageDecoder()]
968
+ ],
969
+ {
970
+ description: transactionDescription
971
+ }
972
+ );
973
+ }
974
+ function getTransactionEncoder() {
975
+ return codecsCore.mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
976
+ }
977
+ function getTransactionDecoder(lastValidBlockHeight) {
978
+ return codecsCore.mapDecoder(
979
+ getCompiledTransactionDecoder(),
980
+ (compiledTransaction) => decompileTransaction(compiledTransaction, lastValidBlockHeight)
981
+ );
982
+ }
983
+ function getTransactionCodec(lastValidBlockHeight) {
984
+ return codecsCore.combineCodec(getTransactionEncoder(), getTransactionDecoder(lastValidBlockHeight));
985
+ }
986
+ var base58Encoder2;
987
+ var base58Decoder;
988
+ function assertIsTransactionSignature(putativeTransactionSignature) {
989
+ if (!base58Encoder2)
990
+ base58Encoder2 = codecsStrings.getBase58Encoder();
991
+ try {
992
+ if (
993
+ // Lowest value (64 bytes of zeroes)
994
+ putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
995
+ putativeTransactionSignature.length > 88
996
+ ) {
997
+ throw new Error("Expected input string to decode to a byte array of length 64.");
998
+ }
999
+ const bytes = base58Encoder2.encode(putativeTransactionSignature);
1000
+ const numBytes = bytes.byteLength;
1001
+ if (numBytes !== 64) {
1002
+ throw new Error(`Expected input string to decode to a byte array of length 64. Actual length: ${numBytes}`);
1003
+ }
1004
+ } catch (e) {
1005
+ throw new Error(`\`${putativeTransactionSignature}\` is not a transaction signature`, {
1006
+ cause: e
1007
+ });
1008
+ }
1009
+ }
1010
+ function isTransactionSignature(putativeTransactionSignature) {
1011
+ if (!base58Encoder2)
1012
+ base58Encoder2 = codecsStrings.getBase58Encoder();
1013
+ if (
1014
+ // Lowest value (64 bytes of zeroes)
1015
+ putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
1016
+ putativeTransactionSignature.length > 88
1017
+ ) {
1018
+ return false;
1019
+ }
1020
+ const bytes = base58Encoder2.encode(putativeTransactionSignature);
1021
+ const numBytes = bytes.byteLength;
1022
+ if (numBytes !== 64) {
1023
+ return false;
1024
+ }
1025
+ return true;
1026
+ }
1027
+ function getSignatureFromTransaction(transaction) {
1028
+ if (!base58Decoder)
1029
+ base58Decoder = codecsStrings.getBase58Decoder();
1030
+ const signatureBytes = transaction.signatures[transaction.feePayer];
1031
+ if (!signatureBytes) {
1032
+ throw new Error(
1033
+ "Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
1034
+ );
1035
+ }
1036
+ const transactionSignature2 = base58Decoder.decode(signatureBytes)[0];
1037
+ return transactionSignature2;
1038
+ }
1039
+ async function signTransaction(keyPairs, transaction) {
692
1040
  const compiledMessage = compileMessage(transaction);
693
- const [signerPublicKey, signature] = await Promise.all([
694
- addresses.getBase58EncodedAddressFromPublicKey(keyPair.publicKey),
695
- getCompiledMessageSignature(compiledMessage, keyPair.privateKey)
696
- ]);
697
- const nextSignatures = {
698
- ..."signatures" in transaction ? transaction.signatures : null,
699
- ...{ [signerPublicKey]: signature }
700
- };
1041
+ const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
1042
+ const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
1043
+ const publicKeySignaturePairs = await Promise.all(
1044
+ keyPairs.map(
1045
+ (keyPair) => Promise.all([addresses.getAddressFromPublicKey(keyPair.publicKey), keys.signBytes(keyPair.privateKey, wireMessageBytes)])
1046
+ )
1047
+ );
1048
+ for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
1049
+ nextSignatures[signerPublicKey] = signature;
1050
+ }
701
1051
  const out = {
702
1052
  ...transaction,
703
1053
  signatures: nextSignatures
@@ -705,55 +1055,23 @@ async function signTransaction(keyPair, transaction) {
705
1055
  Object.freeze(out);
706
1056
  return out;
707
1057
  }
708
-
709
- // src/compile-transaction.ts
710
- function getCompiledTransaction(transaction) {
711
- const compiledMessage = compileMessage(transaction);
712
- let signatures;
713
- if ("signatures" in transaction) {
714
- signatures = [];
715
- for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
716
- signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
717
- }
718
- } else {
719
- signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
720
- }
721
- return {
722
- compiledMessage,
723
- signatures
724
- };
725
- }
726
-
727
- // src/serializers/transaction.ts
728
- var BASE_CONFIG3 = {
729
- description: __DEV__ ? "The wire format of a Solana transaction" : "",
730
- fixedSize: null,
731
- maxSize: null
732
- };
733
- function serialize3(transaction) {
734
- const compiledTransaction = getCompiledTransaction(transaction);
735
- return umiSerializers.struct([
736
- [
737
- "signatures",
738
- umiSerializers.array(umiSerializers.bytes({ size: 64 }), {
739
- ...__DEV__ ? { description: "A compact array of 64-byte, base-64 encoded Ed25519 signatures" } : null,
740
- size: umiSerializers.shortU16()
741
- })
742
- ],
743
- ["compiledMessage", getCompiledMessageEncoder()]
744
- ]).serialize(compiledTransaction);
1058
+ function transactionSignature(putativeTransactionSignature) {
1059
+ assertIsTransactionSignature(putativeTransactionSignature);
1060
+ return putativeTransactionSignature;
745
1061
  }
746
- function getTransactionEncoder() {
747
- return {
748
- ...BASE_CONFIG3,
749
- deserialize: getUnimplementedDecoder("CompiledMessage"),
750
- serialize: serialize3
751
- };
1062
+ function assertTransactionIsFullySigned(transaction) {
1063
+ const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => i.accounts?.filter((a) => isSignerRole(a.role)) ?? []).map((a) => a.address);
1064
+ const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
1065
+ requiredSigners.forEach((address) => {
1066
+ if (!transaction.signatures[address]) {
1067
+ throw new Error(`Transaction is missing signature for address \`${address}\``);
1068
+ }
1069
+ });
752
1070
  }
753
1071
 
754
1072
  // src/wire-transaction.ts
755
1073
  function getBase64EncodedWireTransaction(transaction) {
756
- const wireTransactionBytes = getTransactionEncoder().serialize(transaction);
1074
+ const wireTransactionBytes = getTransactionEncoder().encode(transaction);
757
1075
  {
758
1076
  return btoa(String.fromCharCode(...wireTransactionBytes));
759
1077
  }
@@ -762,12 +1080,19 @@ function getBase64EncodedWireTransaction(transaction) {
762
1080
  exports.appendTransactionInstruction = appendTransactionInstruction;
763
1081
  exports.assertIsBlockhash = assertIsBlockhash;
764
1082
  exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
1083
+ exports.assertIsTransactionSignature = assertIsTransactionSignature;
1084
+ exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
765
1085
  exports.createTransaction = createTransaction;
766
1086
  exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
1087
+ exports.getSignatureFromTransaction = getSignatureFromTransaction;
1088
+ exports.getTransactionCodec = getTransactionCodec;
1089
+ exports.getTransactionDecoder = getTransactionDecoder;
1090
+ exports.getTransactionEncoder = getTransactionEncoder;
1091
+ exports.isAdvanceNonceAccountInstruction = isAdvanceNonceAccountInstruction;
1092
+ exports.isTransactionSignature = isTransactionSignature;
767
1093
  exports.prependTransactionInstruction = prependTransactionInstruction;
768
1094
  exports.setTransactionFeePayer = setTransactionFeePayer;
769
1095
  exports.setTransactionLifetimeUsingBlockhash = setTransactionLifetimeUsingBlockhash;
770
1096
  exports.setTransactionLifetimeUsingDurableNonce = setTransactionLifetimeUsingDurableNonce;
771
1097
  exports.signTransaction = signTransaction;
772
- //# sourceMappingURL=out.js.map
773
- //# sourceMappingURL=index.browser.cjs.map
1098
+ exports.transactionSignature = transactionSignature;