@sentio/protos 2.18.2 → 2.18.3-rc.2
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/package.json
CHANGED
|
@@ -444,45 +444,6 @@ export interface MoveOnIntervalConfig {
|
|
|
444
444
|
fetchConfig: MoveAccountFetchConfig | undefined;
|
|
445
445
|
}
|
|
446
446
|
|
|
447
|
-
export enum MoveOnIntervalConfig_OwnerType {
|
|
448
|
-
ADDRESS = 0,
|
|
449
|
-
OBJECT = 1,
|
|
450
|
-
WRAPPED_OBJECT = 2,
|
|
451
|
-
UNRECOGNIZED = -1,
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
export function moveOnIntervalConfig_OwnerTypeFromJSON(object: any): MoveOnIntervalConfig_OwnerType {
|
|
455
|
-
switch (object) {
|
|
456
|
-
case 0:
|
|
457
|
-
case "ADDRESS":
|
|
458
|
-
return MoveOnIntervalConfig_OwnerType.ADDRESS;
|
|
459
|
-
case 1:
|
|
460
|
-
case "OBJECT":
|
|
461
|
-
return MoveOnIntervalConfig_OwnerType.OBJECT;
|
|
462
|
-
case 2:
|
|
463
|
-
case "WRAPPED_OBJECT":
|
|
464
|
-
return MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT;
|
|
465
|
-
case -1:
|
|
466
|
-
case "UNRECOGNIZED":
|
|
467
|
-
default:
|
|
468
|
-
return MoveOnIntervalConfig_OwnerType.UNRECOGNIZED;
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
export function moveOnIntervalConfig_OwnerTypeToJSON(object: MoveOnIntervalConfig_OwnerType): string {
|
|
473
|
-
switch (object) {
|
|
474
|
-
case MoveOnIntervalConfig_OwnerType.ADDRESS:
|
|
475
|
-
return "ADDRESS";
|
|
476
|
-
case MoveOnIntervalConfig_OwnerType.OBJECT:
|
|
477
|
-
return "OBJECT";
|
|
478
|
-
case MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT:
|
|
479
|
-
return "WRAPPED_OBJECT";
|
|
480
|
-
case MoveOnIntervalConfig_OwnerType.UNRECOGNIZED:
|
|
481
|
-
default:
|
|
482
|
-
return "UNRECOGNIZED";
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
|
|
486
447
|
export interface ContractInfo {
|
|
487
448
|
name: string;
|
|
488
449
|
chainId: string;
|