@j0nnyboi/amman
Version:
A modern mandatory toolbelt to help test solana SDK libraries and apps on a locally running validator.
20 lines • 616 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_RELAY_CONFIG = exports.AMMAN_VERSION = void 0;
/** The version of amman, used by amman-explorer to detect amman compatibility */
const { version } = require('../../package.json');
exports.AMMAN_VERSION = version
.split('.')
.map((v) => parseInt(v));
/**
* The Default Amman Relay Configuration
*
* @category config
*/
exports.DEFAULT_RELAY_CONFIG = {
enabled: process.env.CI == null,
killRunningRelay: true,
accountProviders: {},
accountRenderers: new Map(),
};
//# sourceMappingURL=types.js.map