@flashbacktech/flashbackclient 0.1.37 → 0.1.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -36,6 +36,7 @@ const getServer = (network) => {
|
|
|
36
36
|
serverUrl = 'https://rpc.stellar.org:443';
|
|
37
37
|
break;
|
|
38
38
|
}
|
|
39
|
+
console.log(`@@@Creating Stellar RPC server for network: ${network.network}, URL: ${serverUrl}`);
|
|
39
40
|
const server = new stellar_sdk_2.rpc.Server(serverUrl);
|
|
40
41
|
return server;
|
|
41
42
|
};
|
|
@@ -42,7 +42,7 @@ const getServer = (network) => {
|
|
|
42
42
|
serverUrl = "https://rpc.stellar.org";
|
|
43
43
|
break;
|
|
44
44
|
}
|
|
45
|
-
console.log(
|
|
45
|
+
console.log(`!!!Creating Soroban RPC server for network: ${network.network}, URL: ${serverUrl}`);
|
|
46
46
|
// For Stellar SDK v13+, we need to handle the allowHttp issue
|
|
47
47
|
// Try different approaches to create the server
|
|
48
48
|
let server;
|