@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.
@@ -65,7 +65,7 @@ function applyDefaultArgs2({
65
65
  async function loadBlock(rpc, { slot, ...config }) {
66
66
  return await rpc.getBlock(
67
67
  slot,
68
- // @ts-expect-error FIX ME: https://github.com/solana-labs/solana-web3.js/pull/2052
68
+ // @ts-expect-error FIX ME: https://github.com/microsoft/TypeScript/issues/43187
69
69
  config
70
70
  ).send();
71
71
  }
@@ -101,7 +101,7 @@ function applyDefaultArgs3({
101
101
  async function loadProgramAccounts(rpc, { programAddress, ...config }) {
102
102
  return await rpc.getProgramAccounts(
103
103
  programAddress,
104
- // @ts-expect-error FIX ME: https://github.com/solana-labs/solana-web3.js/pull/2052
104
+ // @ts-expect-error FIX ME: https://github.com/microsoft/TypeScript/issues/43187
105
105
  config
106
106
  ).send();
107
107
  }
@@ -133,7 +133,7 @@ function applyDefaultArgs4({
133
133
  async function loadTransaction(rpc, { signature, ...config }) {
134
134
  return await rpc.getTransaction(
135
135
  signature,
136
- // @ts-expect-error FIX ME: https://github.com/solana-labs/solana-web3.js/pull/2052
136
+ // @ts-expect-error FIX ME: https://github.com/microsoft/TypeScript/issues/43187
137
137
  config
138
138
  ).send();
139
139
  }