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