@solana/rpc-graphql 2.0.0-experimental.ac2c1c8 → 2.0.0-experimental.ad9c23c

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.
@@ -1857,7 +1857,7 @@ var stringScalarAlias = {
1857
1857
  };
1858
1858
  var bigIntScalarAlias = {
1859
1859
  __parseLiteral(ast) {
1860
- if (ast.kind === graphql.Kind.STRING) {
1860
+ if (ast.kind === graphql.Kind.STRING || ast.kind === graphql.Kind.INT || ast.kind === graphql.Kind.FLOAT) {
1861
1861
  return BigInt(ast.value);
1862
1862
  }
1863
1863
  return null;