Skip to content

Commit 8bb37c5

Browse files
committed
fix: wrong API call for ts
1 parent 771c95a commit 8bb37c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/typescript/src/api/network/get-gas-price.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const getGasPrices = async (
2727
try {
2828
const response = await getApi<GasEstimatorResult | null>(
2929
baseConfig,
30-
`gas/price/${chainId}`
30+
`networks/gas/price/${chainId}`
3131
);
3232
return response.data;
3333
} catch (error: any) {

0 commit comments

Comments
 (0)