@solana/web3.js 1.50.1 → 1.51.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.
@@ -5627,6 +5627,10 @@ const TokenBalanceResult = type({
5627
5627
  owner: optional(string()),
5628
5628
  uiTokenAmount: TokenAmountResult
5629
5629
  });
5630
+ const LoadedAddressesResult = type({
5631
+ writable: array(PublicKeyFromString),
5632
+ readonly: array(PublicKeyFromString)
5633
+ });
5630
5634
  /**
5631
5635
  * @internal
5632
5636
  */
@@ -5646,7 +5650,8 @@ const ConfirmedTransactionMetaResult = type({
5646
5650
  postBalances: array(number()),
5647
5651
  logMessages: optional(nullable(array(string()))),
5648
5652
  preTokenBalances: optional(nullable(array(TokenBalanceResult))),
5649
- postTokenBalances: optional(nullable(array(TokenBalanceResult)))
5653
+ postTokenBalances: optional(nullable(array(TokenBalanceResult))),
5654
+ loadedAddresses: optional(LoadedAddressesResult)
5650
5655
  });
5651
5656
  /**
5652
5657
  * @internal
@@ -5663,7 +5668,8 @@ const ParsedConfirmedTransactionMetaResult = type({
5663
5668
  postBalances: array(number()),
5664
5669
  logMessages: optional(nullable(array(string()))),
5665
5670
  preTokenBalances: optional(nullable(array(TokenBalanceResult))),
5666
- postTokenBalances: optional(nullable(array(TokenBalanceResult)))
5671
+ postTokenBalances: optional(nullable(array(TokenBalanceResult))),
5672
+ loadedAddresses: optional(LoadedAddressesResult)
5667
5673
  });
5668
5674
  /**
5669
5675
  * Expected JSON RPC response for the "getBlock" message