@solana/transactions 2.0.0-experimental.b419cd0 → 2.0.0-experimental.b5bbd3a
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.
- package/dist/index.browser.cjs +250 -381
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +249 -385
- package/dist/index.browser.js.map +1 -1
- package/dist/index.native.js +249 -385
- package/dist/index.native.js.map +1 -1
- package/dist/index.node.cjs +250 -381
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +249 -385
- package/dist/index.node.js.map +1 -1
- package/dist/types/blockhash.d.ts +4 -3
- package/dist/types/blockhash.d.ts.map +1 -1
- package/dist/types/compilable-transaction.d.ts +4 -4
- package/dist/types/compile-address-table-lookups.d.ts +1 -1
- package/dist/types/compile-header.d.ts +1 -1
- package/dist/types/compile-instructions.d.ts +1 -1
- package/dist/types/compile-lifetime-token.d.ts +1 -1
- package/dist/types/compile-static-accounts.d.ts +1 -1
- package/dist/types/compile-transaction.d.ts +3 -3
- package/dist/types/create-transaction.d.ts +1 -1
- package/dist/types/decompile-transaction.d.ts +3 -3
- package/dist/types/durable-nonce.d.ts +2 -2
- package/dist/types/fee-payer.d.ts +2 -2
- package/dist/types/index.d.ts +11 -10
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instructions.d.ts +2 -2
- package/dist/types/message.d.ts +6 -6
- package/dist/types/serializers/address-table-lookup.d.ts +5 -5
- package/dist/types/serializers/address-table-lookup.d.ts.map +1 -1
- package/dist/types/serializers/header.d.ts +5 -5
- package/dist/types/serializers/header.d.ts.map +1 -1
- package/dist/types/serializers/index.d.ts +2 -1
- package/dist/types/serializers/index.d.ts.map +1 -1
- package/dist/types/serializers/instruction.d.ts +5 -5
- package/dist/types/serializers/instruction.d.ts.map +1 -1
- package/dist/types/serializers/message.d.ts +5 -5
- package/dist/types/serializers/message.d.ts.map +1 -1
- package/dist/types/serializers/transaction-version.d.ts +5 -5
- package/dist/types/serializers/transaction-version.d.ts.map +1 -1
- package/dist/types/serializers/transaction.d.ts +6 -6
- package/dist/types/serializers/transaction.d.ts.map +1 -1
- package/dist/types/signatures.d.ts +2 -2
- package/dist/types/unsigned-transaction.d.ts +1 -1
- package/dist/types/wire-transaction.d.ts +1 -1
- package/dist/types/wire-transaction.d.ts.map +1 -1
- package/package.json +16 -16
- package/dist/index.development.js +0 -1738
- package/dist/index.development.js.map +0 -1
- package/dist/index.production.min.js +0 -27
package/dist/index.browser.cjs
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var codecsStrings = require('@solana/codecs-strings');
|
|
4
|
+
var addresses = require('@solana/addresses');
|
|
4
5
|
var codecsCore = require('@solana/codecs-core');
|
|
5
6
|
var codecsDataStructures = require('@solana/codecs-data-structures');
|
|
6
7
|
var codecsNumbers = require('@solana/codecs-numbers');
|
|
7
|
-
var addresses = require('@solana/addresses');
|
|
8
8
|
var functional = require('@solana/functional');
|
|
9
9
|
var keys = require('@solana/keys');
|
|
10
10
|
|
|
11
|
-
//
|
|
12
|
-
var __DEV__ = /* @__PURE__ */ (() => process["env"].NODE_ENV === "development")();
|
|
11
|
+
// src/blockhash.ts
|
|
13
12
|
|
|
14
13
|
// src/unsigned-transaction.ts
|
|
15
14
|
function getUnsignedTransaction(transaction) {
|
|
@@ -49,6 +48,22 @@ function assertIsBlockhash(putativeBlockhash) {
|
|
|
49
48
|
});
|
|
50
49
|
}
|
|
51
50
|
}
|
|
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;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
function assertIsTransactionWithBlockhashLifetime(transaction) {
|
|
63
|
+
if (!isTransactionWithBlockhashLifetime(transaction)) {
|
|
64
|
+
throw new Error("Transaction does not have a blockhash lifetime");
|
|
65
|
+
}
|
|
66
|
+
}
|
|
52
67
|
function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
|
|
53
68
|
if ("lifetimeConstraint" in transaction && transaction.lifetimeConstraint.blockhash === blockhashLifetimeConstraint.blockhash && transaction.lifetimeConstraint.lastValidBlockHeight === blockhashLifetimeConstraint.lastValidBlockHeight) {
|
|
54
69
|
return transaction;
|
|
@@ -254,7 +269,7 @@ function getAddressMapFromInstructions(feePayer, instructions) {
|
|
|
254
269
|
const shouldReplaceEntry = (
|
|
255
270
|
// Consider using the new LOOKUP_TABLE if its address is different...
|
|
256
271
|
entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
|
|
257
|
-
(addressComparator
|
|
272
|
+
(addressComparator ||= addresses.getAddressComparator())(
|
|
258
273
|
accountMeta.lookupTableAddress,
|
|
259
274
|
entry.lookupTableAddress
|
|
260
275
|
) < 0
|
|
@@ -360,7 +375,7 @@ function getOrderedAccountsFromAddressMap(addressMap) {
|
|
|
360
375
|
if (leftIsWritable !== isWritableRole(rightEntry.role)) {
|
|
361
376
|
return leftIsWritable ? -1 : 1;
|
|
362
377
|
}
|
|
363
|
-
addressComparator
|
|
378
|
+
addressComparator ||= addresses.getAddressComparator();
|
|
364
379
|
if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
|
|
365
380
|
return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
|
|
366
381
|
} else {
|
|
@@ -373,16 +388,15 @@ function getOrderedAccountsFromAddressMap(addressMap) {
|
|
|
373
388
|
return orderedAccounts;
|
|
374
389
|
}
|
|
375
390
|
function getCompiledAddressTableLookups(orderedAccounts) {
|
|
376
|
-
var _a;
|
|
377
391
|
const index = {};
|
|
378
392
|
for (const account of orderedAccounts) {
|
|
379
393
|
if (!("lookupTableAddress" in account)) {
|
|
380
394
|
continue;
|
|
381
395
|
}
|
|
382
|
-
const entry = index[
|
|
396
|
+
const entry = index[account.lookupTableAddress] ||= {
|
|
383
397
|
readableIndices: [],
|
|
384
398
|
writableIndices: []
|
|
385
|
-
}
|
|
399
|
+
};
|
|
386
400
|
if (account.role === AccountRole.WRITABLE) {
|
|
387
401
|
entry.writableIndices.push(account.addressIndex);
|
|
388
402
|
} else {
|
|
@@ -468,6 +482,216 @@ function compileMessage(transaction) {
|
|
|
468
482
|
version: transaction.version
|
|
469
483
|
};
|
|
470
484
|
}
|
|
485
|
+
var memoizedAddressTableLookupEncoder;
|
|
486
|
+
function getAddressTableLookupEncoder() {
|
|
487
|
+
if (!memoizedAddressTableLookupEncoder) {
|
|
488
|
+
memoizedAddressTableLookupEncoder = codecsDataStructures.getStructEncoder([
|
|
489
|
+
["lookupTableAddress", addresses.getAddressEncoder()],
|
|
490
|
+
[
|
|
491
|
+
"writableIndices",
|
|
492
|
+
codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), { size: codecsNumbers.getShortU16Encoder() })
|
|
493
|
+
],
|
|
494
|
+
[
|
|
495
|
+
"readableIndices",
|
|
496
|
+
codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), { size: codecsNumbers.getShortU16Encoder() })
|
|
497
|
+
]
|
|
498
|
+
]);
|
|
499
|
+
}
|
|
500
|
+
return memoizedAddressTableLookupEncoder;
|
|
501
|
+
}
|
|
502
|
+
var memoizedAddressTableLookupDecoder;
|
|
503
|
+
function getAddressTableLookupDecoder() {
|
|
504
|
+
if (!memoizedAddressTableLookupDecoder) {
|
|
505
|
+
memoizedAddressTableLookupDecoder = codecsDataStructures.getStructDecoder([
|
|
506
|
+
["lookupTableAddress", addresses.getAddressDecoder()],
|
|
507
|
+
["writableIndices", codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), { size: codecsNumbers.getShortU16Decoder() })],
|
|
508
|
+
["readableIndices", codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), { size: codecsNumbers.getShortU16Decoder() })]
|
|
509
|
+
]);
|
|
510
|
+
}
|
|
511
|
+
return memoizedAddressTableLookupDecoder;
|
|
512
|
+
}
|
|
513
|
+
var memoizedU8Encoder;
|
|
514
|
+
function getMemoizedU8Encoder() {
|
|
515
|
+
if (!memoizedU8Encoder)
|
|
516
|
+
memoizedU8Encoder = codecsNumbers.getU8Encoder();
|
|
517
|
+
return memoizedU8Encoder;
|
|
518
|
+
}
|
|
519
|
+
var memoizedU8Decoder;
|
|
520
|
+
function getMemoizedU8Decoder() {
|
|
521
|
+
if (!memoizedU8Decoder)
|
|
522
|
+
memoizedU8Decoder = codecsNumbers.getU8Decoder();
|
|
523
|
+
return memoizedU8Decoder;
|
|
524
|
+
}
|
|
525
|
+
function getMessageHeaderEncoder() {
|
|
526
|
+
return codecsDataStructures.getStructEncoder([
|
|
527
|
+
["numSignerAccounts", getMemoizedU8Encoder()],
|
|
528
|
+
["numReadonlySignerAccounts", getMemoizedU8Encoder()],
|
|
529
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8Encoder()]
|
|
530
|
+
]);
|
|
531
|
+
}
|
|
532
|
+
function getMessageHeaderDecoder() {
|
|
533
|
+
return codecsDataStructures.getStructDecoder([
|
|
534
|
+
["numSignerAccounts", getMemoizedU8Decoder()],
|
|
535
|
+
["numReadonlySignerAccounts", getMemoizedU8Decoder()],
|
|
536
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8Decoder()]
|
|
537
|
+
]);
|
|
538
|
+
}
|
|
539
|
+
var memoizedGetInstructionEncoder;
|
|
540
|
+
function getInstructionEncoder() {
|
|
541
|
+
if (!memoizedGetInstructionEncoder) {
|
|
542
|
+
memoizedGetInstructionEncoder = codecsCore.mapEncoder(
|
|
543
|
+
codecsDataStructures.getStructEncoder([
|
|
544
|
+
["programAddressIndex", codecsNumbers.getU8Encoder()],
|
|
545
|
+
["accountIndices", codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), { size: codecsNumbers.getShortU16Encoder() })],
|
|
546
|
+
["data", codecsDataStructures.getBytesEncoder({ size: codecsNumbers.getShortU16Encoder() })]
|
|
547
|
+
]),
|
|
548
|
+
// Convert an instruction to have all fields defined
|
|
549
|
+
(instruction) => {
|
|
550
|
+
if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
|
|
551
|
+
return instruction;
|
|
552
|
+
}
|
|
553
|
+
return {
|
|
554
|
+
...instruction,
|
|
555
|
+
accountIndices: instruction.accountIndices ?? [],
|
|
556
|
+
data: instruction.data ?? new Uint8Array(0)
|
|
557
|
+
};
|
|
558
|
+
}
|
|
559
|
+
);
|
|
560
|
+
}
|
|
561
|
+
return memoizedGetInstructionEncoder;
|
|
562
|
+
}
|
|
563
|
+
var memoizedGetInstructionDecoder;
|
|
564
|
+
function getInstructionDecoder() {
|
|
565
|
+
if (!memoizedGetInstructionDecoder) {
|
|
566
|
+
memoizedGetInstructionDecoder = codecsCore.mapDecoder(
|
|
567
|
+
codecsDataStructures.getStructDecoder([
|
|
568
|
+
["programAddressIndex", codecsNumbers.getU8Decoder()],
|
|
569
|
+
["accountIndices", codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), { size: codecsNumbers.getShortU16Decoder() })],
|
|
570
|
+
["data", codecsDataStructures.getBytesDecoder({ size: codecsNumbers.getShortU16Decoder() })]
|
|
571
|
+
]),
|
|
572
|
+
// Convert an instruction to exclude optional fields if they are empty
|
|
573
|
+
(instruction) => {
|
|
574
|
+
if (instruction.accountIndices.length && instruction.data.byteLength) {
|
|
575
|
+
return instruction;
|
|
576
|
+
}
|
|
577
|
+
const { accountIndices, data, ...rest } = instruction;
|
|
578
|
+
return {
|
|
579
|
+
...rest,
|
|
580
|
+
...accountIndices.length ? { accountIndices } : null,
|
|
581
|
+
...data.byteLength ? { data } : null
|
|
582
|
+
};
|
|
583
|
+
}
|
|
584
|
+
);
|
|
585
|
+
}
|
|
586
|
+
return memoizedGetInstructionDecoder;
|
|
587
|
+
}
|
|
588
|
+
var VERSION_FLAG_MASK = 128;
|
|
589
|
+
function getTransactionVersionEncoder() {
|
|
590
|
+
return codecsCore.createEncoder({
|
|
591
|
+
getSizeFromValue: (value) => value === "legacy" ? 0 : 1,
|
|
592
|
+
maxSize: 1,
|
|
593
|
+
write: (value, bytes, offset) => {
|
|
594
|
+
if (value === "legacy") {
|
|
595
|
+
return offset;
|
|
596
|
+
}
|
|
597
|
+
if (value < 0 || value > 127) {
|
|
598
|
+
throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
|
|
599
|
+
}
|
|
600
|
+
bytes.set([value | VERSION_FLAG_MASK], offset);
|
|
601
|
+
return offset + 1;
|
|
602
|
+
}
|
|
603
|
+
});
|
|
604
|
+
}
|
|
605
|
+
function getTransactionVersionDecoder() {
|
|
606
|
+
return codecsCore.createDecoder({
|
|
607
|
+
maxSize: 1,
|
|
608
|
+
read: (bytes, offset) => {
|
|
609
|
+
const firstByte = bytes[offset];
|
|
610
|
+
if ((firstByte & VERSION_FLAG_MASK) === 0) {
|
|
611
|
+
return ["legacy", offset];
|
|
612
|
+
} else {
|
|
613
|
+
const version = firstByte ^ VERSION_FLAG_MASK;
|
|
614
|
+
return [version, offset + 1];
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
// src/serializers/message.ts
|
|
621
|
+
function getCompiledMessageLegacyEncoder() {
|
|
622
|
+
return codecsDataStructures.getStructEncoder(getPreludeStructEncoderTuple());
|
|
623
|
+
}
|
|
624
|
+
function getCompiledMessageVersionedEncoder() {
|
|
625
|
+
return codecsCore.mapEncoder(
|
|
626
|
+
codecsDataStructures.getStructEncoder([
|
|
627
|
+
...getPreludeStructEncoderTuple(),
|
|
628
|
+
["addressTableLookups", getAddressTableLookupArrayEncoder()]
|
|
629
|
+
]),
|
|
630
|
+
(value) => {
|
|
631
|
+
if (value.version === "legacy") {
|
|
632
|
+
return value;
|
|
633
|
+
}
|
|
634
|
+
return {
|
|
635
|
+
...value,
|
|
636
|
+
addressTableLookups: value.addressTableLookups ?? []
|
|
637
|
+
};
|
|
638
|
+
}
|
|
639
|
+
);
|
|
640
|
+
}
|
|
641
|
+
function getPreludeStructEncoderTuple() {
|
|
642
|
+
return [
|
|
643
|
+
["version", getTransactionVersionEncoder()],
|
|
644
|
+
["header", getMessageHeaderEncoder()],
|
|
645
|
+
["staticAccounts", codecsDataStructures.getArrayEncoder(addresses.getAddressEncoder(), { size: codecsNumbers.getShortU16Encoder() })],
|
|
646
|
+
["lifetimeToken", codecsStrings.getStringEncoder({ encoding: codecsStrings.getBase58Encoder(), size: 32 })],
|
|
647
|
+
["instructions", codecsDataStructures.getArrayEncoder(getInstructionEncoder(), { size: codecsNumbers.getShortU16Encoder() })]
|
|
648
|
+
];
|
|
649
|
+
}
|
|
650
|
+
function getPreludeStructDecoderTuple() {
|
|
651
|
+
return [
|
|
652
|
+
["version", getTransactionVersionDecoder()],
|
|
653
|
+
["header", getMessageHeaderDecoder()],
|
|
654
|
+
["staticAccounts", codecsDataStructures.getArrayDecoder(addresses.getAddressDecoder(), { size: codecsNumbers.getShortU16Decoder() })],
|
|
655
|
+
["lifetimeToken", codecsStrings.getStringDecoder({ encoding: codecsStrings.getBase58Decoder(), size: 32 })],
|
|
656
|
+
["instructions", codecsDataStructures.getArrayDecoder(getInstructionDecoder(), { size: codecsNumbers.getShortU16Decoder() })],
|
|
657
|
+
["addressTableLookups", getAddressTableLookupArrayDecoder()]
|
|
658
|
+
];
|
|
659
|
+
}
|
|
660
|
+
function getAddressTableLookupArrayEncoder() {
|
|
661
|
+
return codecsDataStructures.getArrayEncoder(getAddressTableLookupEncoder(), { size: codecsNumbers.getShortU16Encoder() });
|
|
662
|
+
}
|
|
663
|
+
function getAddressTableLookupArrayDecoder() {
|
|
664
|
+
return codecsDataStructures.getArrayDecoder(getAddressTableLookupDecoder(), { size: codecsNumbers.getShortU16Decoder() });
|
|
665
|
+
}
|
|
666
|
+
function getCompiledMessageEncoder() {
|
|
667
|
+
return codecsCore.createEncoder({
|
|
668
|
+
getSizeFromValue: (compiledMessage) => {
|
|
669
|
+
if (compiledMessage.version === "legacy") {
|
|
670
|
+
return getCompiledMessageLegacyEncoder().getSizeFromValue(compiledMessage);
|
|
671
|
+
} else {
|
|
672
|
+
return getCompiledMessageVersionedEncoder().getSizeFromValue(compiledMessage);
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
write: (compiledMessage, bytes, offset) => {
|
|
676
|
+
if (compiledMessage.version === "legacy") {
|
|
677
|
+
return getCompiledMessageLegacyEncoder().write(compiledMessage, bytes, offset);
|
|
678
|
+
} else {
|
|
679
|
+
return getCompiledMessageVersionedEncoder().write(compiledMessage, bytes, offset);
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
}
|
|
684
|
+
function getCompiledMessageDecoder() {
|
|
685
|
+
return codecsCore.mapDecoder(codecsDataStructures.getStructDecoder(getPreludeStructDecoderTuple()), ({ addressTableLookups, ...restOfMessage }) => {
|
|
686
|
+
if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
|
|
687
|
+
return restOfMessage;
|
|
688
|
+
}
|
|
689
|
+
return { ...restOfMessage, addressTableLookups };
|
|
690
|
+
});
|
|
691
|
+
}
|
|
692
|
+
function getCompiledMessageCodec() {
|
|
693
|
+
return codecsCore.combineCodec(getCompiledMessageEncoder(), getCompiledMessageDecoder());
|
|
694
|
+
}
|
|
471
695
|
|
|
472
696
|
// src/compile-transaction.ts
|
|
473
697
|
function getCompiledTransaction(transaction) {
|
|
@@ -596,380 +820,24 @@ function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
|
|
|
596
820
|
(tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
|
|
597
821
|
);
|
|
598
822
|
}
|
|
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(
|
|
607
|
-
[
|
|
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
|
-
]
|
|
623
|
-
],
|
|
624
|
-
{ description: addressTableLookupDescription }
|
|
625
|
-
);
|
|
626
|
-
}
|
|
627
|
-
return memoizedAddressTableLookupEncoder;
|
|
628
|
-
}
|
|
629
|
-
var memoizedAddressTableLookupDecoder;
|
|
630
|
-
function getAddressTableLookupDecoder() {
|
|
631
|
-
if (!memoizedAddressTableLookupDecoder) {
|
|
632
|
-
memoizedAddressTableLookupDecoder = codecsDataStructures.getStructDecoder(
|
|
633
|
-
[
|
|
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
|
-
]
|
|
649
|
-
],
|
|
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)]
|
|
691
|
-
],
|
|
692
|
-
{
|
|
693
|
-
description: messageHeaderDescription
|
|
694
|
-
}
|
|
695
|
-
);
|
|
696
|
-
}
|
|
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
|
|
706
|
-
}
|
|
707
|
-
);
|
|
708
|
-
}
|
|
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;
|
|
742
|
-
}
|
|
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;
|
|
773
|
-
}
|
|
774
|
-
var VERSION_FLAG_MASK = 128;
|
|
775
|
-
var BASE_CONFIG = {
|
|
776
|
-
description: __DEV__ ? "A single byte that encodes the version of the transaction" : "",
|
|
777
|
-
fixedSize: null,
|
|
778
|
-
maxSize: 1
|
|
779
|
-
};
|
|
780
|
-
function decode(bytes, offset = 0) {
|
|
781
|
-
const firstByte = bytes[offset];
|
|
782
|
-
if ((firstByte & VERSION_FLAG_MASK) === 0) {
|
|
783
|
-
return ["legacy", offset];
|
|
784
|
-
} else {
|
|
785
|
-
const version = firstByte ^ VERSION_FLAG_MASK;
|
|
786
|
-
return [version, offset + 1];
|
|
787
|
-
}
|
|
788
|
-
}
|
|
789
|
-
function encode(value) {
|
|
790
|
-
if (value === "legacy") {
|
|
791
|
-
return new Uint8Array();
|
|
792
|
-
}
|
|
793
|
-
if (value < 0 || value > 127) {
|
|
794
|
-
throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
|
|
795
|
-
}
|
|
796
|
-
return new Uint8Array([value | VERSION_FLAG_MASK]);
|
|
797
|
-
}
|
|
798
|
-
function getTransactionVersionDecoder() {
|
|
799
|
-
return {
|
|
800
|
-
...BASE_CONFIG,
|
|
801
|
-
decode
|
|
802
|
-
};
|
|
803
|
-
}
|
|
804
|
-
function getTransactionVersionEncoder() {
|
|
805
|
-
return {
|
|
806
|
-
...BASE_CONFIG,
|
|
807
|
-
encode
|
|
808
|
-
};
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
// src/serializers/message.ts
|
|
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;
|
|
828
|
-
}
|
|
829
|
-
return {
|
|
830
|
-
...value,
|
|
831
|
-
addressTableLookups: value.addressTableLookups ?? []
|
|
832
|
-
};
|
|
833
|
-
}
|
|
834
|
-
);
|
|
835
|
-
}
|
|
836
|
-
function getPreludeStructEncoderTuple() {
|
|
837
|
-
return [
|
|
838
|
-
["version", getTransactionVersionEncoder()],
|
|
839
|
-
["header", getMessageHeaderEncoder()],
|
|
840
|
-
[
|
|
841
|
-
"staticAccounts",
|
|
842
|
-
codecsDataStructures.getArrayEncoder(addresses.getAddressEncoder(), {
|
|
843
|
-
description: staticAccountsDescription,
|
|
844
|
-
size: codecsNumbers.getShortU16Encoder()
|
|
845
|
-
})
|
|
846
|
-
],
|
|
847
|
-
[
|
|
848
|
-
"lifetimeToken",
|
|
849
|
-
codecsStrings.getStringEncoder({
|
|
850
|
-
description: lifetimeTokenDescription,
|
|
851
|
-
encoding: codecsStrings.getBase58Encoder(),
|
|
852
|
-
size: 32
|
|
853
|
-
})
|
|
854
|
-
],
|
|
855
|
-
[
|
|
856
|
-
"instructions",
|
|
857
|
-
codecsDataStructures.getArrayEncoder(getInstructionEncoder(), {
|
|
858
|
-
description: instructionsDescription,
|
|
859
|
-
size: codecsNumbers.getShortU16Encoder()
|
|
860
|
-
})
|
|
861
|
-
]
|
|
862
|
-
];
|
|
863
|
-
}
|
|
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()
|
|
897
|
-
});
|
|
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";
|
|
906
|
-
function getCompiledMessageEncoder() {
|
|
907
|
-
return {
|
|
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
|
|
918
|
-
};
|
|
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
|
-
}
|
|
933
823
|
|
|
934
824
|
// 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
825
|
function getCompiledTransactionEncoder() {
|
|
938
|
-
return codecsDataStructures.getStructEncoder(
|
|
939
|
-
[
|
|
940
|
-
|
|
941
|
-
|
|
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
|
-
);
|
|
953
|
-
}
|
|
954
|
-
function getSignatureDecoder() {
|
|
955
|
-
return codecsCore.mapDecoder(codecsDataStructures.getBytesDecoder({ size: 64 }), (bytes) => bytes);
|
|
826
|
+
return codecsDataStructures.getStructEncoder([
|
|
827
|
+
["signatures", codecsDataStructures.getArrayEncoder(codecsDataStructures.getBytesEncoder({ size: 64 }), { size: codecsNumbers.getShortU16Encoder() })],
|
|
828
|
+
["compiledMessage", getCompiledMessageEncoder()]
|
|
829
|
+
]);
|
|
956
830
|
}
|
|
957
831
|
function getCompiledTransactionDecoder() {
|
|
958
|
-
return codecsDataStructures.getStructDecoder(
|
|
832
|
+
return codecsDataStructures.getStructDecoder([
|
|
959
833
|
[
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
size: codecsNumbers.getShortU16Decoder()
|
|
965
|
-
})
|
|
966
|
-
],
|
|
967
|
-
["compiledMessage", getCompiledMessageDecoder()]
|
|
834
|
+
"signatures",
|
|
835
|
+
codecsDataStructures.getArrayDecoder(codecsDataStructures.getBytesDecoder({ size: 64 }), {
|
|
836
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
837
|
+
})
|
|
968
838
|
],
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
}
|
|
972
|
-
);
|
|
839
|
+
["compiledMessage", getCompiledMessageDecoder()]
|
|
840
|
+
]);
|
|
973
841
|
}
|
|
974
842
|
function getTransactionEncoder() {
|
|
975
843
|
return codecsCore.mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
|
|
@@ -993,7 +861,7 @@ function getSignatureFromTransaction(transaction) {
|
|
|
993
861
|
"Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
|
|
994
862
|
);
|
|
995
863
|
}
|
|
996
|
-
const transactionSignature = base58Decoder.decode(signatureBytes)
|
|
864
|
+
const transactionSignature = base58Decoder.decode(signatureBytes);
|
|
997
865
|
return transactionSignature;
|
|
998
866
|
}
|
|
999
867
|
async function partiallySignTransaction(keyPairs, transaction) {
|
|
@@ -1030,21 +898,22 @@ function assertTransactionIsFullySigned(transaction) {
|
|
|
1030
898
|
}
|
|
1031
899
|
});
|
|
1032
900
|
}
|
|
1033
|
-
|
|
1034
|
-
// src/wire-transaction.ts
|
|
1035
901
|
function getBase64EncodedWireTransaction(transaction) {
|
|
1036
902
|
const wireTransactionBytes = getTransactionEncoder().encode(transaction);
|
|
1037
|
-
|
|
1038
|
-
return btoa(String.fromCharCode(...wireTransactionBytes));
|
|
1039
|
-
}
|
|
903
|
+
return codecsStrings.getBase64Decoder().decode(wireTransactionBytes);
|
|
1040
904
|
}
|
|
1041
905
|
|
|
1042
906
|
exports.appendTransactionInstruction = appendTransactionInstruction;
|
|
1043
907
|
exports.assertIsBlockhash = assertIsBlockhash;
|
|
1044
908
|
exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
|
|
909
|
+
exports.assertIsTransactionWithBlockhashLifetime = assertIsTransactionWithBlockhashLifetime;
|
|
1045
910
|
exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
|
|
911
|
+
exports.compileMessage = compileMessage;
|
|
1046
912
|
exports.createTransaction = createTransaction;
|
|
1047
913
|
exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
|
|
914
|
+
exports.getCompiledMessageCodec = getCompiledMessageCodec;
|
|
915
|
+
exports.getCompiledMessageDecoder = getCompiledMessageDecoder;
|
|
916
|
+
exports.getCompiledMessageEncoder = getCompiledMessageEncoder;
|
|
1048
917
|
exports.getSignatureFromTransaction = getSignatureFromTransaction;
|
|
1049
918
|
exports.getTransactionCodec = getTransactionCodec;
|
|
1050
919
|
exports.getTransactionDecoder = getTransactionDecoder;
|