@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.cjs.js
CHANGED
|
@@ -4354,13 +4354,13 @@ const VersionResult = superstruct.type({
|
|
|
4354
4354
|
const SimulatedTransactionResponseStruct = jsonRpcResultAndContext(superstruct.type({
|
|
4355
4355
|
err: superstruct.nullable(superstruct.union([superstruct.type({}), superstruct.string()])),
|
|
4356
4356
|
logs: superstruct.nullable(superstruct.array(superstruct.string())),
|
|
4357
|
-
accounts: superstruct.optional(superstruct.nullable(superstruct.array(superstruct.type({
|
|
4357
|
+
accounts: superstruct.optional(superstruct.nullable(superstruct.array(superstruct.nullable(superstruct.type({
|
|
4358
4358
|
executable: superstruct.boolean(),
|
|
4359
4359
|
owner: superstruct.string(),
|
|
4360
4360
|
lamports: superstruct.number(),
|
|
4361
4361
|
data: superstruct.array(superstruct.string()),
|
|
4362
4362
|
rentEpoch: superstruct.optional(superstruct.number())
|
|
4363
|
-
})))),
|
|
4363
|
+
}))))),
|
|
4364
4364
|
unitsConsumed: superstruct.optional(superstruct.number())
|
|
4365
4365
|
}));
|
|
4366
4366
|
|