Skip to content

Commit

Permalink
fix(klesia sdk): remove unecessary /api
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Sep 3, 2024
1 parent 12bbd01 commit 88f06c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/klesia-sdk/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export const createClient = ({
}: { network: "mainnet" | "devnet" }) => {
return match(NetworkMatcher.parse(network))
.with("devnet", () =>
hc<KlesiaRpc>("https://devnet.klesia.palladians.xyz/api"),
hc<KlesiaRpc>("https://devnet.klesia.palladians.xyz"),
)
.with("mainnet", () =>
hc<KlesiaRpc>("https://mainnet.klesia.palladians.xyz/api"),
hc<KlesiaRpc>("https://mainnet.klesia.palladians.xyz"),
)
.exhaustive();
};

0 comments on commit 88f06c7

Please sign in to comment.