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

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