UNPKG
solask-sdk
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.0
Lightweight SDK to interact with Solana via REST
solask-sdk
/
src
/
client.ts
11 lines
(8 loc)
•
200 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
axios
from
"axios"
;
const
baseURL =
"https://solask.onrender.com/"
;
export
const
apiClient = axios.
create
({ baseURL,
headers
: {
"Content-Type"
:
"application/json"
, }, });