@solana/rpc-graphql 2.0.0-experimental.ac2c1c8 → 2.0.0-experimental.ac6130e
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/dist/index.browser.cjs +1 -1
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.native.js +1 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.node.cjs +1 -1
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +1 -1
- package/dist/index.node.js.map +1 -1
- package/package.json +3 -3
package/dist/index.browser.cjs
CHANGED
|
@@ -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;
|