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