@solana/web3.js 1.43.6 → 1.44.0

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.d.ts CHANGED
@@ -2982,7 +2982,8 @@ declare module '@solana/web3.js' {
2982
2982
  | 'InitializeNonceAccount'
2983
2983
  | 'Transfer'
2984
2984
  | 'TransferWithSeed'
2985
- | 'WithdrawNonceAccount';
2985
+ | 'WithdrawNonceAccount'
2986
+ | 'UpgradeNonceAccount';
2986
2987
  /**
2987
2988
  * Factory class for transactions to interact with the System program
2988
2989
  */
package/lib/index.esm.js CHANGED
@@ -3573,6 +3573,10 @@ const SYSTEM_INSTRUCTION_LAYOUTS = Object.freeze({
3573
3573
  TransferWithSeed: {
3574
3574
  index: 11,
3575
3575
  layout: BufferLayout.struct([BufferLayout.u32('instruction'), u64('lamports'), rustString('seed'), publicKey('programId')])
3576
+ },
3577
+ UpgradeNonceAccount: {
3578
+ index: 12,
3579
+ layout: BufferLayout.struct([BufferLayout.u32('instruction')])
3576
3580
  }
3577
3581
  });
3578
3582
  /**