@xyo-network/witness-timestamp 2.84.2 → 2.84.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.
- package/dist/node/index.cjs +71 -0
- package/dist/node/index.cjs.map +1 -0
- package/dist/node/index.js +8 -36
- package/dist/node/index.js.map +1 -1
- package/package.json +14 -14
- package/dist/node/index.mjs +0 -43
- package/dist/node/index.mjs.map +0 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
7
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
var __publicField = (obj, key, value) => {
|
|
22
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
23
|
+
return value;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
// src/index.ts
|
|
27
|
+
var src_exports = {};
|
|
28
|
+
__export(src_exports, {
|
|
29
|
+
TimestampSchema: () => TimestampSchema,
|
|
30
|
+
TimestampWitness: () => TimestampWitness,
|
|
31
|
+
TimestampWitnessConfigSchema: () => TimestampWitnessConfigSchema,
|
|
32
|
+
isTimestamp: () => isTimestamp
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(src_exports);
|
|
35
|
+
|
|
36
|
+
// src/Config.ts
|
|
37
|
+
var TimestampWitnessConfigSchema = "network.xyo.witness.timestamp.config";
|
|
38
|
+
|
|
39
|
+
// src/Payload.ts
|
|
40
|
+
var import_payload_model = require("@xyo-network/payload-model");
|
|
41
|
+
var TimestampSchema = "network.xyo.timestamp";
|
|
42
|
+
var isTimestamp = (0, import_payload_model.isPayloadOfSchemaType)(TimestampSchema);
|
|
43
|
+
|
|
44
|
+
// src/Witness.ts
|
|
45
|
+
var import_abstract_witness = require("@xyo-network/abstract-witness");
|
|
46
|
+
var import_witness_model = require("@xyo-network/witness-model");
|
|
47
|
+
var _TimestampWitness = class _TimestampWitness extends import_abstract_witness.AbstractWitness {
|
|
48
|
+
observeHandler(_payloads) {
|
|
49
|
+
const payload = {
|
|
50
|
+
schema: TimestampSchema,
|
|
51
|
+
timestamp: Date.now()
|
|
52
|
+
};
|
|
53
|
+
return [
|
|
54
|
+
payload
|
|
55
|
+
];
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
__name(_TimestampWitness, "TimestampWitness");
|
|
59
|
+
__publicField(_TimestampWitness, "configSchemas", [
|
|
60
|
+
TimestampWitnessConfigSchema,
|
|
61
|
+
import_witness_model.WitnessConfigSchema
|
|
62
|
+
]);
|
|
63
|
+
var TimestampWitness = _TimestampWitness;
|
|
64
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
65
|
+
0 && (module.exports = {
|
|
66
|
+
TimestampSchema,
|
|
67
|
+
TimestampWitness,
|
|
68
|
+
TimestampWitnessConfigSchema,
|
|
69
|
+
isTimestamp
|
|
70
|
+
});
|
|
71
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Witness.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Witness'\n","import { WithAdditional } from '@xyo-network/object'\nimport { Payload } from '@xyo-network/payload-model'\nimport { WitnessConfig } from '@xyo-network/witness-model'\n\nexport const TimestampWitnessConfigSchema = 'network.xyo.witness.timestamp.config'\nexport type TimestampWitnessConfigSchema = typeof TimestampWitnessConfigSchema\n\nexport type TimestampWitnessConfig<TConfig extends Payload | undefined = undefined> = WitnessConfig<\n WithAdditional<\n {\n schema: TConfig extends Payload ? TConfig['schema'] : TimestampWitnessConfigSchema\n },\n TConfig\n >\n>\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nexport const TimestampSchema = 'network.xyo.timestamp'\nexport type TimestampSchema = typeof TimestampSchema\n\nexport type TimeStamp = Payload<\n {\n timestamp: number\n },\n TimestampSchema\n>\n\nexport const isTimestamp = isPayloadOfSchemaType<TimeStamp>(TimestampSchema)\n","import { Promisable } from '@xylabs/promise'\nimport { AbstractWitness } from '@xyo-network/abstract-witness'\nimport { Payload } from '@xyo-network/payload-model'\nimport { WitnessConfigSchema } from '@xyo-network/witness-model'\n\nimport { TimestampWitnessConfigSchema } from './Config'\nimport { TimestampWitnessParams } from './Params'\nimport { TimeStamp, TimestampSchema } from './Payload'\n\nexport class TimestampWitness<P extends TimestampWitnessParams = TimestampWitnessParams> extends AbstractWitness<P> {\n static override configSchemas = [TimestampWitnessConfigSchema, WitnessConfigSchema]\n protected override observeHandler(_payloads?: Payload[]): Promisable<Payload[]> {\n const payload: TimeStamp = { schema: TimestampSchema, timestamp: Date.now() }\n return [payload]\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;ACIO,IAAMA,+BAA+B;;;ACJ5C,2BAA+C;AAExC,IAAMC,kBAAkB;AAUxB,IAAMC,kBAAcC,4CAAiCF,eAAAA;;;ACX5D,8BAAgC;AAEhC,2BAAoC;AAM7B,IAAMG,oBAAN,MAAMA,0BAAoFC,wCAAAA;EAE5EC,eAAeC,WAA8C;AAC9E,UAAMC,UAAqB;MAAEC,QAAQC;MAAiBC,WAAWC,KAAKC,IAAG;IAAG;AAC5E,WAAO;MAACL;;EACV;AACF;AANiGH;AAC/F,cADWD,mBACKU,iBAAgB;EAACC;EAA8BC;;AAD1D,IAAMZ,mBAAN;","names":["TimestampWitnessConfigSchema","TimestampSchema","isTimestamp","isPayloadOfSchemaType","TimestampWitness","AbstractWitness","observeHandler","_payloads","payload","schema","TimestampSchema","timestamp","Date","now","configSchemas","TimestampWitnessConfigSchema","WitnessConfigSchema"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,50 +1,23 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
7
3
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
4
|
var __publicField = (obj, key, value) => {
|
|
22
5
|
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
23
6
|
return value;
|
|
24
7
|
};
|
|
25
8
|
|
|
26
|
-
// src/index.ts
|
|
27
|
-
var src_exports = {};
|
|
28
|
-
__export(src_exports, {
|
|
29
|
-
TimestampSchema: () => TimestampSchema,
|
|
30
|
-
TimestampWitness: () => TimestampWitness,
|
|
31
|
-
TimestampWitnessConfigSchema: () => TimestampWitnessConfigSchema,
|
|
32
|
-
isTimestamp: () => isTimestamp
|
|
33
|
-
});
|
|
34
|
-
module.exports = __toCommonJS(src_exports);
|
|
35
|
-
|
|
36
9
|
// src/Config.ts
|
|
37
10
|
var TimestampWitnessConfigSchema = "network.xyo.witness.timestamp.config";
|
|
38
11
|
|
|
39
12
|
// src/Payload.ts
|
|
40
|
-
|
|
13
|
+
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
41
14
|
var TimestampSchema = "network.xyo.timestamp";
|
|
42
|
-
var isTimestamp =
|
|
15
|
+
var isTimestamp = isPayloadOfSchemaType(TimestampSchema);
|
|
43
16
|
|
|
44
17
|
// src/Witness.ts
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
var _TimestampWitness = class _TimestampWitness extends
|
|
18
|
+
import { AbstractWitness } from "@xyo-network/abstract-witness";
|
|
19
|
+
import { WitnessConfigSchema } from "@xyo-network/witness-model";
|
|
20
|
+
var _TimestampWitness = class _TimestampWitness extends AbstractWitness {
|
|
48
21
|
observeHandler(_payloads) {
|
|
49
22
|
const payload = {
|
|
50
23
|
schema: TimestampSchema,
|
|
@@ -58,14 +31,13 @@ var _TimestampWitness = class _TimestampWitness extends import_abstract_witness.
|
|
|
58
31
|
__name(_TimestampWitness, "TimestampWitness");
|
|
59
32
|
__publicField(_TimestampWitness, "configSchemas", [
|
|
60
33
|
TimestampWitnessConfigSchema,
|
|
61
|
-
|
|
34
|
+
WitnessConfigSchema
|
|
62
35
|
]);
|
|
63
36
|
var TimestampWitness = _TimestampWitness;
|
|
64
|
-
|
|
65
|
-
0 && (module.exports = {
|
|
37
|
+
export {
|
|
66
38
|
TimestampSchema,
|
|
67
39
|
TimestampWitness,
|
|
68
40
|
TimestampWitnessConfigSchema,
|
|
69
41
|
isTimestamp
|
|
70
|
-
}
|
|
42
|
+
};
|
|
71
43
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/
|
|
1
|
+
{"version":3,"sources":["../../src/Config.ts","../../src/Payload.ts","../../src/Witness.ts"],"sourcesContent":["import { WithAdditional } from '@xyo-network/object'\nimport { Payload } from '@xyo-network/payload-model'\nimport { WitnessConfig } from '@xyo-network/witness-model'\n\nexport const TimestampWitnessConfigSchema = 'network.xyo.witness.timestamp.config'\nexport type TimestampWitnessConfigSchema = typeof TimestampWitnessConfigSchema\n\nexport type TimestampWitnessConfig<TConfig extends Payload | undefined = undefined> = WitnessConfig<\n WithAdditional<\n {\n schema: TConfig extends Payload ? TConfig['schema'] : TimestampWitnessConfigSchema\n },\n TConfig\n >\n>\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nexport const TimestampSchema = 'network.xyo.timestamp'\nexport type TimestampSchema = typeof TimestampSchema\n\nexport type TimeStamp = Payload<\n {\n timestamp: number\n },\n TimestampSchema\n>\n\nexport const isTimestamp = isPayloadOfSchemaType<TimeStamp>(TimestampSchema)\n","import { Promisable } from '@xylabs/promise'\nimport { AbstractWitness } from '@xyo-network/abstract-witness'\nimport { Payload } from '@xyo-network/payload-model'\nimport { WitnessConfigSchema } from '@xyo-network/witness-model'\n\nimport { TimestampWitnessConfigSchema } from './Config'\nimport { TimestampWitnessParams } from './Params'\nimport { TimeStamp, TimestampSchema } from './Payload'\n\nexport class TimestampWitness<P extends TimestampWitnessParams = TimestampWitnessParams> extends AbstractWitness<P> {\n static override configSchemas = [TimestampWitnessConfigSchema, WitnessConfigSchema]\n protected override observeHandler(_payloads?: Payload[]): Promisable<Payload[]> {\n const payload: TimeStamp = { schema: TimestampSchema, timestamp: Date.now() }\n return [payload]\n }\n}\n"],"mappings":";;;;;;;;;AAIO,IAAMA,+BAA+B;;;ACJ5C,SAASC,6BAAsC;AAExC,IAAMC,kBAAkB;AAUxB,IAAMC,cAAcF,sBAAiCC,eAAAA;;;ACX5D,SAASE,uBAAuB;AAEhC,SAASC,2BAA2B;AAM7B,IAAMC,oBAAN,MAAMA,0BAAoFC,gBAAAA;EAE5EC,eAAeC,WAA8C;AAC9E,UAAMC,UAAqB;MAAEC,QAAQC;MAAiBC,WAAWC,KAAKC,IAAG;IAAG;AAC5E,WAAO;MAACL;;EACV;AACF;AANiGH;AAC/F,cADWD,mBACKU,iBAAgB;EAACC;EAA8BC;;AAD1D,IAAMZ,mBAAN;","names":["TimestampWitnessConfigSchema","isPayloadOfSchemaType","TimestampSchema","isTimestamp","AbstractWitness","WitnessConfigSchema","TimestampWitness","AbstractWitness","observeHandler","_payloads","payload","schema","TimestampSchema","timestamp","Date","now","configSchemas","TimestampWitnessConfigSchema","WitnessConfigSchema"]}
|
package/package.json
CHANGED
|
@@ -11,19 +11,18 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@xylabs/promise": "^2.13.20",
|
|
14
|
-
"@xyo-network/abstract-witness": "~2.84.
|
|
15
|
-
"@xyo-network/module-model": "~2.84.
|
|
16
|
-
"@xyo-network/object": "~2.84.
|
|
17
|
-
"@xyo-network/payload-model": "~2.84.
|
|
18
|
-
"@xyo-network/witness-model": "~2.84.
|
|
14
|
+
"@xyo-network/abstract-witness": "~2.84.4",
|
|
15
|
+
"@xyo-network/module-model": "~2.84.4",
|
|
16
|
+
"@xyo-network/object": "~2.84.4",
|
|
17
|
+
"@xyo-network/payload-model": "~2.84.4",
|
|
18
|
+
"@xyo-network/witness-model": "~2.84.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@xylabs/ts-scripts-yarn3": "^3.2.
|
|
22
|
-
"@xylabs/tsconfig": "^3.2.
|
|
21
|
+
"@xylabs/ts-scripts-yarn3": "^3.2.19",
|
|
22
|
+
"@xylabs/tsconfig": "^3.2.19",
|
|
23
23
|
"typescript": "^5.3.3"
|
|
24
24
|
},
|
|
25
25
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
26
|
-
"docs": "dist/docs.json",
|
|
27
26
|
"types": "dist/node/index.d.ts",
|
|
28
27
|
"exports": {
|
|
29
28
|
".": {
|
|
@@ -39,19 +38,19 @@
|
|
|
39
38
|
},
|
|
40
39
|
"node": {
|
|
41
40
|
"require": {
|
|
42
|
-
"types": "./dist/node/index.d.
|
|
43
|
-
"default": "./dist/node/index.
|
|
41
|
+
"types": "./dist/node/index.d.cts",
|
|
42
|
+
"default": "./dist/node/index.cjs"
|
|
44
43
|
},
|
|
45
44
|
"import": {
|
|
46
45
|
"types": "./dist/node/index.d.mts",
|
|
47
|
-
"default": "./dist/node/index.
|
|
46
|
+
"default": "./dist/node/index.js"
|
|
48
47
|
}
|
|
49
48
|
}
|
|
50
49
|
},
|
|
51
50
|
"./package.json": "./package.json"
|
|
52
51
|
},
|
|
53
|
-
"main": "dist/node/index.
|
|
54
|
-
"module": "dist/node/index.
|
|
52
|
+
"main": "dist/node/index.cjs",
|
|
53
|
+
"module": "dist/node/index.js",
|
|
55
54
|
"homepage": "https://xyo.network",
|
|
56
55
|
"license": "LGPL-3.0-only",
|
|
57
56
|
"publishConfig": {
|
|
@@ -62,5 +61,6 @@
|
|
|
62
61
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
63
62
|
},
|
|
64
63
|
"sideEffects": false,
|
|
65
|
-
"version": "2.84.
|
|
64
|
+
"version": "2.84.4",
|
|
65
|
+
"type": "module"
|
|
66
66
|
}
|
package/dist/node/index.mjs
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
4
|
-
var __publicField = (obj, key, value) => {
|
|
5
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
6
|
-
return value;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
// src/Config.ts
|
|
10
|
-
var TimestampWitnessConfigSchema = "network.xyo.witness.timestamp.config";
|
|
11
|
-
|
|
12
|
-
// src/Payload.ts
|
|
13
|
-
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
14
|
-
var TimestampSchema = "network.xyo.timestamp";
|
|
15
|
-
var isTimestamp = isPayloadOfSchemaType(TimestampSchema);
|
|
16
|
-
|
|
17
|
-
// src/Witness.ts
|
|
18
|
-
import { AbstractWitness } from "@xyo-network/abstract-witness";
|
|
19
|
-
import { WitnessConfigSchema } from "@xyo-network/witness-model";
|
|
20
|
-
var _TimestampWitness = class _TimestampWitness extends AbstractWitness {
|
|
21
|
-
observeHandler(_payloads) {
|
|
22
|
-
const payload = {
|
|
23
|
-
schema: TimestampSchema,
|
|
24
|
-
timestamp: Date.now()
|
|
25
|
-
};
|
|
26
|
-
return [
|
|
27
|
-
payload
|
|
28
|
-
];
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
__name(_TimestampWitness, "TimestampWitness");
|
|
32
|
-
__publicField(_TimestampWitness, "configSchemas", [
|
|
33
|
-
TimestampWitnessConfigSchema,
|
|
34
|
-
WitnessConfigSchema
|
|
35
|
-
]);
|
|
36
|
-
var TimestampWitness = _TimestampWitness;
|
|
37
|
-
export {
|
|
38
|
-
TimestampSchema,
|
|
39
|
-
TimestampWitness,
|
|
40
|
-
TimestampWitnessConfigSchema,
|
|
41
|
-
isTimestamp
|
|
42
|
-
};
|
|
43
|
-
//# sourceMappingURL=index.mjs.map
|
package/dist/node/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Config.ts","../../src/Payload.ts","../../src/Witness.ts"],"sourcesContent":["import { WithAdditional } from '@xyo-network/object'\nimport { Payload } from '@xyo-network/payload-model'\nimport { WitnessConfig } from '@xyo-network/witness-model'\n\nexport const TimestampWitnessConfigSchema = 'network.xyo.witness.timestamp.config'\nexport type TimestampWitnessConfigSchema = typeof TimestampWitnessConfigSchema\n\nexport type TimestampWitnessConfig<TConfig extends Payload | undefined = undefined> = WitnessConfig<\n WithAdditional<\n {\n schema: TConfig extends Payload ? TConfig['schema'] : TimestampWitnessConfigSchema\n },\n TConfig\n >\n>\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nexport const TimestampSchema = 'network.xyo.timestamp'\nexport type TimestampSchema = typeof TimestampSchema\n\nexport type TimeStamp = Payload<\n {\n timestamp: number\n },\n TimestampSchema\n>\n\nexport const isTimestamp = isPayloadOfSchemaType<TimeStamp>(TimestampSchema)\n","import { Promisable } from '@xylabs/promise'\nimport { AbstractWitness } from '@xyo-network/abstract-witness'\nimport { Payload } from '@xyo-network/payload-model'\nimport { WitnessConfigSchema } from '@xyo-network/witness-model'\n\nimport { TimestampWitnessConfigSchema } from './Config'\nimport { TimestampWitnessParams } from './Params'\nimport { TimeStamp, TimestampSchema } from './Payload'\n\nexport class TimestampWitness<P extends TimestampWitnessParams = TimestampWitnessParams> extends AbstractWitness<P> {\n static override configSchemas = [TimestampWitnessConfigSchema, WitnessConfigSchema]\n protected override observeHandler(_payloads?: Payload[]): Promisable<Payload[]> {\n const payload: TimeStamp = { schema: TimestampSchema, timestamp: Date.now() }\n return [payload]\n }\n}\n"],"mappings":";;;;;;;;;AAIO,IAAMA,+BAA+B;;;ACJ5C,SAASC,6BAAsC;AAExC,IAAMC,kBAAkB;AAUxB,IAAMC,cAAcF,sBAAiCC,eAAAA;;;ACX5D,SAASE,uBAAuB;AAEhC,SAASC,2BAA2B;AAM7B,IAAMC,oBAAN,MAAMA,0BAAoFC,gBAAAA;EAE5EC,eAAeC,WAA8C;AAC9E,UAAMC,UAAqB;MAAEC,QAAQC;MAAiBC,WAAWC,KAAKC,IAAG;IAAG;AAC5E,WAAO;MAACL;;EACV;AACF;AANiGH;AAC/F,cADWD,mBACKU,iBAAgB;EAACC;EAA8BC;;AAD1D,IAAMZ,mBAAN;","names":["TimestampWitnessConfigSchema","isPayloadOfSchemaType","TimestampSchema","isTimestamp","AbstractWitness","WitnessConfigSchema","TimestampWitness","AbstractWitness","observeHandler","_payloads","payload","schema","TimestampSchema","timestamp","Date","now","configSchemas","TimestampWitnessConfigSchema","WitnessConfigSchema"]}
|