@martiandao/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
15 lines • 916 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MAINNET_NODE_URL = exports.TESTNET_FAUCET_URL = exports.TESTNET_NODE_URL = exports.FAUCET_URL = exports.NODE_URL = void 0;
exports.NODE_URL = process.env.APTOS_NODE_URL || "https://fullnode.devnet.aptoslabs.com";
exports.FAUCET_URL = process.env.APTOS_FAUCET_URL || "https://faucet.devnet.aptoslabs.com";
exports.TESTNET_NODE_URL = "https://fullnode.testnet.aptoslabs.com";
exports.TESTNET_FAUCET_URL = "https://faucet.testnet.aptoslabs.com";
exports.MAINNET_NODE_URL = "https://fullnode.mainnet.aptoslabs.com";
test("noop", () => {
// All TS files are compiled by default into the npm package
// Adding this empty test allows us to:
// 1. Guarantee that this test library won't get compiled
// 2. Prevent jest from exploding when it finds a file with no tests in it
});
//# sourceMappingURL=test_helper.test.js.map