@acala-network/chopsticks 0.8.5-2 → 0.8.5-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.
@@ -5,3 +5,4 @@ export { rpc as setHead } from './set-head';
5
5
  export { rpc as setRuntimeLogLevel } from './set-runtime-log-level';
6
6
  export { rpc as setStorage } from './set-storage';
7
7
  export { rpc as timeTravel } from './time-travel';
8
+ export { rpc as runBlock, RunBlockParams } from './run-block';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.timeTravel = exports.setStorage = exports.setRuntimeLogLevel = exports.setHead = exports.setBlockBuildMode = exports.dryRun = exports.newBlock = void 0;
3
+ exports.runBlock = exports.timeTravel = exports.setStorage = exports.setRuntimeLogLevel = exports.setHead = exports.setBlockBuildMode = exports.dryRun = exports.newBlock = void 0;
4
4
  var new_block_1 = require("./new-block");
5
5
  Object.defineProperty(exports, "newBlock", { enumerable: true, get: function () { return new_block_1.rpc; } });
6
6
  var dry_run_1 = require("./dry-run");
@@ -15,3 +15,5 @@ var set_storage_1 = require("./set-storage");
15
15
  Object.defineProperty(exports, "setStorage", { enumerable: true, get: function () { return set_storage_1.rpc; } });
16
16
  var time_travel_1 = require("./time-travel");
17
17
  Object.defineProperty(exports, "timeTravel", { enumerable: true, get: function () { return time_travel_1.rpc; } });
18
+ var run_block_1 = require("./run-block");
19
+ Object.defineProperty(exports, "runBlock", { enumerable: true, get: function () { return run_block_1.rpc; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acala-network/chopsticks",
3
- "version": "0.8.5-2",
3
+ "version": "0.8.5-4",
4
4
  "author": "Acala Developers <hello@acala.network>",
5
5
  "license": "Apache-2.0",
6
6
  "bin": "./chopsticks.js",
@@ -17,8 +17,8 @@
17
17
  "docs:prep": "typedoc"
18
18
  },
19
19
  "dependencies": {
20
- "@acala-network/chopsticks-core": "0.8.5-2",
21
- "@acala-network/chopsticks-db": "0.8.5-2",
20
+ "@acala-network/chopsticks-core": "0.8.5-4",
21
+ "@acala-network/chopsticks-db": "0.8.5-4",
22
22
  "@pnpm/npm-conf": "^2.2.2",
23
23
  "axios": "^1.5.1",
24
24
  "dotenv": "^16.3.1",
@@ -57,6 +57,10 @@
57
57
  "types": "./lib/*.d.ts",
58
58
  "default": "./lib/*.js"
59
59
  },
60
+ "./plugins/*": {
61
+ "types": "./lib/plugins/*.d.ts",
62
+ "default": "./lib/plugins/*.js"
63
+ },
60
64
  "./package.json": "./package.json"
61
65
  }
62
66
  }