We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12bbd01 commit 88f06c7Copy full SHA for 88f06c7
packages/klesia-sdk/src/client.ts
@@ -10,10 +10,10 @@ export const createClient = ({
10
}: { network: "mainnet" | "devnet" }) => {
11
return match(NetworkMatcher.parse(network))
12
.with("devnet", () =>
13
- hc<KlesiaRpc>("https://devnet.klesia.palladians.xyz/api"),
+ hc<KlesiaRpc>("https://devnet.klesia.palladians.xyz"),
14
)
15
.with("mainnet", () =>
16
- hc<KlesiaRpc>("https://mainnet.klesia.palladians.xyz/api"),
+ hc<KlesiaRpc>("https://mainnet.klesia.palladians.xyz"),
17
18
.exhaustive();
19
};
0 commit comments