@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
16 lines (13 loc) • 334 B
JavaScript
import { create } from '../http-client/axios-client.js';
const version = "16.2.0";
function createHttpClient(headers) {
return create({
headers: {
...headers,
"X-Client-Name": "js-stellar-sdk",
"X-Client-Version": version
}
});
}
export { createHttpClient, version };
//# sourceMappingURL=axios.js.map