Skip to content

Chains

Including public chain details, this route also returns the current gas price, gas usage, and the total Gas.zip refueler balance on the chain.

https://backend.gas.zip/v2/chains

Schema

interface Chains {
  chains: [
    {
      name: string
      chain: number // native chain id
      short: number // unique Gas.zip id
      gas: string // gas usage of a simple transfer
      gwei: string // current gas price
      bal: string // balance of the Gas.zip reloader
      rpcs: string[]
      symbol: string
      price: number
    },
  ]
}