@solana/transaction-messages 4.0.0-canary-20250930051855 → 4.0.0-canary-20250930084738
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/dist/index.browser.cjs +16 -0
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.mjs +17 -2
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.native.mjs +17 -2
- package/dist/index.native.mjs.map +1 -1
- package/dist/index.node.cjs +16 -0
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.mjs +17 -2
- package/dist/index.node.mjs.map +1 -1
- package/dist/types/codecs/transaction-version.d.ts.map +1 -1
- package/dist/types/compile/message.d.ts +1 -1
- package/dist/types/compile/message.d.ts.map +1 -1
- package/dist/types/transaction-message.d.ts +1 -0
- package/dist/types/transaction-message.d.ts.map +1 -1
- package/package.json +10 -10
package/dist/index.node.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SolanaError, SOLANA_ERROR__TRANSACTION__EXPECTED_BLOCKHASH_LIFETIME, SOLANA_ERROR__TRANSACTION__VERSION_NUMBER_OUT_OF_RANGE, SOLANA_ERROR__TRANSACTION__EXPECTED_NONCE_LIFETIME, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_FEE_PAYER_MISSING, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_ADDRESS_LOOKUP_TABLE_CONTENTS_MISSING, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_ADDRESS_LOOKUP_TABLE_INDEX_OUT_OF_RANGE, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_INSTRUCTION_PROGRAM_ADDRESS_NOT_FOUND, SOLANA_ERROR__CODECS__INVALID_STRING_FOR_BASE, SOLANA_ERROR__TRANSACTION__INVOKED_PROGRAMS_MUST_NOT_BE_WRITABLE, SOLANA_ERROR__TRANSACTION__INVOKED_PROGRAMS_CANNOT_PAY_FEES } from '@solana/errors';
|
|
1
|
+
import { SolanaError, SOLANA_ERROR__TRANSACTION__EXPECTED_BLOCKHASH_LIFETIME, SOLANA_ERROR__TRANSACTION__VERSION_NUMBER_OUT_OF_RANGE, SOLANA_ERROR__TRANSACTION__VERSION_NUMBER_NOT_SUPPORTED, SOLANA_ERROR__TRANSACTION__EXPECTED_NONCE_LIFETIME, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_FEE_PAYER_MISSING, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_ADDRESS_LOOKUP_TABLE_CONTENTS_MISSING, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_ADDRESS_LOOKUP_TABLE_INDEX_OUT_OF_RANGE, SOLANA_ERROR__TRANSACTION__FAILED_TO_DECOMPILE_INSTRUCTION_PROGRAM_ADDRESS_NOT_FOUND, SOLANA_ERROR__CODECS__INVALID_STRING_FOR_BASE, SOLANA_ERROR__TRANSACTION__INVOKED_PROGRAMS_MUST_NOT_BE_WRITABLE, SOLANA_ERROR__TRANSACTION__INVOKED_PROGRAMS_CANNOT_PAY_FEES } from '@solana/errors';
|
|
2
2
|
import { isBlockhash } from '@solana/rpc-types';
|
|
3
3
|
import { getAddressDecoder, getAddressComparator, assertIsAddress, getAddressEncoder } from '@solana/addresses';
|
|
4
4
|
import { createEncoder, createDecoder, combineCodec, transformDecoder, transformEncoder, fixDecoderSize, fixEncoderSize, addDecoderSizePrefix, addEncoderSizePrefix } from '@solana/codecs-core';
|
|
@@ -202,6 +202,11 @@ function getInstructionDecoder() {
|
|
|
202
202
|
}
|
|
203
203
|
return memoizedGetInstructionDecoder;
|
|
204
204
|
}
|
|
205
|
+
|
|
206
|
+
// src/transaction-message.ts
|
|
207
|
+
var MAX_SUPPORTED_TRANSACTION_VERSION = 0;
|
|
208
|
+
|
|
209
|
+
// src/codecs/transaction-version.ts
|
|
205
210
|
var VERSION_FLAG_MASK = 128;
|
|
206
211
|
function getTransactionVersionEncoder() {
|
|
207
212
|
return createEncoder({
|
|
@@ -216,6 +221,11 @@ function getTransactionVersionEncoder() {
|
|
|
216
221
|
actualVersion: value
|
|
217
222
|
});
|
|
218
223
|
}
|
|
224
|
+
if (value > MAX_SUPPORTED_TRANSACTION_VERSION) {
|
|
225
|
+
throw new SolanaError(SOLANA_ERROR__TRANSACTION__VERSION_NUMBER_NOT_SUPPORTED, {
|
|
226
|
+
unsupportedVersion: value
|
|
227
|
+
});
|
|
228
|
+
}
|
|
219
229
|
bytes.set([value | VERSION_FLAG_MASK], offset);
|
|
220
230
|
return offset + 1;
|
|
221
231
|
}
|
|
@@ -230,6 +240,11 @@ function getTransactionVersionDecoder() {
|
|
|
230
240
|
return ["legacy", offset];
|
|
231
241
|
} else {
|
|
232
242
|
const version = firstByte ^ VERSION_FLAG_MASK;
|
|
243
|
+
if (version > MAX_SUPPORTED_TRANSACTION_VERSION) {
|
|
244
|
+
throw new SolanaError(SOLANA_ERROR__TRANSACTION__VERSION_NUMBER_NOT_SUPPORTED, {
|
|
245
|
+
unsupportedVersion: version
|
|
246
|
+
});
|
|
247
|
+
}
|
|
233
248
|
return [version, offset + 1];
|
|
234
249
|
}
|
|
235
250
|
}
|
|
@@ -910,6 +925,6 @@ function decompileTransactionMessage(compiledTransactionMessage, config) {
|
|
|
910
925
|
);
|
|
911
926
|
}
|
|
912
927
|
|
|
913
|
-
export { appendTransactionMessageInstruction, appendTransactionMessageInstructions, assertIsTransactionMessageWithBlockhashLifetime, assertIsTransactionMessageWithDurableNonceLifetime, compileTransactionMessage, compressTransactionMessageUsingAddressLookupTables, createTransactionMessage, decompileTransactionMessage, getCompiledTransactionMessageCodec, getCompiledTransactionMessageDecoder, getCompiledTransactionMessageEncoder, getTransactionVersionCodec, getTransactionVersionDecoder, getTransactionVersionEncoder, isAdvanceNonceAccountInstruction, isTransactionMessageWithBlockhashLifetime, isTransactionMessageWithDurableNonceLifetime, prependTransactionMessageInstruction, prependTransactionMessageInstructions, setTransactionMessageFeePayer, setTransactionMessageLifetimeUsingBlockhash, setTransactionMessageLifetimeUsingDurableNonce };
|
|
928
|
+
export { MAX_SUPPORTED_TRANSACTION_VERSION, appendTransactionMessageInstruction, appendTransactionMessageInstructions, assertIsTransactionMessageWithBlockhashLifetime, assertIsTransactionMessageWithDurableNonceLifetime, compileTransactionMessage, compressTransactionMessageUsingAddressLookupTables, createTransactionMessage, decompileTransactionMessage, getCompiledTransactionMessageCodec, getCompiledTransactionMessageDecoder, getCompiledTransactionMessageEncoder, getTransactionVersionCodec, getTransactionVersionDecoder, getTransactionVersionEncoder, isAdvanceNonceAccountInstruction, isTransactionMessageWithBlockhashLifetime, isTransactionMessageWithDurableNonceLifetime, prependTransactionMessageInstruction, prependTransactionMessageInstructions, setTransactionMessageFeePayer, setTransactionMessageLifetimeUsingBlockhash, setTransactionMessageLifetimeUsingDurableNonce };
|
|
914
929
|
//# sourceMappingURL=index.node.mjs.map
|
|
915
930
|
//# sourceMappingURL=index.node.mjs.map
|