antelopeql 3.0.0-alpha.2 → 3.0.0-alpha.4

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.
@@ -222,7 +222,7 @@ const get_block = {
222
222
  method: "POST",
223
223
  ...fetchOptions,
224
224
  body: JSON.stringify({
225
- block_num_or_id,
225
+ block_num_or_id: Number(block_num_or_id),
226
226
  json: true
227
227
  })
228
228
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antelopeql",
3
- "version": "3.0.0-alpha.2",
3
+ "version": "3.0.0-alpha.4",
4
4
  "description": "A GraphQL implementation for interacting with Antelope based blockchains.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -86,18 +86,14 @@
86
86
  "coverage-node": "^8.0.0",
87
87
  "eslint": "^8.34.0",
88
88
  "eslint-plugin-simple-import-sort": "^10.0.0",
89
- "graphql": "^15.9.0",
90
89
  "nodemon": "^3.0.1",
91
90
  "prettier": "^2.8.4",
92
91
  "snapshot-assertion": "^5.0.0",
93
92
  "test-director": "^10.0.0",
94
93
  "typescript": "^5.7.3"
95
94
  },
96
- "peerDependencies": {
97
- "graphql": "^16"
98
- },
99
95
  "dependencies": {
100
- "antelope-ecc": "^4.0.1",
96
+ "antelope-ecc": "^5.0.0-rc.2",
101
97
  "base58-js": "^3.0.0",
102
98
  "eosio-wasm-js": "^5.0.2",
103
99
  "ripemd160-js": "^3.0.4",
@@ -30,8 +30,6 @@ export default async function send_transaction_rpc(
30
30
  });
31
31
 
32
32
  const pushed_transaction = await pushed_txn_req.json();
33
- console.log(pushed_transaction);
34
- console.log(pushed_transaction.error);
35
33
 
36
34
  if (pushed_transaction.error)
37
35
  throw new GraphQLError(pushed_transaction.message, {