"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.tendermint = void 0;
//@ts-nocheck
const _225 = __importStar(require("./abci/types"));
const _226 = __importStar(require("./crypto/keys"));
const _227 = __importStar(require("./crypto/proof"));
const _228 = __importStar(require("./libs/bits/types"));
const _229 = __importStar(require("./p2p/types"));
const _230 = __importStar(require("./types/block"));
const _231 = __importStar(require("./types/evidence"));
const _232 = __importStar(require("./types/params"));
const _233 = __importStar(require("./types/types"));
const _234 = __importStar(require("./types/validator"));
const _235 = __importStar(require("./version/types"));
var tendermint;
(function (tendermint) {
tendermint.abci = {
..._225
};
tendermint.crypto = {
..._226,
..._227
};
let libs;
(function (libs) {
libs.bits = {
..._228
};
})(libs = tendermint.libs || (tendermint.libs = {}));
tendermint.p2p = {
..._229
};
tendermint.types = {
..._230,
..._231,
..._232,
..._233,
..._234
};
tendermint.version = {
..._235
};
})(tendermint || (exports.tendermint = tendermint = {}));