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