Skip to content

Commit 459a945

Browse files
author
Іван Самко
committed
feat: add mppgas — multi-chain gas price tracker
Adds mppgas to the service catalog: returns slow/standard/fast gas prices in gwei, native token USD price, and estimated 21k-gas transfer cost in USD for Ethereum, Base, Arbitrum, Optimism, Polygon, BSC, and Tempo. $0.01 USDC.e per request, gas-abstracted (feePayer sponsored).
1 parent 9c10c5e commit 459a945

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

schemas/services.ts

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5730,6 +5730,53 @@ export const services: ServiceDef[] = [
57305730
],
57315731
},
57325732

5733+
// ── mppgas ───────────────────────────────────────────────────────────
5734+
{
5735+
id: "mppgas",
5736+
name: "mppgas",
5737+
url: "https://mppgas.vercel.app",
5738+
serviceUrl: "https://mppgas.vercel.app",
5739+
description:
5740+
"Multi-chain gas tracker. Returns current slow/standard/fast gas prices in gwei, native token USD price, and estimated 21k-gas transfer cost in USD for Ethereum, Base, Arbitrum, Optimism, Polygon, BSC, and Tempo.",
5741+
categories: ["blockchain", "data"],
5742+
integration: "third-party",
5743+
tags: [
5744+
"gas",
5745+
"gas-price",
5746+
"ethereum",
5747+
"base",
5748+
"arbitrum",
5749+
"optimism",
5750+
"polygon",
5751+
"bsc",
5752+
"tempo",
5753+
"multichain",
5754+
"defi",
5755+
"evm",
5756+
],
5757+
status: "active",
5758+
docs: {
5759+
homepage: "https://mppgas.vercel.app",
5760+
apiReference: "https://mppgas.vercel.app/openapi.json",
5761+
},
5762+
provider: { name: "mppgas", url: "https://mppgas.vercel.app" },
5763+
realm: "mppgas.vercel.app",
5764+
intent: "charge",
5765+
payments: [TEMPO_PAYMENT],
5766+
endpoints: [
5767+
{
5768+
route: "GET /api/gas",
5769+
desc: "Gas prices (slow/standard/fast gwei), native token USD price, and 21k-gas transfer cost for all 7 chains. Cached 10s per chain.",
5770+
amount: "10000",
5771+
unitType: "request",
5772+
},
5773+
{
5774+
route: "GET /api/info",
5775+
desc: "Service metadata — payment details, gas-abstraction status (free)",
5776+
},
5777+
],
5778+
},
5779+
57335780
// ── OpenWeather ──────────────────────────────────────────────────────
57345781
{
57355782
id: "openweather",

0 commit comments

Comments
 (0)