@solana/transactions 2.0.0-experimental.7da1908 → 2.0.0-experimental.7ed772d
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/LICENSE +1 -1
- package/README.md +272 -5
- package/dist/index.browser.cjs +420 -322
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +411 -319
- package/dist/index.browser.js.map +1 -1
- package/dist/index.development.js +1004 -759
- package/dist/index.development.js.map +1 -1
- package/dist/index.native.js +411 -319
- package/dist/index.native.js.map +1 -1
- package/dist/index.node.cjs +422 -320
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +413 -319
- package/dist/index.node.js.map +1 -1
- package/dist/index.production.min.js +23 -15
- package/dist/types/accounts.d.ts +2 -2
- package/dist/types/accounts.d.ts.map +1 -1
- package/dist/types/blockhash.d.ts +1 -0
- package/dist/types/blockhash.d.ts.map +1 -1
- package/dist/types/compilable-transaction.d.ts +7 -0
- package/dist/types/compilable-transaction.d.ts.map +1 -0
- package/dist/types/compile-address-table-lookups.d.ts +2 -2
- package/dist/types/compile-address-table-lookups.d.ts.map +1 -1
- package/dist/types/compile-static-accounts.d.ts +2 -2
- package/dist/types/compile-static-accounts.d.ts.map +1 -1
- package/dist/types/compile-transaction.d.ts +5 -6
- package/dist/types/compile-transaction.d.ts.map +1 -1
- package/dist/types/decompile-transaction.d.ts +5 -0
- package/dist/types/decompile-transaction.d.ts.map +1 -0
- package/dist/types/durable-nonce.d.ts +6 -6
- package/dist/types/durable-nonce.d.ts.map +1 -1
- package/dist/types/fee-payer.d.ts +4 -4
- package/dist/types/fee-payer.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/message.d.ts +1 -5
- package/dist/types/message.d.ts.map +1 -1
- package/dist/types/serializers/address-table-lookup.d.ts +5 -3
- package/dist/types/serializers/address-table-lookup.d.ts.map +1 -1
- package/dist/types/serializers/header.d.ts +4 -2
- package/dist/types/serializers/header.d.ts.map +1 -1
- package/dist/types/serializers/index.d.ts +3 -0
- package/dist/types/serializers/index.d.ts.map +1 -0
- package/dist/types/serializers/instruction.d.ts +4 -2
- package/dist/types/serializers/instruction.d.ts.map +1 -1
- package/dist/types/serializers/message.d.ts +4 -4
- package/dist/types/serializers/message.d.ts.map +1 -1
- package/dist/types/serializers/transaction-version.d.ts +4 -4
- package/dist/types/serializers/transaction-version.d.ts.map +1 -1
- package/dist/types/serializers/transaction.d.ts +6 -5
- package/dist/types/serializers/transaction.d.ts.map +1 -1
- package/dist/types/signatures.d.ts +8 -12
- package/dist/types/signatures.d.ts.map +1 -1
- package/dist/types/types.d.ts +6 -13
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/wire-transaction.d.ts +1 -1
- package/dist/types/wire-transaction.d.ts.map +1 -1
- package/package.json +18 -14
- package/dist/types/serializers/unimplemented.d.ts +0 -3
- package/dist/types/serializers/unimplemented.d.ts.map +0 -1
package/dist/index.native.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getAddressFromPublicKey,
|
|
1
|
+
import { getBase58Encoder, getBase58Decoder, getBase64Decoder, getStringEncoder, getStringDecoder } from '@solana/codecs-strings';
|
|
2
|
+
import { getAddressFromPublicKey, getAddressComparator, getAddressEncoder, getAddressDecoder, assertIsAddress } from '@solana/addresses';
|
|
3
|
+
import { createEncoder, mapDecoder, combineCodec, mapEncoder, createDecoder } from '@solana/codecs-core';
|
|
4
|
+
import { getStructDecoder, getStructEncoder, getArrayEncoder, getArrayDecoder, getBytesEncoder, getBytesDecoder } from '@solana/codecs-data-structures';
|
|
5
|
+
import { getShortU16Encoder, getShortU16Decoder, getU8Encoder, getU8Decoder } from '@solana/codecs-numbers';
|
|
6
|
+
import { pipe } from '@solana/functional';
|
|
3
7
|
import { signBytes } from '@solana/keys';
|
|
4
8
|
|
|
5
|
-
//
|
|
6
|
-
var __DEV__ = /* @__PURE__ */ (() => process["env"].NODE_ENV === "development")();
|
|
9
|
+
// src/blockhash.ts
|
|
7
10
|
|
|
8
11
|
// src/unsigned-transaction.ts
|
|
9
12
|
function getUnsignedTransaction(transaction) {
|
|
@@ -20,7 +23,10 @@ function getUnsignedTransaction(transaction) {
|
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
// src/blockhash.ts
|
|
26
|
+
var base58Encoder;
|
|
23
27
|
function assertIsBlockhash(putativeBlockhash) {
|
|
28
|
+
if (!base58Encoder)
|
|
29
|
+
base58Encoder = getBase58Encoder();
|
|
24
30
|
try {
|
|
25
31
|
if (
|
|
26
32
|
// Lowest value (32 bytes of zeroes)
|
|
@@ -29,8 +35,8 @@ function assertIsBlockhash(putativeBlockhash) {
|
|
|
29
35
|
) {
|
|
30
36
|
throw new Error("Expected input string to decode to a byte array of length 32.");
|
|
31
37
|
}
|
|
32
|
-
const
|
|
33
|
-
const numBytes =
|
|
38
|
+
const bytes = base58Encoder.encode(putativeBlockhash);
|
|
39
|
+
const numBytes = bytes.byteLength;
|
|
34
40
|
if (numBytes !== 32) {
|
|
35
41
|
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
|
|
36
42
|
}
|
|
@@ -40,6 +46,22 @@ function assertIsBlockhash(putativeBlockhash) {
|
|
|
40
46
|
});
|
|
41
47
|
}
|
|
42
48
|
}
|
|
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;
|
|
53
|
+
try {
|
|
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");
|
|
63
|
+
}
|
|
64
|
+
}
|
|
43
65
|
function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
|
|
44
66
|
if ("lifetimeConstraint" in transaction && transaction.lifetimeConstraint.blockhash === blockhashLifetimeConstraint.blockhash && transaction.lifetimeConstraint.lastValidBlockHeight === blockhashLifetimeConstraint.lastValidBlockHeight) {
|
|
45
67
|
return transaction;
|
|
@@ -115,7 +137,7 @@ function isAdvanceNonceAccountInstruction(instruction) {
|
|
|
115
137
|
instruction.accounts?.length === 3 && // First account is nonce account address
|
|
116
138
|
instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
|
|
117
139
|
instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
|
|
118
|
-
instruction.accounts[2].address != null && instruction.accounts[2].role
|
|
140
|
+
instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
|
|
119
141
|
}
|
|
120
142
|
function isAdvanceNonceAccountInstructionData(data) {
|
|
121
143
|
return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
|
|
@@ -123,21 +145,38 @@ function isAdvanceNonceAccountInstructionData(data) {
|
|
|
123
145
|
function isDurableNonceTransaction(transaction) {
|
|
124
146
|
return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
|
|
125
147
|
}
|
|
148
|
+
function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
|
|
149
|
+
return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
|
|
150
|
+
}
|
|
126
151
|
function setTransactionLifetimeUsingDurableNonce({
|
|
127
152
|
nonce,
|
|
128
153
|
nonceAccountAddress,
|
|
129
154
|
nonceAuthorityAddress
|
|
130
155
|
}, transaction) {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
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
|
+
];
|
|
134
176
|
}
|
|
135
177
|
const out = {
|
|
136
178
|
...getUnsignedTransaction(transaction),
|
|
137
|
-
instructions:
|
|
138
|
-
createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
|
|
139
|
-
...isAlreadyDurableNonceTransaction ? transaction.instructions.slice(1) : transaction.instructions
|
|
140
|
-
],
|
|
179
|
+
instructions: newInstructions,
|
|
141
180
|
lifetimeConstraint: {
|
|
142
181
|
nonce
|
|
143
182
|
}
|
|
@@ -228,7 +267,7 @@ function getAddressMapFromInstructions(feePayer, instructions) {
|
|
|
228
267
|
const shouldReplaceEntry = (
|
|
229
268
|
// Consider using the new LOOKUP_TABLE if its address is different...
|
|
230
269
|
entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
|
|
231
|
-
(addressComparator
|
|
270
|
+
(addressComparator ||= getAddressComparator())(
|
|
232
271
|
accountMeta.lookupTableAddress,
|
|
233
272
|
entry.lookupTableAddress
|
|
234
273
|
) < 0
|
|
@@ -334,7 +373,7 @@ function getOrderedAccountsFromAddressMap(addressMap) {
|
|
|
334
373
|
if (leftIsWritable !== isWritableRole(rightEntry.role)) {
|
|
335
374
|
return leftIsWritable ? -1 : 1;
|
|
336
375
|
}
|
|
337
|
-
addressComparator
|
|
376
|
+
addressComparator ||= getAddressComparator();
|
|
338
377
|
if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
|
|
339
378
|
return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
|
|
340
379
|
} else {
|
|
@@ -347,23 +386,22 @@ function getOrderedAccountsFromAddressMap(addressMap) {
|
|
|
347
386
|
return orderedAccounts;
|
|
348
387
|
}
|
|
349
388
|
function getCompiledAddressTableLookups(orderedAccounts) {
|
|
350
|
-
var _a;
|
|
351
389
|
const index = {};
|
|
352
390
|
for (const account of orderedAccounts) {
|
|
353
391
|
if (!("lookupTableAddress" in account)) {
|
|
354
392
|
continue;
|
|
355
393
|
}
|
|
356
|
-
const entry = index[
|
|
394
|
+
const entry = index[account.lookupTableAddress] ||= {
|
|
357
395
|
readableIndices: [],
|
|
358
396
|
writableIndices: []
|
|
359
|
-
}
|
|
397
|
+
};
|
|
360
398
|
if (account.role === AccountRole.WRITABLE) {
|
|
361
399
|
entry.writableIndices.push(account.addressIndex);
|
|
362
400
|
} else {
|
|
363
401
|
entry.readableIndices.push(account.addressIndex);
|
|
364
402
|
}
|
|
365
403
|
}
|
|
366
|
-
return Object.keys(index).sort(
|
|
404
|
+
return Object.keys(index).sort(getAddressComparator()).map((lookupTableAddress) => ({
|
|
367
405
|
lookupTableAddress,
|
|
368
406
|
...index[lookupTableAddress]
|
|
369
407
|
}));
|
|
@@ -442,303 +480,395 @@ function compileMessage(transaction) {
|
|
|
442
480
|
version: transaction.version
|
|
443
481
|
};
|
|
444
482
|
}
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
getBase58EncodedAddressCodec(
|
|
451
|
-
__DEV__ ? {
|
|
452
|
-
description: "The address of the address lookup table account from which instruction addresses should be looked up"
|
|
453
|
-
} : void 0
|
|
454
|
-
)
|
|
455
|
-
],
|
|
483
|
+
var memoizedAddressTableLookupEncoder;
|
|
484
|
+
function getAddressTableLookupEncoder() {
|
|
485
|
+
if (!memoizedAddressTableLookupEncoder) {
|
|
486
|
+
memoizedAddressTableLookupEncoder = getStructEncoder([
|
|
487
|
+
["lookupTableAddress", getAddressEncoder()],
|
|
456
488
|
[
|
|
457
489
|
"writableIndices",
|
|
458
|
-
|
|
459
|
-
...__DEV__ ? {
|
|
460
|
-
description: "The indices of the accounts in the lookup table that should be loaded as writeable"
|
|
461
|
-
} : null,
|
|
462
|
-
size: shortU16()
|
|
463
|
-
})
|
|
490
|
+
getArrayEncoder(getU8Encoder(), { size: getShortU16Encoder() })
|
|
464
491
|
],
|
|
465
492
|
[
|
|
466
493
|
"readableIndices",
|
|
467
|
-
|
|
468
|
-
...__DEV__ ? {
|
|
469
|
-
description: "The indices of the accounts in the lookup table that should be loaded as read-only"
|
|
470
|
-
} : void 0,
|
|
471
|
-
size: shortU16()
|
|
472
|
-
})
|
|
494
|
+
getArrayEncoder(getU8Encoder(), { size: getShortU16Encoder() })
|
|
473
495
|
]
|
|
474
|
-
]
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
496
|
+
]);
|
|
497
|
+
}
|
|
498
|
+
return memoizedAddressTableLookupEncoder;
|
|
499
|
+
}
|
|
500
|
+
var memoizedAddressTableLookupDecoder;
|
|
501
|
+
function getAddressTableLookupDecoder() {
|
|
502
|
+
if (!memoizedAddressTableLookupDecoder) {
|
|
503
|
+
memoizedAddressTableLookupDecoder = getStructDecoder([
|
|
504
|
+
["lookupTableAddress", getAddressDecoder()],
|
|
505
|
+
["writableIndices", getArrayDecoder(getU8Decoder(), { size: getShortU16Decoder() })],
|
|
506
|
+
["readableIndices", getArrayDecoder(getU8Decoder(), { size: getShortU16Decoder() })]
|
|
507
|
+
]);
|
|
508
|
+
}
|
|
509
|
+
return memoizedAddressTableLookupDecoder;
|
|
510
|
+
}
|
|
511
|
+
var memoizedU8Encoder;
|
|
512
|
+
function getMemoizedU8Encoder() {
|
|
513
|
+
if (!memoizedU8Encoder)
|
|
514
|
+
memoizedU8Encoder = getU8Encoder();
|
|
515
|
+
return memoizedU8Encoder;
|
|
516
|
+
}
|
|
517
|
+
var memoizedU8Decoder;
|
|
518
|
+
function getMemoizedU8Decoder() {
|
|
519
|
+
if (!memoizedU8Decoder)
|
|
520
|
+
memoizedU8Decoder = getU8Decoder();
|
|
521
|
+
return memoizedU8Decoder;
|
|
522
|
+
}
|
|
523
|
+
function getMessageHeaderEncoder() {
|
|
524
|
+
return getStructEncoder([
|
|
525
|
+
["numSignerAccounts", getMemoizedU8Encoder()],
|
|
526
|
+
["numReadonlySignerAccounts", getMemoizedU8Encoder()],
|
|
527
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8Encoder()]
|
|
528
|
+
]);
|
|
529
|
+
}
|
|
530
|
+
function getMessageHeaderDecoder() {
|
|
531
|
+
return getStructDecoder([
|
|
532
|
+
["numSignerAccounts", getMemoizedU8Decoder()],
|
|
533
|
+
["numReadonlySignerAccounts", getMemoizedU8Decoder()],
|
|
534
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8Decoder()]
|
|
535
|
+
]);
|
|
536
|
+
}
|
|
537
|
+
var memoizedGetInstructionEncoder;
|
|
538
|
+
function getInstructionEncoder() {
|
|
539
|
+
if (!memoizedGetInstructionEncoder) {
|
|
540
|
+
memoizedGetInstructionEncoder = mapEncoder(
|
|
541
|
+
getStructEncoder([
|
|
542
|
+
["programAddressIndex", getU8Encoder()],
|
|
543
|
+
["accountIndices", getArrayEncoder(getU8Encoder(), { size: getShortU16Encoder() })],
|
|
544
|
+
["data", getBytesEncoder({ size: getShortU16Encoder() })]
|
|
545
|
+
]),
|
|
546
|
+
// Convert an instruction to have all fields defined
|
|
547
|
+
(instruction) => {
|
|
548
|
+
if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
|
|
549
|
+
return instruction;
|
|
550
|
+
}
|
|
551
|
+
return {
|
|
552
|
+
...instruction,
|
|
553
|
+
accountIndices: instruction.accountIndices ?? [],
|
|
554
|
+
data: instruction.data ?? new Uint8Array(0)
|
|
555
|
+
};
|
|
556
|
+
}
|
|
557
|
+
);
|
|
558
|
+
}
|
|
559
|
+
return memoizedGetInstructionEncoder;
|
|
560
|
+
}
|
|
561
|
+
var memoizedGetInstructionDecoder;
|
|
562
|
+
function getInstructionDecoder() {
|
|
563
|
+
if (!memoizedGetInstructionDecoder) {
|
|
564
|
+
memoizedGetInstructionDecoder = mapDecoder(
|
|
565
|
+
getStructDecoder([
|
|
566
|
+
["programAddressIndex", getU8Decoder()],
|
|
567
|
+
["accountIndices", getArrayDecoder(getU8Decoder(), { size: getShortU16Decoder() })],
|
|
568
|
+
["data", getBytesDecoder({ size: getShortU16Decoder() })]
|
|
569
|
+
]),
|
|
570
|
+
// Convert an instruction to exclude optional fields if they are empty
|
|
571
|
+
(instruction) => {
|
|
572
|
+
if (instruction.accountIndices.length && instruction.data.byteLength) {
|
|
573
|
+
return instruction;
|
|
574
|
+
}
|
|
575
|
+
const { accountIndices, data, ...rest } = instruction;
|
|
576
|
+
return {
|
|
577
|
+
...rest,
|
|
578
|
+
...accountIndices.length ? { accountIndices } : null,
|
|
579
|
+
...data.byteLength ? { data } : null
|
|
580
|
+
};
|
|
581
|
+
}
|
|
582
|
+
);
|
|
583
|
+
}
|
|
584
|
+
return memoizedGetInstructionDecoder;
|
|
479
585
|
}
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
} : void 0
|
|
497
|
-
)
|
|
498
|
-
],
|
|
499
|
-
[
|
|
500
|
-
"numReadonlyNonSignerAccounts",
|
|
501
|
-
u8(
|
|
502
|
-
__DEV__ ? {
|
|
503
|
-
description: "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable"
|
|
504
|
-
} : void 0
|
|
505
|
-
)
|
|
506
|
-
]
|
|
507
|
-
],
|
|
508
|
-
__DEV__ ? {
|
|
509
|
-
description: "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses"
|
|
510
|
-
} : void 0
|
|
511
|
-
);
|
|
586
|
+
var VERSION_FLAG_MASK = 128;
|
|
587
|
+
function getTransactionVersionEncoder() {
|
|
588
|
+
return createEncoder({
|
|
589
|
+
getSizeFromValue: (value) => value === "legacy" ? 0 : 1,
|
|
590
|
+
maxSize: 1,
|
|
591
|
+
write: (value, bytes, offset) => {
|
|
592
|
+
if (value === "legacy") {
|
|
593
|
+
return offset;
|
|
594
|
+
}
|
|
595
|
+
if (value < 0 || value > 127) {
|
|
596
|
+
throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
|
|
597
|
+
}
|
|
598
|
+
bytes.set([value | VERSION_FLAG_MASK], offset);
|
|
599
|
+
return offset + 1;
|
|
600
|
+
}
|
|
601
|
+
});
|
|
512
602
|
}
|
|
513
|
-
function
|
|
514
|
-
return
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
[
|
|
537
|
-
"data",
|
|
538
|
-
bytes({
|
|
539
|
-
description: __DEV__ ? "An optional buffer of data passed to the instruction" : "",
|
|
540
|
-
size: shortU16()
|
|
541
|
-
})
|
|
542
|
-
]
|
|
603
|
+
function getTransactionVersionDecoder() {
|
|
604
|
+
return createDecoder({
|
|
605
|
+
maxSize: 1,
|
|
606
|
+
read: (bytes, offset) => {
|
|
607
|
+
const firstByte = bytes[offset];
|
|
608
|
+
if ((firstByte & VERSION_FLAG_MASK) === 0) {
|
|
609
|
+
return ["legacy", offset];
|
|
610
|
+
} else {
|
|
611
|
+
const version = firstByte ^ VERSION_FLAG_MASK;
|
|
612
|
+
return [version, offset + 1];
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
});
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
// src/serializers/message.ts
|
|
619
|
+
function getCompiledMessageLegacyEncoder() {
|
|
620
|
+
return getStructEncoder(getPreludeStructEncoderTuple());
|
|
621
|
+
}
|
|
622
|
+
function getCompiledMessageVersionedEncoder() {
|
|
623
|
+
return mapEncoder(
|
|
624
|
+
getStructEncoder([
|
|
625
|
+
...getPreludeStructEncoderTuple(),
|
|
626
|
+
["addressTableLookups", getAddressTableLookupArrayEncoder()]
|
|
543
627
|
]),
|
|
544
628
|
(value) => {
|
|
545
|
-
if (value.
|
|
629
|
+
if (value.version === "legacy") {
|
|
546
630
|
return value;
|
|
547
631
|
}
|
|
548
632
|
return {
|
|
549
633
|
...value,
|
|
550
|
-
|
|
551
|
-
data: value.data ?? new Uint8Array(0)
|
|
634
|
+
addressTableLookups: value.addressTableLookups ?? []
|
|
552
635
|
};
|
|
636
|
+
}
|
|
637
|
+
);
|
|
638
|
+
}
|
|
639
|
+
function getPreludeStructEncoderTuple() {
|
|
640
|
+
return [
|
|
641
|
+
["version", getTransactionVersionEncoder()],
|
|
642
|
+
["header", getMessageHeaderEncoder()],
|
|
643
|
+
["staticAccounts", getArrayEncoder(getAddressEncoder(), { size: getShortU16Encoder() })],
|
|
644
|
+
["lifetimeToken", getStringEncoder({ encoding: getBase58Encoder(), size: 32 })],
|
|
645
|
+
["instructions", getArrayEncoder(getInstructionEncoder(), { size: getShortU16Encoder() })]
|
|
646
|
+
];
|
|
647
|
+
}
|
|
648
|
+
function getPreludeStructDecoderTuple() {
|
|
649
|
+
return [
|
|
650
|
+
["version", getTransactionVersionDecoder()],
|
|
651
|
+
["header", getMessageHeaderDecoder()],
|
|
652
|
+
["staticAccounts", getArrayDecoder(getAddressDecoder(), { size: getShortU16Decoder() })],
|
|
653
|
+
["lifetimeToken", getStringDecoder({ encoding: getBase58Decoder(), size: 32 })],
|
|
654
|
+
["instructions", getArrayDecoder(getInstructionDecoder(), { size: getShortU16Decoder() })],
|
|
655
|
+
["addressTableLookups", getAddressTableLookupArrayDecoder()]
|
|
656
|
+
];
|
|
657
|
+
}
|
|
658
|
+
function getAddressTableLookupArrayEncoder() {
|
|
659
|
+
return getArrayEncoder(getAddressTableLookupEncoder(), { size: getShortU16Encoder() });
|
|
660
|
+
}
|
|
661
|
+
function getAddressTableLookupArrayDecoder() {
|
|
662
|
+
return getArrayDecoder(getAddressTableLookupDecoder(), { size: getShortU16Decoder() });
|
|
663
|
+
}
|
|
664
|
+
function getCompiledMessageEncoder() {
|
|
665
|
+
return createEncoder({
|
|
666
|
+
getSizeFromValue: (compiledMessage) => {
|
|
667
|
+
if (compiledMessage.version === "legacy") {
|
|
668
|
+
return getCompiledMessageLegacyEncoder().getSizeFromValue(compiledMessage);
|
|
669
|
+
} else {
|
|
670
|
+
return getCompiledMessageVersionedEncoder().getSizeFromValue(compiledMessage);
|
|
671
|
+
}
|
|
553
672
|
},
|
|
554
|
-
(
|
|
555
|
-
if (
|
|
556
|
-
return
|
|
673
|
+
write: (compiledMessage, bytes, offset) => {
|
|
674
|
+
if (compiledMessage.version === "legacy") {
|
|
675
|
+
return getCompiledMessageLegacyEncoder().write(compiledMessage, bytes, offset);
|
|
676
|
+
} else {
|
|
677
|
+
return getCompiledMessageVersionedEncoder().write(compiledMessage, bytes, offset);
|
|
557
678
|
}
|
|
558
|
-
const { accountIndices, data, ...rest } = value;
|
|
559
|
-
return {
|
|
560
|
-
...rest,
|
|
561
|
-
...accountIndices.length ? { accountIndices } : null,
|
|
562
|
-
...data.byteLength ? { data } : null
|
|
563
|
-
};
|
|
564
679
|
}
|
|
565
|
-
);
|
|
680
|
+
});
|
|
566
681
|
}
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
);
|
|
682
|
+
function getCompiledMessageDecoder() {
|
|
683
|
+
return mapDecoder(getStructDecoder(getPreludeStructDecoderTuple()), ({ addressTableLookups, ...restOfMessage }) => {
|
|
684
|
+
if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
|
|
685
|
+
return restOfMessage;
|
|
686
|
+
}
|
|
687
|
+
return { ...restOfMessage, addressTableLookups };
|
|
688
|
+
});
|
|
574
689
|
}
|
|
575
|
-
function
|
|
576
|
-
return ()
|
|
577
|
-
throw getError("decoder", name);
|
|
578
|
-
};
|
|
690
|
+
function getCompiledMessageCodec() {
|
|
691
|
+
return combineCodec(getCompiledMessageEncoder(), getCompiledMessageDecoder());
|
|
579
692
|
}
|
|
580
693
|
|
|
581
|
-
// src/
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
if ((firstByte & VERSION_FLAG_MASK) === 0) {
|
|
591
|
-
return ["legacy", offset];
|
|
694
|
+
// src/compile-transaction.ts
|
|
695
|
+
function getCompiledTransaction(transaction) {
|
|
696
|
+
const compiledMessage = compileMessage(transaction);
|
|
697
|
+
let signatures;
|
|
698
|
+
if ("signatures" in transaction) {
|
|
699
|
+
signatures = [];
|
|
700
|
+
for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
|
|
701
|
+
signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
|
|
702
|
+
}
|
|
592
703
|
} else {
|
|
593
|
-
|
|
594
|
-
return [version, offset + 1];
|
|
704
|
+
signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
|
|
595
705
|
}
|
|
706
|
+
return {
|
|
707
|
+
compiledMessage,
|
|
708
|
+
signatures
|
|
709
|
+
};
|
|
596
710
|
}
|
|
597
|
-
function
|
|
598
|
-
|
|
599
|
-
|
|
711
|
+
function getAccountMetas(message) {
|
|
712
|
+
const { header } = message;
|
|
713
|
+
const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
|
|
714
|
+
const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
|
|
715
|
+
const accountMetas = [];
|
|
716
|
+
let accountIndex = 0;
|
|
717
|
+
for (let i = 0; i < numWritableSignerAccounts; i++) {
|
|
718
|
+
accountMetas.push({
|
|
719
|
+
address: message.staticAccounts[accountIndex],
|
|
720
|
+
role: AccountRole.WRITABLE_SIGNER
|
|
721
|
+
});
|
|
722
|
+
accountIndex++;
|
|
600
723
|
}
|
|
601
|
-
|
|
602
|
-
|
|
724
|
+
for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
|
|
725
|
+
accountMetas.push({
|
|
726
|
+
address: message.staticAccounts[accountIndex],
|
|
727
|
+
role: AccountRole.READONLY_SIGNER
|
|
728
|
+
});
|
|
729
|
+
accountIndex++;
|
|
730
|
+
}
|
|
731
|
+
for (let i = 0; i < numWritableNonSignerAccounts; i++) {
|
|
732
|
+
accountMetas.push({
|
|
733
|
+
address: message.staticAccounts[accountIndex],
|
|
734
|
+
role: AccountRole.WRITABLE
|
|
735
|
+
});
|
|
736
|
+
accountIndex++;
|
|
603
737
|
}
|
|
604
|
-
|
|
738
|
+
for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
|
|
739
|
+
accountMetas.push({
|
|
740
|
+
address: message.staticAccounts[accountIndex],
|
|
741
|
+
role: AccountRole.READONLY
|
|
742
|
+
});
|
|
743
|
+
accountIndex++;
|
|
744
|
+
}
|
|
745
|
+
return accountMetas;
|
|
605
746
|
}
|
|
606
|
-
function
|
|
747
|
+
function convertInstruction(instruction, accountMetas) {
|
|
748
|
+
const programAddress = accountMetas[instruction.programAddressIndex]?.address;
|
|
749
|
+
if (!programAddress) {
|
|
750
|
+
throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
|
|
751
|
+
}
|
|
752
|
+
const accounts = instruction.accountIndices?.map((accountIndex) => accountMetas[accountIndex]);
|
|
753
|
+
const { data } = instruction;
|
|
607
754
|
return {
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
755
|
+
programAddress,
|
|
756
|
+
...accounts && accounts.length ? { accounts } : {},
|
|
757
|
+
...data && data.length ? { data } : {}
|
|
611
758
|
};
|
|
612
759
|
}
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
};
|
|
620
|
-
function serialize2(compiledMessage) {
|
|
621
|
-
if (compiledMessage.version === "legacy") {
|
|
622
|
-
return struct(getPreludeStructSerializerTuple()).serialize(compiledMessage);
|
|
760
|
+
function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
|
|
761
|
+
if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
|
|
762
|
+
return {
|
|
763
|
+
blockhash: messageLifetimeToken,
|
|
764
|
+
lastValidBlockHeight: lastValidBlockHeight ?? 2n ** 64n - 1n
|
|
765
|
+
// U64 MAX
|
|
766
|
+
};
|
|
623
767
|
} else {
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
return {
|
|
634
|
-
...value,
|
|
635
|
-
addressTableLookups: value.addressTableLookups ?? []
|
|
636
|
-
};
|
|
637
|
-
}
|
|
638
|
-
).serialize(compiledMessage);
|
|
768
|
+
const nonceAccountAddress = firstInstruction.accounts[0].address;
|
|
769
|
+
assertIsAddress(nonceAccountAddress);
|
|
770
|
+
const nonceAuthorityAddress = firstInstruction.accounts[2].address;
|
|
771
|
+
assertIsAddress(nonceAuthorityAddress);
|
|
772
|
+
return {
|
|
773
|
+
nonce: messageLifetimeToken,
|
|
774
|
+
nonceAccountAddress,
|
|
775
|
+
nonceAuthorityAddress
|
|
776
|
+
};
|
|
639
777
|
}
|
|
640
778
|
}
|
|
641
|
-
function
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
]
|
|
779
|
+
function convertSignatures(compiledTransaction) {
|
|
780
|
+
const {
|
|
781
|
+
compiledMessage: { staticAccounts },
|
|
782
|
+
signatures
|
|
783
|
+
} = compiledTransaction;
|
|
784
|
+
return signatures.reduce((acc, sig, index) => {
|
|
785
|
+
const allZeros = sig.every((byte) => byte === 0);
|
|
786
|
+
if (allZeros)
|
|
787
|
+
return acc;
|
|
788
|
+
const address = staticAccounts[index];
|
|
789
|
+
return { ...acc, [address]: sig };
|
|
790
|
+
}, {});
|
|
791
|
+
}
|
|
792
|
+
function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
|
|
793
|
+
const { compiledMessage } = compiledTransaction;
|
|
794
|
+
if ("addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups.length > 0) {
|
|
795
|
+
throw new Error("Cannot convert transaction with addressTableLookups");
|
|
796
|
+
}
|
|
797
|
+
const feePayer = compiledMessage.staticAccounts[0];
|
|
798
|
+
if (!feePayer)
|
|
799
|
+
throw new Error("No fee payer set in CompiledTransaction");
|
|
800
|
+
const accountMetas = getAccountMetas(compiledMessage);
|
|
801
|
+
const instructions = compiledMessage.instructions.map(
|
|
802
|
+
(compiledInstruction) => convertInstruction(compiledInstruction, accountMetas)
|
|
803
|
+
);
|
|
804
|
+
const firstInstruction = instructions[0];
|
|
805
|
+
const lifetimeConstraint = getLifetimeConstraint(
|
|
806
|
+
compiledMessage.lifetimeToken,
|
|
807
|
+
firstInstruction,
|
|
808
|
+
lastValidBlockHeight
|
|
809
|
+
);
|
|
810
|
+
const signatures = convertSignatures(compiledTransaction);
|
|
811
|
+
return pipe(
|
|
812
|
+
createTransaction({ version: compiledMessage.version }),
|
|
813
|
+
(tx) => setTransactionFeePayer(feePayer, tx),
|
|
814
|
+
(tx) => instructions.reduce((acc, instruction) => {
|
|
815
|
+
return appendTransactionInstruction(instruction, acc);
|
|
816
|
+
}, tx),
|
|
817
|
+
(tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
|
|
818
|
+
(tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
|
|
819
|
+
);
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
// src/serializers/transaction.ts
|
|
823
|
+
function getCompiledTransactionEncoder() {
|
|
824
|
+
return getStructEncoder([
|
|
825
|
+
["signatures", getArrayEncoder(getBytesEncoder({ size: 64 }), { size: getShortU16Encoder() })],
|
|
826
|
+
["compiledMessage", getCompiledMessageEncoder()]
|
|
827
|
+
]);
|
|
828
|
+
}
|
|
829
|
+
function getCompiledTransactionDecoder() {
|
|
830
|
+
return getStructDecoder([
|
|
652
831
|
[
|
|
653
|
-
"
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
encoding: base58,
|
|
657
|
-
size: 32
|
|
832
|
+
"signatures",
|
|
833
|
+
getArrayDecoder(getBytesDecoder({ size: 64 }), {
|
|
834
|
+
size: getShortU16Decoder()
|
|
658
835
|
})
|
|
659
836
|
],
|
|
660
|
-
[
|
|
661
|
-
|
|
662
|
-
array(getInstructionCodec(), {
|
|
663
|
-
description: __DEV__ ? "A compact-array of instructions belonging to this transaction" : "",
|
|
664
|
-
size: shortU16()
|
|
665
|
-
})
|
|
666
|
-
]
|
|
667
|
-
];
|
|
668
|
-
}
|
|
669
|
-
function getAddressTableLookupsSerializer() {
|
|
670
|
-
return array(getAddressTableLookupCodec(), {
|
|
671
|
-
...__DEV__ ? { description: "A compact array of address table lookups belonging to this transaction" } : null,
|
|
672
|
-
size: shortU16()
|
|
673
|
-
});
|
|
837
|
+
["compiledMessage", getCompiledMessageDecoder()]
|
|
838
|
+
]);
|
|
674
839
|
}
|
|
675
|
-
function
|
|
676
|
-
return
|
|
677
|
-
...BASE_CONFIG2,
|
|
678
|
-
deserialize: getUnimplementedDecoder("CompiledMessage"),
|
|
679
|
-
serialize: serialize2
|
|
680
|
-
};
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
// src/signatures.ts
|
|
684
|
-
function assertIsTransactionSignature(putativeTransactionSignature) {
|
|
685
|
-
try {
|
|
686
|
-
if (
|
|
687
|
-
// Lowest value (64 bytes of zeroes)
|
|
688
|
-
putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
|
|
689
|
-
putativeTransactionSignature.length > 88
|
|
690
|
-
) {
|
|
691
|
-
throw new Error("Expected input string to decode to a byte array of length 64.");
|
|
692
|
-
}
|
|
693
|
-
const bytes3 = base58.serialize(putativeTransactionSignature);
|
|
694
|
-
const numBytes = bytes3.byteLength;
|
|
695
|
-
if (numBytes !== 64) {
|
|
696
|
-
throw new Error(`Expected input string to decode to a byte array of length 64. Actual length: ${numBytes}`);
|
|
697
|
-
}
|
|
698
|
-
} catch (e) {
|
|
699
|
-
throw new Error(`\`${putativeTransactionSignature}\` is not a transaction signature`, {
|
|
700
|
-
cause: e
|
|
701
|
-
});
|
|
702
|
-
}
|
|
840
|
+
function getTransactionEncoder() {
|
|
841
|
+
return mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
|
|
703
842
|
}
|
|
704
|
-
function
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
) {
|
|
710
|
-
return false;
|
|
711
|
-
}
|
|
712
|
-
const bytes3 = base58.serialize(putativeTransactionSignature);
|
|
713
|
-
const numBytes = bytes3.byteLength;
|
|
714
|
-
if (numBytes !== 64) {
|
|
715
|
-
return false;
|
|
716
|
-
}
|
|
717
|
-
return true;
|
|
843
|
+
function getTransactionDecoder(lastValidBlockHeight) {
|
|
844
|
+
return mapDecoder(
|
|
845
|
+
getCompiledTransactionDecoder(),
|
|
846
|
+
(compiledTransaction) => decompileTransaction(compiledTransaction, lastValidBlockHeight)
|
|
847
|
+
);
|
|
718
848
|
}
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
const signature = await signBytes(secretKey, wireMessageBytes);
|
|
722
|
-
return signature;
|
|
849
|
+
function getTransactionCodec(lastValidBlockHeight) {
|
|
850
|
+
return combineCodec(getTransactionEncoder(), getTransactionDecoder(lastValidBlockHeight));
|
|
723
851
|
}
|
|
852
|
+
var base58Decoder;
|
|
724
853
|
function getSignatureFromTransaction(transaction) {
|
|
725
|
-
|
|
726
|
-
|
|
854
|
+
if (!base58Decoder)
|
|
855
|
+
base58Decoder = getBase58Decoder();
|
|
856
|
+
const signatureBytes = transaction.signatures[transaction.feePayer];
|
|
857
|
+
if (!signatureBytes) {
|
|
727
858
|
throw new Error(
|
|
728
859
|
"Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
|
|
729
860
|
);
|
|
730
861
|
}
|
|
731
|
-
|
|
862
|
+
const transactionSignature = base58Decoder.decode(signatureBytes);
|
|
863
|
+
return transactionSignature;
|
|
732
864
|
}
|
|
733
|
-
async function
|
|
865
|
+
async function partiallySignTransaction(keyPairs, transaction) {
|
|
734
866
|
const compiledMessage = compileMessage(transaction);
|
|
735
867
|
const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
|
|
868
|
+
const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
|
|
736
869
|
const publicKeySignaturePairs = await Promise.all(
|
|
737
870
|
keyPairs.map(
|
|
738
|
-
(keyPair) => Promise.all([
|
|
739
|
-
getAddressFromPublicKey(keyPair.publicKey),
|
|
740
|
-
getCompiledMessageSignature(compiledMessage, keyPair.privateKey)
|
|
741
|
-
])
|
|
871
|
+
(keyPair) => Promise.all([getAddressFromPublicKey(keyPair.publicKey), signBytes(keyPair.privateKey, wireMessageBytes)])
|
|
742
872
|
)
|
|
743
873
|
);
|
|
744
874
|
for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
|
|
@@ -751,64 +881,26 @@ async function signTransaction(keyPairs, transaction) {
|
|
|
751
881
|
Object.freeze(out);
|
|
752
882
|
return out;
|
|
753
883
|
}
|
|
754
|
-
function
|
|
755
|
-
|
|
756
|
-
|
|
884
|
+
async function signTransaction(keyPairs, transaction) {
|
|
885
|
+
const out = await partiallySignTransaction(keyPairs, transaction);
|
|
886
|
+
assertTransactionIsFullySigned(out);
|
|
887
|
+
Object.freeze(out);
|
|
888
|
+
return out;
|
|
757
889
|
}
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
signatures = [];
|
|
765
|
-
for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
|
|
766
|
-
signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
|
|
890
|
+
function assertTransactionIsFullySigned(transaction) {
|
|
891
|
+
const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => i.accounts?.filter((a) => isSignerRole(a.role)) ?? []).map((a) => a.address);
|
|
892
|
+
const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
|
|
893
|
+
requiredSigners.forEach((address) => {
|
|
894
|
+
if (!transaction.signatures[address]) {
|
|
895
|
+
throw new Error(`Transaction is missing signature for address \`${address}\``);
|
|
767
896
|
}
|
|
768
|
-
}
|
|
769
|
-
signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
|
|
770
|
-
}
|
|
771
|
-
return {
|
|
772
|
-
compiledMessage,
|
|
773
|
-
signatures
|
|
774
|
-
};
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
// src/serializers/transaction.ts
|
|
778
|
-
var BASE_CONFIG3 = {
|
|
779
|
-
description: __DEV__ ? "The wire format of a Solana transaction" : "",
|
|
780
|
-
fixedSize: null,
|
|
781
|
-
maxSize: null
|
|
782
|
-
};
|
|
783
|
-
function serialize3(transaction) {
|
|
784
|
-
const compiledTransaction = getCompiledTransaction(transaction);
|
|
785
|
-
return struct([
|
|
786
|
-
[
|
|
787
|
-
"signatures",
|
|
788
|
-
array(bytes({ size: 64 }), {
|
|
789
|
-
...__DEV__ ? { description: "A compact array of 64-byte, base-64 encoded Ed25519 signatures" } : null,
|
|
790
|
-
size: shortU16()
|
|
791
|
-
})
|
|
792
|
-
],
|
|
793
|
-
["compiledMessage", getCompiledMessageEncoder()]
|
|
794
|
-
]).serialize(compiledTransaction);
|
|
795
|
-
}
|
|
796
|
-
function getTransactionEncoder() {
|
|
797
|
-
return {
|
|
798
|
-
...BASE_CONFIG3,
|
|
799
|
-
deserialize: getUnimplementedDecoder("CompiledMessage"),
|
|
800
|
-
serialize: serialize3
|
|
801
|
-
};
|
|
897
|
+
});
|
|
802
898
|
}
|
|
803
|
-
|
|
804
|
-
// src/wire-transaction.ts
|
|
805
899
|
function getBase64EncodedWireTransaction(transaction) {
|
|
806
|
-
const wireTransactionBytes = getTransactionEncoder().
|
|
807
|
-
|
|
808
|
-
return btoa(String.fromCharCode(...wireTransactionBytes));
|
|
809
|
-
}
|
|
900
|
+
const wireTransactionBytes = getTransactionEncoder().encode(transaction);
|
|
901
|
+
return getBase64Decoder().decode(wireTransactionBytes);
|
|
810
902
|
}
|
|
811
903
|
|
|
812
|
-
export { appendTransactionInstruction, assertIsBlockhash, assertIsDurableNonceTransaction,
|
|
904
|
+
export { appendTransactionInstruction, assertIsBlockhash, assertIsDurableNonceTransaction, assertIsTransactionWithBlockhashLifetime, assertTransactionIsFullySigned, compileMessage, createTransaction, getBase64EncodedWireTransaction, getCompiledMessageCodec, getCompiledMessageDecoder, getCompiledMessageEncoder, getSignatureFromTransaction, getTransactionCodec, getTransactionDecoder, getTransactionEncoder, isAdvanceNonceAccountInstruction, partiallySignTransaction, prependTransactionInstruction, setTransactionFeePayer, setTransactionLifetimeUsingBlockhash, setTransactionLifetimeUsingDurableNonce, signTransaction };
|
|
813
905
|
//# sourceMappingURL=out.js.map
|
|
814
906
|
//# sourceMappingURL=index.native.js.map
|