@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
68 lines (67 loc) • 2.31 kB
JavaScript
;
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 _132 = __importStar(require("./abci/types"));
const _133 = __importStar(require("./crypto/keys"));
const _134 = __importStar(require("./crypto/proof"));
const _135 = __importStar(require("./libs/bits/types"));
const _136 = __importStar(require("./p2p/types"));
const _137 = __importStar(require("./types/block"));
const _138 = __importStar(require("./types/evidence"));
const _139 = __importStar(require("./types/params"));
const _140 = __importStar(require("./types/types"));
const _141 = __importStar(require("./types/validator"));
const _142 = __importStar(require("./version/types"));
var tendermint;
(function (tendermint) {
tendermint.abci = {
..._132
};
tendermint.crypto = {
..._133,
..._134
};
let libs;
(function (libs) {
libs.bits = {
..._135
};
})(libs = tendermint.libs || (tendermint.libs = {}));
tendermint.p2p = {
..._136
};
tendermint.types = {
..._137,
..._138,
..._139,
..._140,
..._141
};
tendermint.version = {
..._142
};
})(tendermint || (exports.tendermint = tendermint = {}));