@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.iife.js
CHANGED
|
@@ -19851,13 +19851,13 @@ var solanaWeb3 = (function (exports) {
|
|
|
19851
19851
|
const SimulatedTransactionResponseStruct = jsonRpcResultAndContext(type({
|
|
19852
19852
|
err: nullable(union([type({}), string()])),
|
|
19853
19853
|
logs: nullable(array(string())),
|
|
19854
|
-
accounts: optional(nullable(array(type({
|
|
19854
|
+
accounts: optional(nullable(array(nullable(type({
|
|
19855
19855
|
executable: boolean(),
|
|
19856
19856
|
owner: string(),
|
|
19857
19857
|
lamports: number(),
|
|
19858
19858
|
data: array(string()),
|
|
19859
19859
|
rentEpoch: optional(number())
|
|
19860
|
-
})))),
|
|
19860
|
+
}))))),
|
|
19861
19861
|
unitsConsumed: optional(number())
|
|
19862
19862
|
}));
|
|
19863
19863
|
|