lisk-framework
Version:
Lisk blockchain application platform
23 lines • 750 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EndOfRoundTimestampStore = exports.endOfRoundTimestampSchema = void 0;
const base_store_1 = require("../../base_store");
exports.endOfRoundTimestampSchema = {
$id: '/dynamicRewards/endOfRoundTimestamp',
type: 'object',
properties: {
timestamp: {
dataType: 'uint32',
fieldNumber: 1,
},
},
required: ['timestamp'],
};
class EndOfRoundTimestampStore extends base_store_1.BaseStore {
constructor() {
super(...arguments);
this.schema = exports.endOfRoundTimestampSchema;
}
}
exports.EndOfRoundTimestampStore = EndOfRoundTimestampStore;
//# sourceMappingURL=end_of_round_timestamp.js.map
;