@martiandao/aptos-web3.js
Version:
Web3 SDK For Aptos
10 lines (8 loc) • 460 B
text/typescript
export const NODE_URL = process.env.APTOS_NODE_URL || "https://fullnode.devnet.aptoslabs.com";
export const FAUCET_URL = process.env.APTOS_FAUCET_URL || "https://faucet.devnet.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
});