solana/web3.js/test/url.js

14 lines
328 B
JavaScript

// @flow
/**
* The connection url to use when running unit tests against a live cluster
*/
export const MOCK_PORT = 9999;
export const url = process.env.TEST_LIVE
? 'http://localhost:8899/'
: 'http://localhost:9999/';
//export const url = 'https://devnet.solana.com/';
//export const url = 'http://devnet.solana.com/';