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