Last updated 7 months ago
Get an array of all gas price information
Array of all gas Price information
Get the gas information for a given chain
Gas Price information
const response = await fetch('https://dev-api.thorswap.net/resource-worker/gasPrice/getAll', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('https://dev-api.thorswap.net/resource-worker/gasPrice/get?chainId=text', { method: 'GET', headers: {}, }); const data = await response.json();