@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) • 366 B
JavaScript
import { create as createFetchClient } from '../http-client/fetch-client.js';
const version = "16.2.0";
function createHttpClient(headers) {
return createFetchClient({
headers: {
...headers,
"X-Client-Name": "js-stellar-sdk",
"X-Client-Version": version
}
});
}
export { createHttpClient, version };
//# sourceMappingURL=axios.js.map