@solana/rpc-graphql 2.0.0-experimental.f025b33 → 2.0.0-experimental.f16a625

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.
@@ -72,7 +72,7 @@ function applyDefaultArgs2({
72
72
  async function loadBlock(rpc, { slot, ...config }) {
73
73
  return await rpc.getBlock(
74
74
  slot,
75
- // @ts-expect-error FIX ME: https://github.com/solana-labs/solana-web3.js/pull/2052
75
+ // @ts-expect-error FIX ME: https://github.com/microsoft/TypeScript/issues/43187
76
76
  config
77
77
  ).send();
78
78
  }
@@ -108,7 +108,7 @@ function applyDefaultArgs3({
108
108
  async function loadProgramAccounts(rpc, { programAddress, ...config }) {
109
109
  return await rpc.getProgramAccounts(
110
110
  programAddress,
111
- // @ts-expect-error FIX ME: https://github.com/solana-labs/solana-web3.js/pull/2052
111
+ // @ts-expect-error FIX ME: https://github.com/microsoft/TypeScript/issues/43187
112
112
  config
113
113
  ).send();
114
114
  }
@@ -140,7 +140,7 @@ function applyDefaultArgs4({
140
140
  async function loadTransaction(rpc, { signature, ...config }) {
141
141
  return await rpc.getTransaction(
142
142
  signature,
143
- // @ts-expect-error FIX ME: https://github.com/solana-labs/solana-web3.js/pull/2052
143
+ // @ts-expect-error FIX ME: https://github.com/microsoft/TypeScript/issues/43187
144
144
  config
145
145
  ).send();
146
146
  }