secret-polar
Version:
Polar is a development environment to compile, deploy, test, run scrt contracts on different networks.
18 lines (17 loc) • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const SCRT_CHAIN_NAME = "testnet";
const cfg = {
accounts: [],
endpoint: SCRT_CHAIN_NAME,
chainId: "pulsar-3"
};
const defaultConfig = {
networks: {
[SCRT_CHAIN_NAME]: cfg
},
mocha: {
timeout: 20000
}
};
exports.default = defaultConfig;