solana/web3.js/test/url.js

18 lines
492 B
JavaScript
Raw Normal View History

2018-10-06 11:23:18 -07:00
// @flow
/**
2019-03-04 08:16:13 -08:00
* The connection url to use when running unit tests against a live cluster
2018-10-06 11:23:18 -07:00
*/
2018-10-26 21:37:39 -07:00
export const url = 'http://localhost:8899/';
2018-12-19 19:28:28 -08:00
/*
export const url = 'http://edge.testnet.solana.com:8899/';
export const url = 'http://beta.testnet.solana.com:8899/';
export const url = 'http://testnet.solana.com:8899/';
2018-12-19 19:28:28 -08:00
export const url = 'https://api.edge.testnet.solana.com/';
export const url = 'https://api.beta.testnet.solana.com/';
export const url = 'https://api.testnet.solana.com/';
*/