@sentio/runtime 2.18.3-rc.1 → 2.18.3-rc.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.18.3-rc.1",
3
+ "version": "2.18.3-rc.2",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -32,10 +32,10 @@
32
32
  "prom-client": "^14.2.0",
33
33
  "protobufjs": "^7.2.3",
34
34
  "winston": "^3.8.2",
35
- "@sentio/protos": "2.18.3-rc.1"
35
+ "@sentio/protos": "2.18.3-rc.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "@sentio/sdk": "^2.18.3-rc.1"
38
+ "@sentio/sdk": "^2.18.3-rc.2"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/command-line-args": "^5.2.0",
@@ -446,45 +446,6 @@ export interface MoveOnIntervalConfig {
446
446
  fetchConfig: MoveAccountFetchConfig | undefined;
447
447
  }
448
448
 
449
- export enum MoveOnIntervalConfig_OwnerType {
450
- ADDRESS = 0,
451
- OBJECT = 1,
452
- WRAPPED_OBJECT = 2,
453
- UNRECOGNIZED = -1,
454
- }
455
-
456
- export function moveOnIntervalConfig_OwnerTypeFromJSON(object: any): MoveOnIntervalConfig_OwnerType {
457
- switch (object) {
458
- case 0:
459
- case "ADDRESS":
460
- return MoveOnIntervalConfig_OwnerType.ADDRESS;
461
- case 1:
462
- case "OBJECT":
463
- return MoveOnIntervalConfig_OwnerType.OBJECT;
464
- case 2:
465
- case "WRAPPED_OBJECT":
466
- return MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT;
467
- case -1:
468
- case "UNRECOGNIZED":
469
- default:
470
- return MoveOnIntervalConfig_OwnerType.UNRECOGNIZED;
471
- }
472
- }
473
-
474
- export function moveOnIntervalConfig_OwnerTypeToJSON(object: MoveOnIntervalConfig_OwnerType): string {
475
- switch (object) {
476
- case MoveOnIntervalConfig_OwnerType.ADDRESS:
477
- return "ADDRESS";
478
- case MoveOnIntervalConfig_OwnerType.OBJECT:
479
- return "OBJECT";
480
- case MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT:
481
- return "WRAPPED_OBJECT";
482
- case MoveOnIntervalConfig_OwnerType.UNRECOGNIZED:
483
- default:
484
- return "UNRECOGNIZED";
485
- }
486
- }
487
-
488
449
  export interface ContractInfo {
489
450
  name: string;
490
451
  chainId: string;