@solana/web3.js 1.43.5 → 1.44.1
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/lib/index.browser.cjs.js +6 -0
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +5 -1
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +6 -0
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +12 -1
- package/lib/index.esm.js +5 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +6 -0
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +2 -2
- package/lib/index.iife.min.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -0
- package/src/system-program.ts +9 -1
- package/src/transaction.ts +5 -0
package/lib/index.browser.cjs.js
CHANGED
|
@@ -3580,6 +3580,10 @@ const SYSTEM_INSTRUCTION_LAYOUTS = Object.freeze({
|
|
|
3580
3580
|
TransferWithSeed: {
|
|
3581
3581
|
index: 11,
|
|
3582
3582
|
layout: BufferLayout__namespace.struct([BufferLayout__namespace.u32('instruction'), u64('lamports'), rustString('seed'), publicKey('programId')])
|
|
3583
|
+
},
|
|
3584
|
+
UpgradeNonceAccount: {
|
|
3585
|
+
index: 12,
|
|
3586
|
+
layout: BufferLayout__namespace.struct([BufferLayout__namespace.u32('instruction')])
|
|
3583
3587
|
}
|
|
3584
3588
|
});
|
|
3585
3589
|
/**
|
|
@@ -9853,6 +9857,8 @@ exports.Struct = Struct;
|
|
|
9853
9857
|
exports.SystemInstruction = SystemInstruction;
|
|
9854
9858
|
exports.SystemProgram = SystemProgram;
|
|
9855
9859
|
exports.Transaction = Transaction;
|
|
9860
|
+
exports.TransactionExpiredBlockheightExceededError = TransactionExpiredBlockheightExceededError;
|
|
9861
|
+
exports.TransactionExpiredTimeoutError = TransactionExpiredTimeoutError;
|
|
9856
9862
|
exports.TransactionInstruction = TransactionInstruction;
|
|
9857
9863
|
exports.VALIDATOR_INFO_KEY = VALIDATOR_INFO_KEY;
|
|
9858
9864
|
exports.VOTE_PROGRAM_ID = VOTE_PROGRAM_ID;
|