@solana/transactions 2.0.0-experimental.0099b2a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +334 -0
- package/dist/index.browser.cjs +1098 -0
- package/dist/index.browser.cjs.map +1 -0
- package/dist/index.browser.js +1080 -0
- package/dist/index.browser.js.map +1 -0
- package/dist/index.development.js +1778 -0
- package/dist/index.development.js.map +1 -0
- package/dist/index.native.js +1080 -0
- package/dist/index.native.js.map +1 -0
- package/dist/index.node.cjs +1098 -0
- package/dist/index.node.cjs.map +1 -0
- package/dist/index.node.js +1080 -0
- package/dist/index.node.js.map +1 -0
- package/dist/index.production.min.js +29 -0
- package/dist/types/accounts.d.ts +28 -0
- package/dist/types/blockhash.d.ts +18 -0
- package/dist/types/compile-address-table-lookups.d.ts +10 -0
- package/dist/types/compile-header.d.ts +9 -0
- package/dist/types/compile-instructions.d.ts +10 -0
- package/dist/types/compile-lifetime-token.d.ts +3 -0
- package/dist/types/compile-static-accounts.d.ts +4 -0
- package/dist/types/compile-transaction.d.ts +11 -0
- package/dist/types/create-transaction.d.ts +9 -0
- package/dist/types/decompile-transaction.d.ts +7 -0
- package/dist/types/durable-nonce.d.ts +35 -0
- package/dist/types/fee-payer.d.ts +9 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/instructions.d.ts +5 -0
- package/dist/types/message.d.ts +30 -0
- package/dist/types/serializers/address-table-lookup.d.ts +8 -0
- package/dist/types/serializers/header.d.ts +8 -0
- package/dist/types/serializers/index.d.ts +2 -0
- package/dist/types/serializers/instruction.d.ts +8 -0
- package/dist/types/serializers/message.d.ts +6 -0
- package/dist/types/serializers/transaction-version.d.ts +6 -0
- package/dist/types/serializers/transaction.d.ts +9 -0
- package/dist/types/signatures.d.ts +20 -0
- package/dist/types/types.d.ts +26 -0
- package/dist/types/unsigned-transaction.d.ts +4 -0
- package/dist/types/wire-transaction.d.ts +6 -0
- package/package.json +103 -0
|
@@ -0,0 +1,1098 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var codecsStrings = require('@solana/codecs-strings');
|
|
4
|
+
var codecsCore = require('@solana/codecs-core');
|
|
5
|
+
var codecsDataStructures = require('@solana/codecs-data-structures');
|
|
6
|
+
var codecsNumbers = require('@solana/codecs-numbers');
|
|
7
|
+
var addresses = require('@solana/addresses');
|
|
8
|
+
var functional = require('@solana/functional');
|
|
9
|
+
var keys = require('@solana/keys');
|
|
10
|
+
|
|
11
|
+
// ../build-scripts/env-shim.ts
|
|
12
|
+
var __DEV__ = /* @__PURE__ */ (() => process["env"].NODE_ENV === "development")();
|
|
13
|
+
|
|
14
|
+
// src/unsigned-transaction.ts
|
|
15
|
+
function getUnsignedTransaction(transaction) {
|
|
16
|
+
if ("signatures" in transaction) {
|
|
17
|
+
const {
|
|
18
|
+
signatures: _,
|
|
19
|
+
// eslint-disable-line @typescript-eslint/no-unused-vars
|
|
20
|
+
...unsignedTransaction
|
|
21
|
+
} = transaction;
|
|
22
|
+
return unsignedTransaction;
|
|
23
|
+
} else {
|
|
24
|
+
return transaction;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// src/blockhash.ts
|
|
29
|
+
var base58Encoder;
|
|
30
|
+
function assertIsBlockhash(putativeBlockhash) {
|
|
31
|
+
if (!base58Encoder)
|
|
32
|
+
base58Encoder = codecsStrings.getBase58Encoder();
|
|
33
|
+
try {
|
|
34
|
+
if (
|
|
35
|
+
// Lowest value (32 bytes of zeroes)
|
|
36
|
+
putativeBlockhash.length < 32 || // Highest value (32 bytes of 255)
|
|
37
|
+
putativeBlockhash.length > 44
|
|
38
|
+
) {
|
|
39
|
+
throw new Error("Expected input string to decode to a byte array of length 32.");
|
|
40
|
+
}
|
|
41
|
+
const bytes = base58Encoder.encode(putativeBlockhash);
|
|
42
|
+
const numBytes = bytes.byteLength;
|
|
43
|
+
if (numBytes !== 32) {
|
|
44
|
+
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
|
|
45
|
+
}
|
|
46
|
+
} catch (e) {
|
|
47
|
+
throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
|
|
48
|
+
cause: e
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
|
|
53
|
+
if ("lifetimeConstraint" in transaction && transaction.lifetimeConstraint.blockhash === blockhashLifetimeConstraint.blockhash && transaction.lifetimeConstraint.lastValidBlockHeight === blockhashLifetimeConstraint.lastValidBlockHeight) {
|
|
54
|
+
return transaction;
|
|
55
|
+
}
|
|
56
|
+
const out = {
|
|
57
|
+
...getUnsignedTransaction(transaction),
|
|
58
|
+
lifetimeConstraint: blockhashLifetimeConstraint
|
|
59
|
+
};
|
|
60
|
+
Object.freeze(out);
|
|
61
|
+
return out;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// src/create-transaction.ts
|
|
65
|
+
function createTransaction({
|
|
66
|
+
version
|
|
67
|
+
}) {
|
|
68
|
+
const out = {
|
|
69
|
+
instructions: [],
|
|
70
|
+
version
|
|
71
|
+
};
|
|
72
|
+
Object.freeze(out);
|
|
73
|
+
return out;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// ../instructions/dist/index.browser.js
|
|
77
|
+
var AccountRole = /* @__PURE__ */ ((AccountRole2) => {
|
|
78
|
+
AccountRole2[AccountRole2["WRITABLE_SIGNER"] = /* 3 */
|
|
79
|
+
3] = "WRITABLE_SIGNER";
|
|
80
|
+
AccountRole2[AccountRole2["READONLY_SIGNER"] = /* 2 */
|
|
81
|
+
2] = "READONLY_SIGNER";
|
|
82
|
+
AccountRole2[AccountRole2["WRITABLE"] = /* 1 */
|
|
83
|
+
1] = "WRITABLE";
|
|
84
|
+
AccountRole2[AccountRole2["READONLY"] = /* 0 */
|
|
85
|
+
0] = "READONLY";
|
|
86
|
+
return AccountRole2;
|
|
87
|
+
})(AccountRole || {});
|
|
88
|
+
var IS_WRITABLE_BITMASK = 1;
|
|
89
|
+
function isSignerRole(role) {
|
|
90
|
+
return role >= 2;
|
|
91
|
+
}
|
|
92
|
+
function isWritableRole(role) {
|
|
93
|
+
return (role & IS_WRITABLE_BITMASK) !== 0;
|
|
94
|
+
}
|
|
95
|
+
function mergeRoles(roleA, roleB) {
|
|
96
|
+
return roleA | roleB;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// src/durable-nonce.ts
|
|
100
|
+
var RECENT_BLOCKHASHES_SYSVAR_ADDRESS = "SysvarRecentB1ockHashes11111111111111111111";
|
|
101
|
+
var SYSTEM_PROGRAM_ADDRESS = "11111111111111111111111111111111";
|
|
102
|
+
function assertIsDurableNonceTransaction(transaction) {
|
|
103
|
+
if (!isDurableNonceTransaction(transaction)) {
|
|
104
|
+
throw new Error("Transaction is not a durable nonce transaction");
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
function createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress) {
|
|
108
|
+
return {
|
|
109
|
+
accounts: [
|
|
110
|
+
{ address: nonceAccountAddress, role: AccountRole.WRITABLE },
|
|
111
|
+
{
|
|
112
|
+
address: RECENT_BLOCKHASHES_SYSVAR_ADDRESS,
|
|
113
|
+
role: AccountRole.READONLY
|
|
114
|
+
},
|
|
115
|
+
{ address: nonceAuthorityAddress, role: AccountRole.READONLY_SIGNER }
|
|
116
|
+
],
|
|
117
|
+
data: new Uint8Array([4, 0, 0, 0]),
|
|
118
|
+
programAddress: SYSTEM_PROGRAM_ADDRESS
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
function isAdvanceNonceAccountInstruction(instruction) {
|
|
122
|
+
return instruction.programAddress === SYSTEM_PROGRAM_ADDRESS && // Test for `AdvanceNonceAccount` instruction data
|
|
123
|
+
instruction.data != null && isAdvanceNonceAccountInstructionData(instruction.data) && // Test for exactly 3 accounts
|
|
124
|
+
instruction.accounts?.length === 3 && // First account is nonce account address
|
|
125
|
+
instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
|
|
126
|
+
instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
|
|
127
|
+
instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
|
|
128
|
+
}
|
|
129
|
+
function isAdvanceNonceAccountInstructionData(data) {
|
|
130
|
+
return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
|
|
131
|
+
}
|
|
132
|
+
function isDurableNonceTransaction(transaction) {
|
|
133
|
+
return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
|
|
134
|
+
}
|
|
135
|
+
function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
|
|
136
|
+
return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
|
|
137
|
+
}
|
|
138
|
+
function setTransactionLifetimeUsingDurableNonce({
|
|
139
|
+
nonce,
|
|
140
|
+
nonceAccountAddress,
|
|
141
|
+
nonceAuthorityAddress
|
|
142
|
+
}, transaction) {
|
|
143
|
+
let newInstructions;
|
|
144
|
+
const firstInstruction = transaction.instructions[0];
|
|
145
|
+
if (firstInstruction && isAdvanceNonceAccountInstruction(firstInstruction)) {
|
|
146
|
+
if (isAdvanceNonceAccountInstructionForNonce(firstInstruction, nonceAccountAddress, nonceAuthorityAddress)) {
|
|
147
|
+
if (isDurableNonceTransaction(transaction) && transaction.lifetimeConstraint.nonce === nonce) {
|
|
148
|
+
return transaction;
|
|
149
|
+
} else {
|
|
150
|
+
newInstructions = [firstInstruction, ...transaction.instructions.slice(1)];
|
|
151
|
+
}
|
|
152
|
+
} else {
|
|
153
|
+
newInstructions = [
|
|
154
|
+
createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
|
|
155
|
+
...transaction.instructions.slice(1)
|
|
156
|
+
];
|
|
157
|
+
}
|
|
158
|
+
} else {
|
|
159
|
+
newInstructions = [
|
|
160
|
+
createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
|
|
161
|
+
...transaction.instructions
|
|
162
|
+
];
|
|
163
|
+
}
|
|
164
|
+
const out = {
|
|
165
|
+
...getUnsignedTransaction(transaction),
|
|
166
|
+
instructions: newInstructions,
|
|
167
|
+
lifetimeConstraint: {
|
|
168
|
+
nonce
|
|
169
|
+
}
|
|
170
|
+
};
|
|
171
|
+
Object.freeze(out);
|
|
172
|
+
return out;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// src/fee-payer.ts
|
|
176
|
+
function setTransactionFeePayer(feePayer, transaction) {
|
|
177
|
+
if ("feePayer" in transaction && feePayer === transaction.feePayer) {
|
|
178
|
+
return transaction;
|
|
179
|
+
}
|
|
180
|
+
const out = {
|
|
181
|
+
...getUnsignedTransaction(transaction),
|
|
182
|
+
feePayer
|
|
183
|
+
};
|
|
184
|
+
Object.freeze(out);
|
|
185
|
+
return out;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
// src/instructions.ts
|
|
189
|
+
function appendTransactionInstruction(instruction, transaction) {
|
|
190
|
+
const out = {
|
|
191
|
+
...getUnsignedTransaction(transaction),
|
|
192
|
+
instructions: [...transaction.instructions, instruction]
|
|
193
|
+
};
|
|
194
|
+
Object.freeze(out);
|
|
195
|
+
return out;
|
|
196
|
+
}
|
|
197
|
+
function prependTransactionInstruction(instruction, transaction) {
|
|
198
|
+
const out = {
|
|
199
|
+
...getUnsignedTransaction(transaction),
|
|
200
|
+
instructions: [instruction, ...transaction.instructions]
|
|
201
|
+
};
|
|
202
|
+
Object.freeze(out);
|
|
203
|
+
return out;
|
|
204
|
+
}
|
|
205
|
+
function upsert(addressMap, address, update) {
|
|
206
|
+
addressMap[address] = update(addressMap[address] ?? { role: AccountRole.READONLY });
|
|
207
|
+
}
|
|
208
|
+
var TYPE = Symbol("AddressMapTypeProperty");
|
|
209
|
+
function getAddressMapFromInstructions(feePayer, instructions) {
|
|
210
|
+
const addressMap = {
|
|
211
|
+
[feePayer]: { [TYPE]: 0 /* FEE_PAYER */, role: AccountRole.WRITABLE_SIGNER }
|
|
212
|
+
};
|
|
213
|
+
const addressesOfInvokedPrograms = /* @__PURE__ */ new Set();
|
|
214
|
+
for (const instruction of instructions) {
|
|
215
|
+
upsert(addressMap, instruction.programAddress, (entry) => {
|
|
216
|
+
addressesOfInvokedPrograms.add(instruction.programAddress);
|
|
217
|
+
if (TYPE in entry) {
|
|
218
|
+
if (isWritableRole(entry.role)) {
|
|
219
|
+
switch (entry[TYPE]) {
|
|
220
|
+
case 0 /* FEE_PAYER */:
|
|
221
|
+
throw new Error(
|
|
222
|
+
`This transaction includes an address (\`${instruction.programAddress}\`) which is both invoked and set as the fee payer. Program addresses may not pay fees.`
|
|
223
|
+
);
|
|
224
|
+
default:
|
|
225
|
+
throw new Error(
|
|
226
|
+
`This transaction includes an address (\`${instruction.programAddress}\`) which is both invoked and marked writable. Program addresses may not be writable.`
|
|
227
|
+
);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
if (entry[TYPE] === 2 /* STATIC */) {
|
|
231
|
+
return entry;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
return { [TYPE]: 2 /* STATIC */, role: AccountRole.READONLY };
|
|
235
|
+
});
|
|
236
|
+
let addressComparator;
|
|
237
|
+
if (!instruction.accounts) {
|
|
238
|
+
continue;
|
|
239
|
+
}
|
|
240
|
+
for (const account of instruction.accounts) {
|
|
241
|
+
upsert(addressMap, account.address, (entry) => {
|
|
242
|
+
const {
|
|
243
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
244
|
+
address: _,
|
|
245
|
+
...accountMeta
|
|
246
|
+
} = account;
|
|
247
|
+
if (TYPE in entry) {
|
|
248
|
+
switch (entry[TYPE]) {
|
|
249
|
+
case 0 /* FEE_PAYER */:
|
|
250
|
+
return entry;
|
|
251
|
+
case 1 /* LOOKUP_TABLE */: {
|
|
252
|
+
const nextRole = mergeRoles(entry.role, accountMeta.role);
|
|
253
|
+
if ("lookupTableAddress" in accountMeta) {
|
|
254
|
+
const shouldReplaceEntry = (
|
|
255
|
+
// Consider using the new LOOKUP_TABLE if its address is different...
|
|
256
|
+
entry.lookupTableAddress !== accountMeta.lookupTableAddress && // ...and sorts before the existing one.
|
|
257
|
+
(addressComparator || (addressComparator = addresses.getAddressComparator()))(
|
|
258
|
+
accountMeta.lookupTableAddress,
|
|
259
|
+
entry.lookupTableAddress
|
|
260
|
+
) < 0
|
|
261
|
+
);
|
|
262
|
+
if (shouldReplaceEntry) {
|
|
263
|
+
return {
|
|
264
|
+
[TYPE]: 1 /* LOOKUP_TABLE */,
|
|
265
|
+
...accountMeta,
|
|
266
|
+
role: nextRole
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
} else if (isSignerRole(accountMeta.role)) {
|
|
270
|
+
return {
|
|
271
|
+
[TYPE]: 2 /* STATIC */,
|
|
272
|
+
role: nextRole
|
|
273
|
+
};
|
|
274
|
+
}
|
|
275
|
+
if (entry.role !== nextRole) {
|
|
276
|
+
return {
|
|
277
|
+
...entry,
|
|
278
|
+
role: nextRole
|
|
279
|
+
};
|
|
280
|
+
} else {
|
|
281
|
+
return entry;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
case 2 /* STATIC */: {
|
|
285
|
+
const nextRole = mergeRoles(entry.role, accountMeta.role);
|
|
286
|
+
if (
|
|
287
|
+
// Check to see if this address represents a program that is invoked
|
|
288
|
+
// in this transaction.
|
|
289
|
+
addressesOfInvokedPrograms.has(account.address)
|
|
290
|
+
) {
|
|
291
|
+
if (isWritableRole(accountMeta.role)) {
|
|
292
|
+
throw new Error(
|
|
293
|
+
`This transaction includes an address (\`${account.address}\`) which is both invoked and marked writable. Program addresses may not be writable.`
|
|
294
|
+
);
|
|
295
|
+
}
|
|
296
|
+
if (entry.role !== nextRole) {
|
|
297
|
+
return {
|
|
298
|
+
...entry,
|
|
299
|
+
role: nextRole
|
|
300
|
+
};
|
|
301
|
+
} else {
|
|
302
|
+
return entry;
|
|
303
|
+
}
|
|
304
|
+
} else if ("lookupTableAddress" in accountMeta && // Static accounts can be 'upgraded' to lookup table accounts as
|
|
305
|
+
// long as they are not require to sign the transaction.
|
|
306
|
+
!isSignerRole(entry.role)) {
|
|
307
|
+
return {
|
|
308
|
+
...accountMeta,
|
|
309
|
+
[TYPE]: 1 /* LOOKUP_TABLE */,
|
|
310
|
+
role: nextRole
|
|
311
|
+
};
|
|
312
|
+
} else {
|
|
313
|
+
if (entry.role !== nextRole) {
|
|
314
|
+
return {
|
|
315
|
+
...entry,
|
|
316
|
+
role: nextRole
|
|
317
|
+
};
|
|
318
|
+
} else {
|
|
319
|
+
return entry;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
if ("lookupTableAddress" in accountMeta) {
|
|
326
|
+
return {
|
|
327
|
+
...accountMeta,
|
|
328
|
+
[TYPE]: 1 /* LOOKUP_TABLE */
|
|
329
|
+
};
|
|
330
|
+
} else {
|
|
331
|
+
return {
|
|
332
|
+
...accountMeta,
|
|
333
|
+
[TYPE]: 2 /* STATIC */
|
|
334
|
+
};
|
|
335
|
+
}
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
return addressMap;
|
|
340
|
+
}
|
|
341
|
+
function getOrderedAccountsFromAddressMap(addressMap) {
|
|
342
|
+
let addressComparator;
|
|
343
|
+
const orderedAccounts = Object.entries(addressMap).sort(([leftAddress, leftEntry], [rightAddress, rightEntry]) => {
|
|
344
|
+
if (leftEntry[TYPE] !== rightEntry[TYPE]) {
|
|
345
|
+
if (leftEntry[TYPE] === 0 /* FEE_PAYER */) {
|
|
346
|
+
return -1;
|
|
347
|
+
} else if (rightEntry[TYPE] === 0 /* FEE_PAYER */) {
|
|
348
|
+
return 1;
|
|
349
|
+
} else if (leftEntry[TYPE] === 2 /* STATIC */) {
|
|
350
|
+
return -1;
|
|
351
|
+
} else if (rightEntry[TYPE] === 2 /* STATIC */) {
|
|
352
|
+
return 1;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
const leftIsSigner = isSignerRole(leftEntry.role);
|
|
356
|
+
if (leftIsSigner !== isSignerRole(rightEntry.role)) {
|
|
357
|
+
return leftIsSigner ? -1 : 1;
|
|
358
|
+
}
|
|
359
|
+
const leftIsWritable = isWritableRole(leftEntry.role);
|
|
360
|
+
if (leftIsWritable !== isWritableRole(rightEntry.role)) {
|
|
361
|
+
return leftIsWritable ? -1 : 1;
|
|
362
|
+
}
|
|
363
|
+
addressComparator || (addressComparator = addresses.getAddressComparator());
|
|
364
|
+
if (leftEntry[TYPE] === 1 /* LOOKUP_TABLE */ && rightEntry[TYPE] === 1 /* LOOKUP_TABLE */ && leftEntry.lookupTableAddress !== rightEntry.lookupTableAddress) {
|
|
365
|
+
return addressComparator(leftEntry.lookupTableAddress, rightEntry.lookupTableAddress);
|
|
366
|
+
} else {
|
|
367
|
+
return addressComparator(leftAddress, rightAddress);
|
|
368
|
+
}
|
|
369
|
+
}).map(([address, addressMeta]) => ({
|
|
370
|
+
address,
|
|
371
|
+
...addressMeta
|
|
372
|
+
}));
|
|
373
|
+
return orderedAccounts;
|
|
374
|
+
}
|
|
375
|
+
function getCompiledAddressTableLookups(orderedAccounts) {
|
|
376
|
+
var _a;
|
|
377
|
+
const index = {};
|
|
378
|
+
for (const account of orderedAccounts) {
|
|
379
|
+
if (!("lookupTableAddress" in account)) {
|
|
380
|
+
continue;
|
|
381
|
+
}
|
|
382
|
+
const entry = index[_a = account.lookupTableAddress] || (index[_a] = {
|
|
383
|
+
readableIndices: [],
|
|
384
|
+
writableIndices: []
|
|
385
|
+
});
|
|
386
|
+
if (account.role === AccountRole.WRITABLE) {
|
|
387
|
+
entry.writableIndices.push(account.addressIndex);
|
|
388
|
+
} else {
|
|
389
|
+
entry.readableIndices.push(account.addressIndex);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
return Object.keys(index).sort(addresses.getAddressComparator()).map((lookupTableAddress) => ({
|
|
393
|
+
lookupTableAddress,
|
|
394
|
+
...index[lookupTableAddress]
|
|
395
|
+
}));
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
// src/compile-header.ts
|
|
399
|
+
function getCompiledMessageHeader(orderedAccounts) {
|
|
400
|
+
let numReadonlyNonSignerAccounts = 0;
|
|
401
|
+
let numReadonlySignerAccounts = 0;
|
|
402
|
+
let numSignerAccounts = 0;
|
|
403
|
+
for (const account of orderedAccounts) {
|
|
404
|
+
if ("lookupTableAddress" in account) {
|
|
405
|
+
break;
|
|
406
|
+
}
|
|
407
|
+
const accountIsWritable = isWritableRole(account.role);
|
|
408
|
+
if (isSignerRole(account.role)) {
|
|
409
|
+
numSignerAccounts++;
|
|
410
|
+
if (!accountIsWritable) {
|
|
411
|
+
numReadonlySignerAccounts++;
|
|
412
|
+
}
|
|
413
|
+
} else if (!accountIsWritable) {
|
|
414
|
+
numReadonlyNonSignerAccounts++;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
return {
|
|
418
|
+
numReadonlyNonSignerAccounts,
|
|
419
|
+
numReadonlySignerAccounts,
|
|
420
|
+
numSignerAccounts
|
|
421
|
+
};
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// src/compile-instructions.ts
|
|
425
|
+
function getAccountIndex(orderedAccounts) {
|
|
426
|
+
const out = {};
|
|
427
|
+
for (const [index, account] of orderedAccounts.entries()) {
|
|
428
|
+
out[account.address] = index;
|
|
429
|
+
}
|
|
430
|
+
return out;
|
|
431
|
+
}
|
|
432
|
+
function getCompiledInstructions(instructions, orderedAccounts) {
|
|
433
|
+
const accountIndex = getAccountIndex(orderedAccounts);
|
|
434
|
+
return instructions.map(({ accounts, data, programAddress }) => {
|
|
435
|
+
return {
|
|
436
|
+
programAddressIndex: accountIndex[programAddress],
|
|
437
|
+
...accounts ? { accountIndices: accounts.map(({ address }) => accountIndex[address]) } : null,
|
|
438
|
+
...data ? { data } : null
|
|
439
|
+
};
|
|
440
|
+
});
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
// src/compile-lifetime-token.ts
|
|
444
|
+
function getCompiledLifetimeToken(lifetimeConstraint) {
|
|
445
|
+
if ("nonce" in lifetimeConstraint) {
|
|
446
|
+
return lifetimeConstraint.nonce;
|
|
447
|
+
}
|
|
448
|
+
return lifetimeConstraint.blockhash;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
// src/compile-static-accounts.ts
|
|
452
|
+
function getCompiledStaticAccounts(orderedAccounts) {
|
|
453
|
+
const firstLookupTableAccountIndex = orderedAccounts.findIndex((account) => "lookupTableAddress" in account);
|
|
454
|
+
const orderedStaticAccounts = firstLookupTableAccountIndex === -1 ? orderedAccounts : orderedAccounts.slice(0, firstLookupTableAccountIndex);
|
|
455
|
+
return orderedStaticAccounts.map(({ address }) => address);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
// src/message.ts
|
|
459
|
+
function compileMessage(transaction) {
|
|
460
|
+
const addressMap = getAddressMapFromInstructions(transaction.feePayer, transaction.instructions);
|
|
461
|
+
const orderedAccounts = getOrderedAccountsFromAddressMap(addressMap);
|
|
462
|
+
return {
|
|
463
|
+
...transaction.version !== "legacy" ? { addressTableLookups: getCompiledAddressTableLookups(orderedAccounts) } : null,
|
|
464
|
+
header: getCompiledMessageHeader(orderedAccounts),
|
|
465
|
+
instructions: getCompiledInstructions(transaction.instructions, orderedAccounts),
|
|
466
|
+
lifetimeToken: getCompiledLifetimeToken(transaction.lifetimeConstraint),
|
|
467
|
+
staticAccounts: getCompiledStaticAccounts(orderedAccounts),
|
|
468
|
+
version: transaction.version
|
|
469
|
+
};
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
// src/compile-transaction.ts
|
|
473
|
+
function getCompiledTransaction(transaction) {
|
|
474
|
+
const compiledMessage = compileMessage(transaction);
|
|
475
|
+
let signatures;
|
|
476
|
+
if ("signatures" in transaction) {
|
|
477
|
+
signatures = [];
|
|
478
|
+
for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
|
|
479
|
+
signatures[ii] = transaction.signatures[compiledMessage.staticAccounts[ii]] ?? new Uint8Array(Array(64).fill(0));
|
|
480
|
+
}
|
|
481
|
+
} else {
|
|
482
|
+
signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
|
|
483
|
+
}
|
|
484
|
+
return {
|
|
485
|
+
compiledMessage,
|
|
486
|
+
signatures
|
|
487
|
+
};
|
|
488
|
+
}
|
|
489
|
+
function getAccountMetas(message) {
|
|
490
|
+
const { header } = message;
|
|
491
|
+
const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
|
|
492
|
+
const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
|
|
493
|
+
const accountMetas = [];
|
|
494
|
+
let accountIndex = 0;
|
|
495
|
+
for (let i = 0; i < numWritableSignerAccounts; i++) {
|
|
496
|
+
accountMetas.push({
|
|
497
|
+
address: message.staticAccounts[accountIndex],
|
|
498
|
+
role: AccountRole.WRITABLE_SIGNER
|
|
499
|
+
});
|
|
500
|
+
accountIndex++;
|
|
501
|
+
}
|
|
502
|
+
for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
|
|
503
|
+
accountMetas.push({
|
|
504
|
+
address: message.staticAccounts[accountIndex],
|
|
505
|
+
role: AccountRole.READONLY_SIGNER
|
|
506
|
+
});
|
|
507
|
+
accountIndex++;
|
|
508
|
+
}
|
|
509
|
+
for (let i = 0; i < numWritableNonSignerAccounts; i++) {
|
|
510
|
+
accountMetas.push({
|
|
511
|
+
address: message.staticAccounts[accountIndex],
|
|
512
|
+
role: AccountRole.WRITABLE
|
|
513
|
+
});
|
|
514
|
+
accountIndex++;
|
|
515
|
+
}
|
|
516
|
+
for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
|
|
517
|
+
accountMetas.push({
|
|
518
|
+
address: message.staticAccounts[accountIndex],
|
|
519
|
+
role: AccountRole.READONLY
|
|
520
|
+
});
|
|
521
|
+
accountIndex++;
|
|
522
|
+
}
|
|
523
|
+
return accountMetas;
|
|
524
|
+
}
|
|
525
|
+
function convertInstruction(instruction, accountMetas) {
|
|
526
|
+
const programAddress = accountMetas[instruction.programAddressIndex]?.address;
|
|
527
|
+
if (!programAddress) {
|
|
528
|
+
throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
|
|
529
|
+
}
|
|
530
|
+
const accounts = instruction.accountIndices?.map((accountIndex) => accountMetas[accountIndex]);
|
|
531
|
+
const { data } = instruction;
|
|
532
|
+
return {
|
|
533
|
+
programAddress,
|
|
534
|
+
...accounts && accounts.length ? { accounts } : {},
|
|
535
|
+
...data && data.length ? { data } : {}
|
|
536
|
+
};
|
|
537
|
+
}
|
|
538
|
+
function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
|
|
539
|
+
if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
|
|
540
|
+
return {
|
|
541
|
+
blockhash: messageLifetimeToken,
|
|
542
|
+
lastValidBlockHeight: lastValidBlockHeight ?? 2n ** 64n - 1n
|
|
543
|
+
// U64 MAX
|
|
544
|
+
};
|
|
545
|
+
} else {
|
|
546
|
+
const nonceAccountAddress = firstInstruction.accounts[0].address;
|
|
547
|
+
addresses.assertIsAddress(nonceAccountAddress);
|
|
548
|
+
const nonceAuthorityAddress = firstInstruction.accounts[2].address;
|
|
549
|
+
addresses.assertIsAddress(nonceAuthorityAddress);
|
|
550
|
+
return {
|
|
551
|
+
nonce: messageLifetimeToken,
|
|
552
|
+
nonceAccountAddress,
|
|
553
|
+
nonceAuthorityAddress
|
|
554
|
+
};
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
function convertSignatures(compiledTransaction) {
|
|
558
|
+
const {
|
|
559
|
+
compiledMessage: { staticAccounts },
|
|
560
|
+
signatures
|
|
561
|
+
} = compiledTransaction;
|
|
562
|
+
return signatures.reduce((acc, sig, index) => {
|
|
563
|
+
const allZeros = sig.every((byte) => byte === 0);
|
|
564
|
+
if (allZeros)
|
|
565
|
+
return acc;
|
|
566
|
+
const address = staticAccounts[index];
|
|
567
|
+
return { ...acc, [address]: sig };
|
|
568
|
+
}, {});
|
|
569
|
+
}
|
|
570
|
+
function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
|
|
571
|
+
const { compiledMessage } = compiledTransaction;
|
|
572
|
+
if ("addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups.length > 0) {
|
|
573
|
+
throw new Error("Cannot convert transaction with addressTableLookups");
|
|
574
|
+
}
|
|
575
|
+
const feePayer = compiledMessage.staticAccounts[0];
|
|
576
|
+
if (!feePayer)
|
|
577
|
+
throw new Error("No fee payer set in CompiledTransaction");
|
|
578
|
+
const accountMetas = getAccountMetas(compiledMessage);
|
|
579
|
+
const instructions = compiledMessage.instructions.map(
|
|
580
|
+
(compiledInstruction) => convertInstruction(compiledInstruction, accountMetas)
|
|
581
|
+
);
|
|
582
|
+
const firstInstruction = instructions[0];
|
|
583
|
+
const lifetimeConstraint = getLifetimeConstraint(
|
|
584
|
+
compiledMessage.lifetimeToken,
|
|
585
|
+
firstInstruction,
|
|
586
|
+
lastValidBlockHeight
|
|
587
|
+
);
|
|
588
|
+
const signatures = convertSignatures(compiledTransaction);
|
|
589
|
+
return functional.pipe(
|
|
590
|
+
createTransaction({ version: compiledMessage.version }),
|
|
591
|
+
(tx) => setTransactionFeePayer(feePayer, tx),
|
|
592
|
+
(tx) => instructions.reduce((acc, instruction) => {
|
|
593
|
+
return appendTransactionInstruction(instruction, acc);
|
|
594
|
+
}, tx),
|
|
595
|
+
(tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
|
|
596
|
+
(tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
|
|
597
|
+
);
|
|
598
|
+
}
|
|
599
|
+
var lookupTableAddressDescription = __DEV__ ? "The address of the address lookup table account from which instruction addresses should be looked up" : "lookupTableAddress";
|
|
600
|
+
var writableIndicesDescription = __DEV__ ? "The indices of the accounts in the lookup table that should be loaded as writeable" : "writableIndices";
|
|
601
|
+
var readableIndicesDescription = __DEV__ ? "The indices of the accounts in the lookup table that should be loaded as read-only" : "readableIndices";
|
|
602
|
+
var addressTableLookupDescription = __DEV__ ? "A pointer to the address of an address lookup table, along with the readonly/writeable indices of the addresses that should be loaded from it" : "addressTableLookup";
|
|
603
|
+
var memoizedAddressTableLookupEncoder;
|
|
604
|
+
function getAddressTableLookupEncoder() {
|
|
605
|
+
if (!memoizedAddressTableLookupEncoder) {
|
|
606
|
+
memoizedAddressTableLookupEncoder = codecsDataStructures.getStructEncoder(
|
|
607
|
+
[
|
|
608
|
+
["lookupTableAddress", addresses.getAddressEncoder({ description: lookupTableAddressDescription })],
|
|
609
|
+
[
|
|
610
|
+
"writableIndices",
|
|
611
|
+
codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), {
|
|
612
|
+
description: writableIndicesDescription,
|
|
613
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
614
|
+
})
|
|
615
|
+
],
|
|
616
|
+
[
|
|
617
|
+
"readableIndices",
|
|
618
|
+
codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder(), {
|
|
619
|
+
description: readableIndicesDescription,
|
|
620
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
621
|
+
})
|
|
622
|
+
]
|
|
623
|
+
],
|
|
624
|
+
{ description: addressTableLookupDescription }
|
|
625
|
+
);
|
|
626
|
+
}
|
|
627
|
+
return memoizedAddressTableLookupEncoder;
|
|
628
|
+
}
|
|
629
|
+
var memoizedAddressTableLookupDecoder;
|
|
630
|
+
function getAddressTableLookupDecoder() {
|
|
631
|
+
if (!memoizedAddressTableLookupDecoder) {
|
|
632
|
+
memoizedAddressTableLookupDecoder = codecsDataStructures.getStructDecoder(
|
|
633
|
+
[
|
|
634
|
+
["lookupTableAddress", addresses.getAddressDecoder({ description: lookupTableAddressDescription })],
|
|
635
|
+
[
|
|
636
|
+
"writableIndices",
|
|
637
|
+
codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), {
|
|
638
|
+
description: writableIndicesDescription,
|
|
639
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
640
|
+
})
|
|
641
|
+
],
|
|
642
|
+
[
|
|
643
|
+
"readableIndices",
|
|
644
|
+
codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder(), {
|
|
645
|
+
description: readableIndicesDescription,
|
|
646
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
647
|
+
})
|
|
648
|
+
]
|
|
649
|
+
],
|
|
650
|
+
{ description: addressTableLookupDescription }
|
|
651
|
+
);
|
|
652
|
+
}
|
|
653
|
+
return memoizedAddressTableLookupDecoder;
|
|
654
|
+
}
|
|
655
|
+
var memoizedU8Encoder;
|
|
656
|
+
function getMemoizedU8Encoder() {
|
|
657
|
+
if (!memoizedU8Encoder)
|
|
658
|
+
memoizedU8Encoder = codecsNumbers.getU8Encoder();
|
|
659
|
+
return memoizedU8Encoder;
|
|
660
|
+
}
|
|
661
|
+
function getMemoizedU8EncoderDescription(description) {
|
|
662
|
+
const encoder = getMemoizedU8Encoder();
|
|
663
|
+
return {
|
|
664
|
+
...encoder,
|
|
665
|
+
description: description ?? encoder.description
|
|
666
|
+
};
|
|
667
|
+
}
|
|
668
|
+
var memoizedU8Decoder;
|
|
669
|
+
function getMemoizedU8Decoder() {
|
|
670
|
+
if (!memoizedU8Decoder)
|
|
671
|
+
memoizedU8Decoder = codecsNumbers.getU8Decoder();
|
|
672
|
+
return memoizedU8Decoder;
|
|
673
|
+
}
|
|
674
|
+
function getMemoizedU8DecoderDescription(description) {
|
|
675
|
+
const decoder = getMemoizedU8Decoder();
|
|
676
|
+
return {
|
|
677
|
+
...decoder,
|
|
678
|
+
description: description ?? decoder.description
|
|
679
|
+
};
|
|
680
|
+
}
|
|
681
|
+
var numSignerAccountsDescription = __DEV__ ? "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction" : void 0;
|
|
682
|
+
var numReadonlySignerAccountsDescription = __DEV__ ? "The expected number of addresses in the static address list belonging to accounts that are required to sign this transaction, but may not be writable" : void 0;
|
|
683
|
+
var numReadonlyNonSignerAccountsDescription = __DEV__ ? "The expected number of addresses in the static address list belonging to accounts that are neither signers, nor writable" : void 0;
|
|
684
|
+
var messageHeaderDescription = __DEV__ ? "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses" : void 0;
|
|
685
|
+
function getMessageHeaderEncoder() {
|
|
686
|
+
return codecsDataStructures.getStructEncoder(
|
|
687
|
+
[
|
|
688
|
+
["numSignerAccounts", getMemoizedU8EncoderDescription(numSignerAccountsDescription)],
|
|
689
|
+
["numReadonlySignerAccounts", getMemoizedU8EncoderDescription(numReadonlySignerAccountsDescription)],
|
|
690
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8EncoderDescription(numReadonlyNonSignerAccountsDescription)]
|
|
691
|
+
],
|
|
692
|
+
{
|
|
693
|
+
description: messageHeaderDescription
|
|
694
|
+
}
|
|
695
|
+
);
|
|
696
|
+
}
|
|
697
|
+
function getMessageHeaderDecoder() {
|
|
698
|
+
return codecsDataStructures.getStructDecoder(
|
|
699
|
+
[
|
|
700
|
+
["numSignerAccounts", getMemoizedU8DecoderDescription(numSignerAccountsDescription)],
|
|
701
|
+
["numReadonlySignerAccounts", getMemoizedU8DecoderDescription(numReadonlySignerAccountsDescription)],
|
|
702
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8DecoderDescription(numReadonlyNonSignerAccountsDescription)]
|
|
703
|
+
],
|
|
704
|
+
{
|
|
705
|
+
description: messageHeaderDescription
|
|
706
|
+
}
|
|
707
|
+
);
|
|
708
|
+
}
|
|
709
|
+
var programAddressIndexDescription = __DEV__ ? "The index of the program being called, according to the well-ordered accounts list for this transaction" : "programAddressIndex";
|
|
710
|
+
var accountIndexDescription = __DEV__ ? "The index of an account, according to the well-ordered accounts list for this transaction" : void 0;
|
|
711
|
+
var accountIndicesDescription = __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" : "accountIndices";
|
|
712
|
+
var dataDescription = __DEV__ ? "An optional buffer of data passed to the instruction" : "data";
|
|
713
|
+
var memoizedGetInstructionEncoder;
|
|
714
|
+
function getInstructionEncoder() {
|
|
715
|
+
if (!memoizedGetInstructionEncoder) {
|
|
716
|
+
memoizedGetInstructionEncoder = codecsCore.mapEncoder(
|
|
717
|
+
codecsDataStructures.getStructEncoder([
|
|
718
|
+
["programAddressIndex", codecsNumbers.getU8Encoder({ description: programAddressIndexDescription })],
|
|
719
|
+
[
|
|
720
|
+
"accountIndices",
|
|
721
|
+
codecsDataStructures.getArrayEncoder(codecsNumbers.getU8Encoder({ description: accountIndexDescription }), {
|
|
722
|
+
description: accountIndicesDescription,
|
|
723
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
724
|
+
})
|
|
725
|
+
],
|
|
726
|
+
["data", codecsDataStructures.getBytesEncoder({ description: dataDescription, size: codecsNumbers.getShortU16Encoder() })]
|
|
727
|
+
]),
|
|
728
|
+
// Convert an instruction to have all fields defined
|
|
729
|
+
(instruction) => {
|
|
730
|
+
if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
|
|
731
|
+
return instruction;
|
|
732
|
+
}
|
|
733
|
+
return {
|
|
734
|
+
...instruction,
|
|
735
|
+
accountIndices: instruction.accountIndices ?? [],
|
|
736
|
+
data: instruction.data ?? new Uint8Array(0)
|
|
737
|
+
};
|
|
738
|
+
}
|
|
739
|
+
);
|
|
740
|
+
}
|
|
741
|
+
return memoizedGetInstructionEncoder;
|
|
742
|
+
}
|
|
743
|
+
var memoizedGetInstructionDecoder;
|
|
744
|
+
function getInstructionDecoder() {
|
|
745
|
+
if (!memoizedGetInstructionDecoder) {
|
|
746
|
+
memoizedGetInstructionDecoder = codecsCore.mapDecoder(
|
|
747
|
+
codecsDataStructures.getStructDecoder([
|
|
748
|
+
["programAddressIndex", codecsNumbers.getU8Decoder({ description: programAddressIndexDescription })],
|
|
749
|
+
[
|
|
750
|
+
"accountIndices",
|
|
751
|
+
codecsDataStructures.getArrayDecoder(codecsNumbers.getU8Decoder({ description: accountIndexDescription }), {
|
|
752
|
+
description: accountIndicesDescription,
|
|
753
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
754
|
+
})
|
|
755
|
+
],
|
|
756
|
+
["data", codecsDataStructures.getBytesDecoder({ description: dataDescription, size: codecsNumbers.getShortU16Decoder() })]
|
|
757
|
+
]),
|
|
758
|
+
// Convert an instruction to exclude optional fields if they are empty
|
|
759
|
+
(instruction) => {
|
|
760
|
+
if (instruction.accountIndices.length && instruction.data.byteLength) {
|
|
761
|
+
return instruction;
|
|
762
|
+
}
|
|
763
|
+
const { accountIndices, data, ...rest } = instruction;
|
|
764
|
+
return {
|
|
765
|
+
...rest,
|
|
766
|
+
...accountIndices.length ? { accountIndices } : null,
|
|
767
|
+
...data.byteLength ? { data } : null
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
);
|
|
771
|
+
}
|
|
772
|
+
return memoizedGetInstructionDecoder;
|
|
773
|
+
}
|
|
774
|
+
var VERSION_FLAG_MASK = 128;
|
|
775
|
+
var BASE_CONFIG = {
|
|
776
|
+
description: __DEV__ ? "A single byte that encodes the version of the transaction" : "",
|
|
777
|
+
fixedSize: null,
|
|
778
|
+
maxSize: 1
|
|
779
|
+
};
|
|
780
|
+
function decode(bytes, offset = 0) {
|
|
781
|
+
const firstByte = bytes[offset];
|
|
782
|
+
if ((firstByte & VERSION_FLAG_MASK) === 0) {
|
|
783
|
+
return ["legacy", offset];
|
|
784
|
+
} else {
|
|
785
|
+
const version = firstByte ^ VERSION_FLAG_MASK;
|
|
786
|
+
return [version, offset + 1];
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
function encode(value) {
|
|
790
|
+
if (value === "legacy") {
|
|
791
|
+
return new Uint8Array();
|
|
792
|
+
}
|
|
793
|
+
if (value < 0 || value > 127) {
|
|
794
|
+
throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
|
|
795
|
+
}
|
|
796
|
+
return new Uint8Array([value | VERSION_FLAG_MASK]);
|
|
797
|
+
}
|
|
798
|
+
function getTransactionVersionDecoder() {
|
|
799
|
+
return {
|
|
800
|
+
...BASE_CONFIG,
|
|
801
|
+
decode
|
|
802
|
+
};
|
|
803
|
+
}
|
|
804
|
+
function getTransactionVersionEncoder() {
|
|
805
|
+
return {
|
|
806
|
+
...BASE_CONFIG,
|
|
807
|
+
encode
|
|
808
|
+
};
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
// src/serializers/message.ts
|
|
812
|
+
var staticAccountsDescription = __DEV__ ? "A compact-array of static account addresses belonging to this transaction" : "staticAccounts";
|
|
813
|
+
var lifetimeTokenDescription = __DEV__ ? "A 32-byte token that specifies the lifetime of this transaction (eg. a recent blockhash, or a durable nonce)" : "lifetimeToken";
|
|
814
|
+
var instructionsDescription = __DEV__ ? "A compact-array of instructions belonging to this transaction" : "instructions";
|
|
815
|
+
var addressTableLookupsDescription = __DEV__ ? "A compact array of address table lookups belonging to this transaction" : "addressTableLookups";
|
|
816
|
+
function getCompiledMessageLegacyEncoder() {
|
|
817
|
+
return codecsDataStructures.getStructEncoder(getPreludeStructEncoderTuple());
|
|
818
|
+
}
|
|
819
|
+
function getCompiledMessageVersionedEncoder() {
|
|
820
|
+
return codecsCore.mapEncoder(
|
|
821
|
+
codecsDataStructures.getStructEncoder([
|
|
822
|
+
...getPreludeStructEncoderTuple(),
|
|
823
|
+
["addressTableLookups", getAddressTableLookupArrayEncoder()]
|
|
824
|
+
]),
|
|
825
|
+
(value) => {
|
|
826
|
+
if (value.version === "legacy") {
|
|
827
|
+
return value;
|
|
828
|
+
}
|
|
829
|
+
return {
|
|
830
|
+
...value,
|
|
831
|
+
addressTableLookups: value.addressTableLookups ?? []
|
|
832
|
+
};
|
|
833
|
+
}
|
|
834
|
+
);
|
|
835
|
+
}
|
|
836
|
+
function getPreludeStructEncoderTuple() {
|
|
837
|
+
return [
|
|
838
|
+
["version", getTransactionVersionEncoder()],
|
|
839
|
+
["header", getMessageHeaderEncoder()],
|
|
840
|
+
[
|
|
841
|
+
"staticAccounts",
|
|
842
|
+
codecsDataStructures.getArrayEncoder(addresses.getAddressEncoder(), {
|
|
843
|
+
description: staticAccountsDescription,
|
|
844
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
845
|
+
})
|
|
846
|
+
],
|
|
847
|
+
[
|
|
848
|
+
"lifetimeToken",
|
|
849
|
+
codecsStrings.getStringEncoder({
|
|
850
|
+
description: lifetimeTokenDescription,
|
|
851
|
+
encoding: codecsStrings.getBase58Encoder(),
|
|
852
|
+
size: 32
|
|
853
|
+
})
|
|
854
|
+
],
|
|
855
|
+
[
|
|
856
|
+
"instructions",
|
|
857
|
+
codecsDataStructures.getArrayEncoder(getInstructionEncoder(), {
|
|
858
|
+
description: instructionsDescription,
|
|
859
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
860
|
+
})
|
|
861
|
+
]
|
|
862
|
+
];
|
|
863
|
+
}
|
|
864
|
+
function getPreludeStructDecoderTuple() {
|
|
865
|
+
return [
|
|
866
|
+
["version", getTransactionVersionDecoder()],
|
|
867
|
+
["header", getMessageHeaderDecoder()],
|
|
868
|
+
[
|
|
869
|
+
"staticAccounts",
|
|
870
|
+
codecsDataStructures.getArrayDecoder(addresses.getAddressDecoder(), {
|
|
871
|
+
description: staticAccountsDescription,
|
|
872
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
873
|
+
})
|
|
874
|
+
],
|
|
875
|
+
[
|
|
876
|
+
"lifetimeToken",
|
|
877
|
+
codecsStrings.getStringDecoder({
|
|
878
|
+
description: lifetimeTokenDescription,
|
|
879
|
+
encoding: codecsStrings.getBase58Decoder(),
|
|
880
|
+
size: 32
|
|
881
|
+
})
|
|
882
|
+
],
|
|
883
|
+
[
|
|
884
|
+
"instructions",
|
|
885
|
+
codecsDataStructures.getArrayDecoder(getInstructionDecoder(), {
|
|
886
|
+
description: instructionsDescription,
|
|
887
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
888
|
+
})
|
|
889
|
+
],
|
|
890
|
+
["addressTableLookups", getAddressTableLookupArrayDecoder()]
|
|
891
|
+
];
|
|
892
|
+
}
|
|
893
|
+
function getAddressTableLookupArrayEncoder() {
|
|
894
|
+
return codecsDataStructures.getArrayEncoder(getAddressTableLookupEncoder(), {
|
|
895
|
+
description: addressTableLookupsDescription,
|
|
896
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
897
|
+
});
|
|
898
|
+
}
|
|
899
|
+
function getAddressTableLookupArrayDecoder() {
|
|
900
|
+
return codecsDataStructures.getArrayDecoder(getAddressTableLookupDecoder(), {
|
|
901
|
+
description: addressTableLookupsDescription,
|
|
902
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
903
|
+
});
|
|
904
|
+
}
|
|
905
|
+
var messageDescription = __DEV__ ? "The wire format of a Solana transaction message" : "message";
|
|
906
|
+
function getCompiledMessageEncoder() {
|
|
907
|
+
return {
|
|
908
|
+
description: messageDescription,
|
|
909
|
+
encode: (compiledMessage) => {
|
|
910
|
+
if (compiledMessage.version === "legacy") {
|
|
911
|
+
return getCompiledMessageLegacyEncoder().encode(compiledMessage);
|
|
912
|
+
} else {
|
|
913
|
+
return getCompiledMessageVersionedEncoder().encode(compiledMessage);
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
fixedSize: null,
|
|
917
|
+
maxSize: null
|
|
918
|
+
};
|
|
919
|
+
}
|
|
920
|
+
function getCompiledMessageDecoder() {
|
|
921
|
+
return codecsCore.mapDecoder(
|
|
922
|
+
codecsDataStructures.getStructDecoder(getPreludeStructDecoderTuple(), {
|
|
923
|
+
description: messageDescription
|
|
924
|
+
}),
|
|
925
|
+
({ addressTableLookups, ...restOfMessage }) => {
|
|
926
|
+
if (restOfMessage.version === "legacy" || !addressTableLookups?.length) {
|
|
927
|
+
return restOfMessage;
|
|
928
|
+
}
|
|
929
|
+
return { ...restOfMessage, addressTableLookups };
|
|
930
|
+
}
|
|
931
|
+
);
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
// src/serializers/transaction.ts
|
|
935
|
+
var signaturesDescription = __DEV__ ? "A compact array of 64-byte, base-64 encoded Ed25519 signatures" : "signatures";
|
|
936
|
+
var transactionDescription = __DEV__ ? "The wire format of a Solana transaction" : "transaction";
|
|
937
|
+
function getCompiledTransactionEncoder() {
|
|
938
|
+
return codecsDataStructures.getStructEncoder(
|
|
939
|
+
[
|
|
940
|
+
[
|
|
941
|
+
"signatures",
|
|
942
|
+
codecsDataStructures.getArrayEncoder(codecsDataStructures.getBytesEncoder({ size: 64 }), {
|
|
943
|
+
description: signaturesDescription,
|
|
944
|
+
size: codecsNumbers.getShortU16Encoder()
|
|
945
|
+
})
|
|
946
|
+
],
|
|
947
|
+
["compiledMessage", getCompiledMessageEncoder()]
|
|
948
|
+
],
|
|
949
|
+
{
|
|
950
|
+
description: transactionDescription
|
|
951
|
+
}
|
|
952
|
+
);
|
|
953
|
+
}
|
|
954
|
+
function getSignatureDecoder() {
|
|
955
|
+
return codecsCore.mapDecoder(codecsDataStructures.getBytesDecoder({ size: 64 }), (bytes) => bytes);
|
|
956
|
+
}
|
|
957
|
+
function getCompiledTransactionDecoder() {
|
|
958
|
+
return codecsDataStructures.getStructDecoder(
|
|
959
|
+
[
|
|
960
|
+
[
|
|
961
|
+
"signatures",
|
|
962
|
+
codecsDataStructures.getArrayDecoder(getSignatureDecoder(), {
|
|
963
|
+
description: signaturesDescription,
|
|
964
|
+
size: codecsNumbers.getShortU16Decoder()
|
|
965
|
+
})
|
|
966
|
+
],
|
|
967
|
+
["compiledMessage", getCompiledMessageDecoder()]
|
|
968
|
+
],
|
|
969
|
+
{
|
|
970
|
+
description: transactionDescription
|
|
971
|
+
}
|
|
972
|
+
);
|
|
973
|
+
}
|
|
974
|
+
function getTransactionEncoder() {
|
|
975
|
+
return codecsCore.mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
|
|
976
|
+
}
|
|
977
|
+
function getTransactionDecoder(lastValidBlockHeight) {
|
|
978
|
+
return codecsCore.mapDecoder(
|
|
979
|
+
getCompiledTransactionDecoder(),
|
|
980
|
+
(compiledTransaction) => decompileTransaction(compiledTransaction, lastValidBlockHeight)
|
|
981
|
+
);
|
|
982
|
+
}
|
|
983
|
+
function getTransactionCodec(lastValidBlockHeight) {
|
|
984
|
+
return codecsCore.combineCodec(getTransactionEncoder(), getTransactionDecoder(lastValidBlockHeight));
|
|
985
|
+
}
|
|
986
|
+
var base58Encoder2;
|
|
987
|
+
var base58Decoder;
|
|
988
|
+
function assertIsTransactionSignature(putativeTransactionSignature) {
|
|
989
|
+
if (!base58Encoder2)
|
|
990
|
+
base58Encoder2 = codecsStrings.getBase58Encoder();
|
|
991
|
+
try {
|
|
992
|
+
if (
|
|
993
|
+
// Lowest value (64 bytes of zeroes)
|
|
994
|
+
putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
|
|
995
|
+
putativeTransactionSignature.length > 88
|
|
996
|
+
) {
|
|
997
|
+
throw new Error("Expected input string to decode to a byte array of length 64.");
|
|
998
|
+
}
|
|
999
|
+
const bytes = base58Encoder2.encode(putativeTransactionSignature);
|
|
1000
|
+
const numBytes = bytes.byteLength;
|
|
1001
|
+
if (numBytes !== 64) {
|
|
1002
|
+
throw new Error(`Expected input string to decode to a byte array of length 64. Actual length: ${numBytes}`);
|
|
1003
|
+
}
|
|
1004
|
+
} catch (e) {
|
|
1005
|
+
throw new Error(`\`${putativeTransactionSignature}\` is not a transaction signature`, {
|
|
1006
|
+
cause: e
|
|
1007
|
+
});
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
function isTransactionSignature(putativeTransactionSignature) {
|
|
1011
|
+
if (!base58Encoder2)
|
|
1012
|
+
base58Encoder2 = codecsStrings.getBase58Encoder();
|
|
1013
|
+
if (
|
|
1014
|
+
// Lowest value (64 bytes of zeroes)
|
|
1015
|
+
putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
|
|
1016
|
+
putativeTransactionSignature.length > 88
|
|
1017
|
+
) {
|
|
1018
|
+
return false;
|
|
1019
|
+
}
|
|
1020
|
+
const bytes = base58Encoder2.encode(putativeTransactionSignature);
|
|
1021
|
+
const numBytes = bytes.byteLength;
|
|
1022
|
+
if (numBytes !== 64) {
|
|
1023
|
+
return false;
|
|
1024
|
+
}
|
|
1025
|
+
return true;
|
|
1026
|
+
}
|
|
1027
|
+
function getSignatureFromTransaction(transaction) {
|
|
1028
|
+
if (!base58Decoder)
|
|
1029
|
+
base58Decoder = codecsStrings.getBase58Decoder();
|
|
1030
|
+
const signatureBytes = transaction.signatures[transaction.feePayer];
|
|
1031
|
+
if (!signatureBytes) {
|
|
1032
|
+
throw new Error(
|
|
1033
|
+
"Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
|
|
1034
|
+
);
|
|
1035
|
+
}
|
|
1036
|
+
const transactionSignature2 = base58Decoder.decode(signatureBytes)[0];
|
|
1037
|
+
return transactionSignature2;
|
|
1038
|
+
}
|
|
1039
|
+
async function signTransaction(keyPairs, transaction) {
|
|
1040
|
+
const compiledMessage = compileMessage(transaction);
|
|
1041
|
+
const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
|
|
1042
|
+
const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
|
|
1043
|
+
const publicKeySignaturePairs = await Promise.all(
|
|
1044
|
+
keyPairs.map(
|
|
1045
|
+
(keyPair) => Promise.all([addresses.getAddressFromPublicKey(keyPair.publicKey), keys.signBytes(keyPair.privateKey, wireMessageBytes)])
|
|
1046
|
+
)
|
|
1047
|
+
);
|
|
1048
|
+
for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
|
|
1049
|
+
nextSignatures[signerPublicKey] = signature;
|
|
1050
|
+
}
|
|
1051
|
+
const out = {
|
|
1052
|
+
...transaction,
|
|
1053
|
+
signatures: nextSignatures
|
|
1054
|
+
};
|
|
1055
|
+
Object.freeze(out);
|
|
1056
|
+
return out;
|
|
1057
|
+
}
|
|
1058
|
+
function transactionSignature(putativeTransactionSignature) {
|
|
1059
|
+
assertIsTransactionSignature(putativeTransactionSignature);
|
|
1060
|
+
return putativeTransactionSignature;
|
|
1061
|
+
}
|
|
1062
|
+
function assertTransactionIsFullySigned(transaction) {
|
|
1063
|
+
const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => i.accounts?.filter((a) => isSignerRole(a.role)) ?? []).map((a) => a.address);
|
|
1064
|
+
const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
|
|
1065
|
+
requiredSigners.forEach((address) => {
|
|
1066
|
+
if (!transaction.signatures[address]) {
|
|
1067
|
+
throw new Error(`Transaction is missing signature for address \`${address}\``);
|
|
1068
|
+
}
|
|
1069
|
+
});
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
// src/wire-transaction.ts
|
|
1073
|
+
function getBase64EncodedWireTransaction(transaction) {
|
|
1074
|
+
const wireTransactionBytes = getTransactionEncoder().encode(transaction);
|
|
1075
|
+
{
|
|
1076
|
+
return btoa(String.fromCharCode(...wireTransactionBytes));
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
exports.appendTransactionInstruction = appendTransactionInstruction;
|
|
1081
|
+
exports.assertIsBlockhash = assertIsBlockhash;
|
|
1082
|
+
exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
|
|
1083
|
+
exports.assertIsTransactionSignature = assertIsTransactionSignature;
|
|
1084
|
+
exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
|
|
1085
|
+
exports.createTransaction = createTransaction;
|
|
1086
|
+
exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
|
|
1087
|
+
exports.getSignatureFromTransaction = getSignatureFromTransaction;
|
|
1088
|
+
exports.getTransactionCodec = getTransactionCodec;
|
|
1089
|
+
exports.getTransactionDecoder = getTransactionDecoder;
|
|
1090
|
+
exports.getTransactionEncoder = getTransactionEncoder;
|
|
1091
|
+
exports.isAdvanceNonceAccountInstruction = isAdvanceNonceAccountInstruction;
|
|
1092
|
+
exports.isTransactionSignature = isTransactionSignature;
|
|
1093
|
+
exports.prependTransactionInstruction = prependTransactionInstruction;
|
|
1094
|
+
exports.setTransactionFeePayer = setTransactionFeePayer;
|
|
1095
|
+
exports.setTransactionLifetimeUsingBlockhash = setTransactionLifetimeUsingBlockhash;
|
|
1096
|
+
exports.setTransactionLifetimeUsingDurableNonce = setTransactionLifetimeUsingDurableNonce;
|
|
1097
|
+
exports.signTransaction = signTransaction;
|
|
1098
|
+
exports.transactionSignature = transactionSignature;
|