@solana/web3.js 1.87.4 → 1.87.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/web3.js",
3
- "version": "1.87.4",
3
+ "version": "1.87.5",
4
4
  "description": "Solana Javascript API",
5
5
  "keywords": [
6
6
  "api",
package/src/connection.ts CHANGED
@@ -2524,7 +2524,7 @@ const GetTransactionRpcResult = jsonRpcResult(
2524
2524
  nullable(
2525
2525
  pick({
2526
2526
  slot: number(),
2527
- meta: ConfirmedTransactionMetaResult,
2527
+ meta: nullable(ConfirmedTransactionMetaResult),
2528
2528
  blockTime: optional(nullable(number())),
2529
2529
  transaction: ConfirmedTransactionResult,
2530
2530
  version: optional(TransactionVersionStruct),