@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.
- package/lib/index.browser.esm.js +2 -2
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +2 -2
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.esm.js +2 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +2 -2
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/module.flow.js +1 -1
- package/package.json +1 -1
- package/src/connection.ts +10 -8
package/lib/index.browser.esm.js
CHANGED
|
@@ -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
|
|