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