@solana/web3.js 1.35.0 → 1.35.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.
@@ -4824,13 +4824,13 @@ const VersionResult = type({
4824
4824
  const SimulatedTransactionResponseStruct = jsonRpcResultAndContext(type({
4825
4825
  err: nullable(union([type({}), string()])),
4826
4826
  logs: nullable(array(string())),
4827
- accounts: optional(nullable(array(type({
4827
+ accounts: optional(nullable(array(nullable(type({
4828
4828
  executable: boolean(),
4829
4829
  owner: string(),
4830
4830
  lamports: number(),
4831
4831
  data: array(string()),
4832
4832
  rentEpoch: optional(number())
4833
- })))),
4833
+ }))))),
4834
4834
  unitsConsumed: optional(number())
4835
4835
  }));
4836
4836